~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tools/package_mf.py

  • Committer: Alexander Belchenko
  • Date: 2008-02-06 14:39:31 UTC
  • mto: This revision was merged to the branch mainline in revision 3231.
  • Revision ID: bialix@ukr.net-20080206143931-d6opyuqsg4tvxd7q
custom module finder to find additional dependencies for built-in plugins (to bundle additional packages and modules into bzr.exe's library.zip)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2008 Canonical Ltd
 
2
#
 
3
# This program is free software; you can redistribute it and/or modify
 
4
# it under the terms of the GNU General Public License as published by
 
5
# the Free Software Foundation; either version 2 of the License, or
 
6
# (at your option) any later version.
 
7
#
 
8
# This program is distributed in the hope that it will be useful,
 
9
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
# GNU General Public License for more details.
 
12
#
 
13
# You should have received a copy of the GNU General Public License
 
14
# along with this program; if not, write to the Free Software
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
16
 
 
17
"""Custom module finder for entire package"""
 
18
 
 
19
import glob
 
20
import modulefinder
 
21
import os
 
22
import sys
 
23
 
 
24
 
 
25
class CustomModuleFinder(modulefinder.ModuleFinder):
 
26
    """Custom module finder for processing python packages,
 
27
    e.g. bzr plugins packages.
 
28
 
 
29
    :param  path:   list of directories to search for modules;
 
30
                    if not specified, python standard library only is used.
 
31
    """
 
32
 
 
33
    def __init__(self, path=None, debug=0, excludes=[], replace_paths=[]):
 
34
        if path is None:
 
35
            path = [os.path.join(sys.prefix, 'Lib')]    # only python std lib
 
36
        modulefinder.ModuleFinder.__init__(self, path, debug, excludes,
 
37
            replace_paths)
 
38
 
 
39
    def run_package(self, package_path):
 
40
        """Recursively process each module in package with run_script method.
 
41
 
 
42
        :param  package_path:   path to package directory.
 
43
        """
 
44
        stack = [package_path]
 
45
        while stack:
 
46
            curdir = stack.pop(0)
 
47
            py = os.listdir(curdir)
 
48
            for i in py:
 
49
                full = os.path.join(curdir, i)
 
50
                if os.path.isdir(full):
 
51
                    init = os.path.join(full, '__init__.py')
 
52
                    if os.path.isfile(init):
 
53
                        stack.append(full)
 
54
                    continue
 
55
                if not i.endswith('.py'):
 
56
                    continue
 
57
                if i == 'setup.py':     # skip
 
58
                    continue
 
59
                self.run_script(full)
 
60
 
 
61
    def get_result(self):
 
62
        """Return 2-tuple: (list of packages, list of modules)"""
 
63
        keys = self.modules.keys()
 
64
        keys.sort()
 
65
        mods = []
 
66
        packs = []
 
67
        for key in keys:
 
68
            m = self.modules[key]
 
69
            if not m.__file__:      # skip builtins
 
70
                continue
 
71
            if m.__path__:
 
72
                packs.append(key)
 
73
            elif key != '__main__':
 
74
                mods.append(key)
 
75
        return (packs, mods)
 
76
 
 
77
 
 
78
if __name__ == '__main__':
 
79
    package = sys.argv[1]
 
80
 
 
81
    mf = CustomModuleFinder()
 
82
    mf.run_package(package)
 
83
 
 
84
    packs, mods = mf.get_result()
 
85
 
 
86
    print 'Packages:'
 
87
    print packs
 
88
 
 
89
    print 'Modules:'
 
90
    print mods