~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/pyutils.py

  • Committer: Jelmer Vernooij
  • Date: 2011-12-18 15:28:38 UTC
  • mto: This revision was merged to the branch mainline in revision 6386.
  • Revision ID: jelmer@samba.org-20111218152838-5wxpfnugk2jd625k
UseĀ absolute_import.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Copyright (C) 2010 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
16
 
 
17
from __future__ import absolute_import
 
18
 
 
19
"""General Python convenience functions."""
 
20
 
 
21
 
 
22
import sys
 
23
 
 
24
 
 
25
def get_named_object(module_name, member_name=None):
 
26
    """Get the Python object named by a given module and member name.
 
27
 
 
28
    This is usually much more convenient than dealing with ``__import__``
 
29
    directly::
 
30
 
 
31
        >>> doc = get_named_object('bzrlib.pyutils', 'get_named_object.__doc__')
 
32
        >>> doc.splitlines()[0]
 
33
        'Get the Python object named by a given module and member name.'
 
34
 
 
35
    :param module_name: a module name, as would be found in sys.modules if
 
36
        the module is already imported.  It may contain dots.  e.g. 'sys' or
 
37
        'os.path'.
 
38
    :param member_name: (optional) a name of an attribute in that module to
 
39
        return.  It may contain dots.  e.g. 'MyClass.some_method'.  If not
 
40
        given, the named module will be returned instead.
 
41
    :raises: ImportError or AttributeError.
 
42
    """
 
43
    # We may have just a module name, or a module name and a member name,
 
44
    # and either may contain dots.  __import__'s return value is a bit
 
45
    # unintuitive, so we need to take care to always return the object
 
46
    # specified by the full combination of module name + member name.
 
47
    if member_name:
 
48
        # Give __import__ a from_list.  It will return the last module in
 
49
        # the dotted module name.
 
50
        attr_chain = member_name.split('.')
 
51
        from_list = attr_chain[:1]
 
52
        obj = __import__(module_name, {}, {}, from_list)
 
53
        for attr in attr_chain:
 
54
            obj = getattr(obj, attr)
 
55
    else:
 
56
        # We're just importing a module, no attributes, so we have no
 
57
        # from_list.  __import__ will return the first module in the dotted
 
58
        # module name, so we look up the module from sys.modules.
 
59
        __import__(module_name, globals(), locals(), [])
 
60
        obj = sys.modules[module_name]
 
61
    return obj
 
62
 
 
63
 
 
64
def calc_parent_name(module_name, member_name=None):
 
65
    """Determine the 'parent' of a given dotted module name and (optional)
 
66
    member name.
 
67
 
 
68
    The idea is that ``getattr(parent_obj, final_attr)`` will equal
 
69
    get_named_object(module_name, member_name).
 
70
 
 
71
    :return: (module_name, member_name, final_attr) tuple.
 
72
    """
 
73
# +SKIP is not recognized by python2.4
 
74
# Typical use is::
 
75
 
76
#     >>> parent_mod, parent_member, final_attr = calc_parent_name(
 
77
#     ...     module_name, member_name) # doctest: +SKIP
 
78
#     >>> parent_obj = get_named_object(parent_mod, parent_member)
 
79
#     ... # doctest: +SKIP
 
80
    if member_name is not None:
 
81
        split_name = member_name.rsplit('.', 1)
 
82
        if len(split_name) == 1:
 
83
            return (module_name, None, member_name)
 
84
        else:
 
85
            return (module_name, split_name[0], split_name[1])
 
86
    else:
 
87
        split_name = module_name.rsplit('.', 1)
 
88
        if len(split_name) == 1:
 
89
            raise AssertionError(
 
90
                'No parent object for top-level module %r' % (module_name,))
 
91
        else:
 
92
            return (split_name[0], None, split_name[1])