Set executable bits and add level arg to py2depgraph.mymf.import_hook().
[depgraph.git] / py2depgraph.py
1 #!/usr/bin/env python
2 #
3 # Copyright 2004      Toby Dickenson
4 # Copyright 2008-2011 W. Trevor King
5 #
6 # Permission is hereby granted, free of charge, to any person obtaining
7 # a copy of this software and associated documentation files (the
8 # "Software"), to deal in the Software without restriction, including
9 # without limitation the rights to use, copy, modify, merge, publish,
10 # distribute, sublicense, and/or sell copies of the Software, and to
11 # permit persons to whom the Software is furnished to do so, subject
12 # to the following conditions:
13 #
14 # The above copyright notice and this permission notice shall be included
15 # in all copies or substantial portions of the Software.
16 #
17 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
18 # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20 # IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
21 # CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22 # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23 # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24
25 import sys, pprint
26 import modulefinder
27
28 class mymf(modulefinder.ModuleFinder):
29     def __init__(self,*args,**kwargs):
30         self._depgraph = {}
31         self._types = {}
32         self._paths = {}
33         self._last_caller = None
34         modulefinder.ModuleFinder.__init__(self,*args,**kwargs)
35         
36     def import_hook(self, name, caller=None, fromlist=None, level=-1):
37         old_last_caller = self._last_caller
38         try:
39             self._last_caller = caller
40             return modulefinder.ModuleFinder.import_hook(self,name,caller,fromlist, level)
41         finally:
42             self._last_caller = old_last_caller
43             
44     def import_module(self,partnam,fqname,parent):
45         r = modulefinder.ModuleFinder.import_module(self,partnam,fqname,parent)
46         if r is not None:
47             self._depgraph.setdefault(self._last_caller.__name__,{})[r.__name__] = 1
48         return r
49     
50     def load_module(self, fqname, fp, pathname, (suffix, mode, type)):
51         r = modulefinder.ModuleFinder.load_module(self, fqname, fp, pathname, (suffix, mode, type))
52         if r is not None:
53             self._types[r.__name__] = type
54             self._paths[r.__name__] = pathname
55         return r
56         
57         
58 def main(argv):    
59     path = sys.path[:]
60     debug = 0
61     exclude = []
62     mf = mymf(path,debug,exclude)
63     mf.run_script(argv[0])
64     pprint.pprint({'depgraph':mf._depgraph,'types':mf._types,'paths':mf._paths})
65     
66 if __name__=='__main__':
67     main(sys.argv[1:])