~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/lazy_import.py

  • Committer: Robert Collins
  • Date: 2007-10-23 22:14:32 UTC
  • mto: (2592.6.3 repository)
  • mto: This revision was merged to the branch mainline in revision 2967.
  • Revision ID: robertc@robertcollins.net-20071023221432-j8zndh1oiegql3cu
* Commit updates the state of the working tree via a delta rather than
  supplying entirely new basis trees. For commit of a single specified file
  this reduces the wall clock time for commit by roughly a 30%.
  (Robert Collins, Martin Pool)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006-2010 Canonical Ltd
 
1
# Copyright (C) 2006 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
"""Functionality to create lazy evaluation objects.
18
18
 
64
64
            It will be passed (self, scope, name)
65
65
        :param name: The variable name in the given scope.
66
66
        """
67
 
        object.__setattr__(self, '_scope', scope)
68
 
        object.__setattr__(self, '_factory', factory)
69
 
        object.__setattr__(self, '_name', name)
70
 
        object.__setattr__(self, '_real_obj', None)
 
67
        self._scope = scope
 
68
        self._factory = factory
 
69
        self._name = name
 
70
        self._real_obj = None
71
71
        scope[name] = self
72
72
 
73
73
    def _replace(self):
87
87
                          " to another variable?",
88
88
                extra=e)
89
89
        obj = factory(self, scope, name)
90
 
        if obj is self:
91
 
            raise errors.IllegalUseOfScopeReplacer(name, msg="Object tried"
92
 
                " to replace itself, check it's not using its own scope.")
93
90
        if ScopeReplacer._should_proxy:
94
 
            object.__setattr__(self, '_real_obj', obj)
 
91
            self._real_obj = obj
95
92
        scope[name] = obj
96
93
        return obj
97
94
 
111
108
            _cleanup()
112
109
        return getattr(obj, attr)
113
110
 
114
 
    def __setattr__(self, attr, value):
115
 
        obj = object.__getattribute__(self, '_real_obj')
116
 
        if obj is None:
117
 
            _replace = object.__getattribute__(self, '_replace')
118
 
            obj = _replace()
119
 
            _cleanup = object.__getattribute__(self, '_cleanup')
120
 
            _cleanup()
121
 
        return setattr(obj, attr, value)
122
 
 
123
111
    def __call__(self, *args, **kwargs):
124
112
        _replace = object.__getattribute__(self, '_replace')
125
113
        obj = _replace()
152
140
 
153
141
        :param scope: The scope that objects should be imported into.
154
142
            Typically this is globals()
155
 
        :param name: The variable name. Often this is the same as the
 
143
        :param name: The variable name. Often this is the same as the 
156
144
            module_path. 'bzrlib'
157
145
        :param module_path: A list for the fully specified module path
158
146
            ['bzrlib', 'foo', 'bar']
160
148
            None, indicating the module is being imported.
161
149
        :param children: Children entries to be imported later.
162
150
            This should be a map of children specifications.
163
 
            {'foo':(['bzrlib', 'foo'], None,
 
151
            {'foo':(['bzrlib', 'foo'], None, 
164
152
                {'bar':(['bzrlib', 'foo', 'bar'], None {})})
165
153
            }
166
154
        Examples:
173
161
            from foo import bar, baz would get translated into 2 import
174
162
            requests. On for 'name=bar' and one for 'name=baz'
175
163
        """
176
 
        if (member is not None) and children:
177
 
            raise ValueError('Cannot supply both a member and children')
 
164
        if member is not None:
 
165
            assert not children, \
 
166
                'Cannot supply both a member and children'
178
167
 
179
 
        object.__setattr__(self, '_import_replacer_children', children)
180
 
        object.__setattr__(self, '_member', member)
181
 
        object.__setattr__(self, '_module_path', module_path)
 
168
        self._import_replacer_children = children
 
169
        self._member = member
 
170
        self._module_path = module_path
182
171
 
183
172
        # Indirecting through __class__ so that children can
184
173
        # override _import (especially our instrumented version)
262
251
 
263
252
        :param import_str: The import string to process
264
253
        """
265
 
        if not import_str.startswith('import '):
266
 
            raise ValueError('bad import string %r' % (import_str,))
 
254
        assert import_str.startswith('import ')
267
255
        import_str = import_str[len('import '):]
268
256
 
269
257
        for path in import_str.split(','):
308
296
 
309
297
        :param from_str: The import string to process
310
298
        """
311
 
        if not from_str.startswith('from '):
312
 
            raise ValueError('bad from/import %r' % from_str)
 
299
        assert from_str.startswith('from ')
313
300
        from_str = from_str[len('from '):]
314
301
 
315
302
        from_module, import_list = from_str.split(' import ')