52
54
__slots__ = ('_scope', '_factory', '_name', '_real_obj')
54
# Setting this to True will allow you to do x = y, and still access members
55
# from both variables. This should not normally be enabled, but is useful
56
# when building documentation.
56
# If you to do x = y, setting this to False will disallow access to
57
# members from the second variable (i.e. x). This should normally
58
# be enabled for reasons of thread safety and documentation, but
59
# will be disabled during the selftest command to check for abuse.
59
62
def __init__(self, scope, factory, name):
60
63
"""Create a temporary object in the specified scope.
71
74
object.__setattr__(self, '_real_obj', None)
75
"""Actually replace self with other in the given scope"""
78
"""Return the real object for which this is a placeholder"""
76
79
name = object.__getattribute__(self, '_name')
80
real_obj = object.__getattribute__(self, '_real_obj')
82
# No obj generated previously, so generate from factory and scope.
78
83
factory = object.__getattribute__(self, '_factory')
79
84
scope = object.__getattribute__(self, '_scope')
80
except AttributeError, e:
81
# Because ScopeReplacer objects only replace a single
82
# item, passing them to another variable before they are
83
# replaced would cause them to keep getting replaced
84
# (only they are replacing the wrong variable). So we
85
# make it forbidden, and try to give a good error.
85
obj = factory(self, scope, name)
87
raise errors.IllegalUseOfScopeReplacer(name, msg="Object tried"
88
" to replace itself, check it's not using its own scope.")
90
# Check if another thread has jumped in while obj was generated.
91
real_obj = object.__getattribute__(self, '_real_obj')
93
# Still no prexisting obj, so go ahead and assign to scope and
94
# return. There is still a small window here where races will
95
# not be detected, but safest to avoid additional locking.
96
object.__setattr__(self, '_real_obj', obj)
100
# Raise if proxying is disabled as obj has already been generated.
101
if not ScopeReplacer._should_proxy:
86
102
raise errors.IllegalUseOfScopeReplacer(
87
name, msg="Object already cleaned up, did you assign it"
88
" to another variable?",
90
obj = factory(self, scope, name)
92
raise errors.IllegalUseOfScopeReplacer(name, msg="Object tried"
93
" to replace itself, check it's not using its own scope.")
94
if ScopeReplacer._should_proxy:
95
object.__setattr__(self, '_real_obj', obj)
100
"""Stop holding on to all the extra stuff"""
103
# We keep _name, so that we can report errors
103
name, msg="Object already replaced, did you assign it"
104
" to another variable?")
106
107
def __getattribute__(self, attr):
107
obj = object.__getattribute__(self, '_real_obj')
109
_replace = object.__getattribute__(self, '_replace')
111
_cleanup = object.__getattribute__(self, '_cleanup')
108
obj = object.__getattribute__(self, '_resolve')()
113
109
return getattr(obj, attr)
115
111
def __setattr__(self, attr, value):
116
obj = object.__getattribute__(self, '_real_obj')
118
_replace = object.__getattribute__(self, '_replace')
120
_cleanup = object.__getattribute__(self, '_cleanup')
112
obj = object.__getattribute__(self, '_resolve')()
122
113
return setattr(obj, attr, value)
124
115
def __call__(self, *args, **kwargs):
125
_replace = object.__getattribute__(self, '_replace')
127
_cleanup = object.__getattribute__(self, '_cleanup')
116
obj = object.__getattribute__(self, '_resolve')()
129
117
return obj(*args, **kwargs)
120
def disallow_proxying():
121
"""Disallow lazily imported modules to be used as proxies.
123
Calling this function might cause problems with concurrent imports
124
in multithreaded environments, but will help detecting wasteful
125
indirection, so it should be called when executing unit tests.
127
Only lazy imports that happen after this call are affected.
129
ScopeReplacer._should_proxy = False
132
132
class ImportReplacer(ScopeReplacer):
133
133
"""This is designed to replace only a portion of an import list.
197
197
module_path = object.__getattribute__(self, '_module_path')
198
198
module_python_path = '.'.join(module_path)
199
199
if member is not None:
200
module = __import__(module_python_path, scope, scope, [member])
200
module = __import__(module_python_path, scope, scope, [member], level=0)
201
201
return getattr(module, member)
203
module = __import__(module_python_path, scope, scope, [])
203
module = __import__(module_python_path, scope, scope, [], level=0)
204
204
for path in module_path[1:]:
205
205
module = getattr(module, path)