Bugfixes
[odoo/odoo.git] / bin / addons / module_graph.py
1 #!/usr/bin/python
2 # -*- encoding: utf-8 -*-
3 ##############################################################################
4 #
5 # Copyright (c) 2004-2008 TINY SPRL. (http://tiny.be)
6 #
7 # $Id$
8 #
9 # WARNING: This program as such is intended to be used by professional
10 # programmers who take the whole responsability of assessing all potential
11 # consequences resulting from its eventual inadequacies and bugs
12 # End users who are looking for a ready-to-use solution with commercial
13 # garantees and support are strongly adviced to contact a Free Software
14 # Service Company
15 #
16 # This program is Free Software; you can redistribute it and/or
17 # modify it under the terms of the GNU General Public License
18 # as published by the Free Software Foundation; either version 2
19 # of the License, or (at your option) any later version.
20 #
21 # This program is distributed in the hope that it will be useful,
22 # but WITHOUT ANY WARRANTY; without even the implied warranty of
23 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24 # GNU General Public License for more details.
25 #
26 # You should have received a copy of the GNU General Public License
27 # along with this program; if not, write to the Free Software
28 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
29 #
30 ##############################################################################
31
32
33 import os
34 import sys
35 import glob
36
37 if len(sys.argv) == 2 and (sys.argv[1] in ['-h', '--help']):
38     print >>sys.stderr, 'Usage: module_graph.py [module1 module2 module3]\n\tWhen no module is specified, all modules in current directory are used'
39     sys.exit(1)
40
41 modules = sys.argv[1:]
42 if not len(modules):
43     modules = map(os.path.dirname, glob.glob(os.path.join('*', '__terp__.py')))
44
45 done = []
46
47 print 'digraph G {'
48 while len(modules):
49     f = modules.pop(0)
50     done.append(f)
51     if os.path.isfile(os.path.join(f,"__terp__.py")):
52         info=eval(file(os.path.join(f,"__terp__.py")).read())
53         if info.get('installable', True):
54             for name in info['depends']:
55                 if name not in done+modules:
56                     modules.append(name)
57                 print '\t%s -> %s;' % (f, name)
58 print '}'
59
60 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
61