~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/bzrdir.py

Add bzrlib.pyutils, which has get_named_object, a wrapper around __import__.

This is used to replace various ad hoc implementations of the same logic,
notably the version used in registry's _LazyObjectGetter which had a bug when
getting a module without also getting a member.  And of course, this new
function has unit tests, unlike the replaced code.

This also adds a KnownHooksRegistry subclass to provide a more natural home for
some other logic.

I'm not thrilled about the name of the new module or the new functions, but it's
hard to think of good names for such generic functionality.

Show diffs side-by-side

added added

removed removed

Lines of Context:
45
45
    lockable_files,
46
46
    lockdir,
47
47
    osutils,
 
48
    pyutils,
48
49
    remote,
49
50
    repository,
50
51
    revision as _mod_revision,
3092
3093
    def _load(full_name):
3093
3094
        mod_name, factory_name = full_name.rsplit('.', 1)
3094
3095
        try:
3095
 
            mod = __import__(mod_name, globals(), locals(),
3096
 
                    [factory_name])
 
3096
            factory = pyutils.get_named_object(mod_name, factory_name)
3097
3097
        except ImportError, e:
3098
3098
            raise ImportError('failed to load %s: %s' % (full_name, e))
3099
 
        try:
3100
 
            factory = getattr(mod, factory_name)
3101
3099
        except AttributeError:
3102
3100
            raise AttributeError('no factory %s in module %r'
3103
 
                % (full_name, mod))
 
3101
                % (full_name, sys.modules[mod_name]))
3104
3102
        return factory()
3105
3103
 
3106
3104
    def helper():