##// END OF EJS Templates
policy: add helper to import cext/pure module...
Yuya Nishihara -
r32366:8e0327da default
parent child Browse files
Show More
@@ -24,6 +24,14 b' import sys'
24 policy = b'allow'
24 policy = b'allow'
25 policynoc = (b'cffi', b'cffi-allow', b'py')
25 policynoc = (b'cffi', b'cffi-allow', b'py')
26 policynocffi = (b'c', b'py')
26 policynocffi = (b'c', b'py')
27 _packageprefs = {
28 # policy: (versioned package, pure package)
29 b'c': (r'cext', None),
30 b'allow': (r'cext', r'pure'),
31 b'cffi': (None, r'pure'), # TODO: (r'cffi', None)
32 b'cffi-allow': (None, r'pure'), # TODO: (r'cffi', r'pure')
33 b'py': (None, r'pure'),
34 }
27
35
28 try:
36 try:
29 from . import __modulepolicy__
37 from . import __modulepolicy__
@@ -49,3 +57,40 b' if sys.version_info[0] >= 3:'
49 policy = os.environ[r'HGMODULEPOLICY'].encode(r'utf-8')
57 policy = os.environ[r'HGMODULEPOLICY'].encode(r'utf-8')
50 else:
58 else:
51 policy = os.environ.get(r'HGMODULEPOLICY', policy)
59 policy = os.environ.get(r'HGMODULEPOLICY', policy)
60
61 def _importfrom(pkgname, modname):
62 # from .<pkgname> import <modname> (where . is looked through this module)
63 fakelocals = {}
64 pkg = __import__(pkgname, globals(), fakelocals, [modname], level=1)
65 try:
66 fakelocals[modname] = mod = getattr(pkg, modname)
67 except AttributeError:
68 raise ImportError(r'cannot import name %s' % modname)
69 # force import; fakelocals[modname] may be replaced with the real module
70 getattr(mod, r'__doc__', None)
71 return fakelocals[modname]
72
73 def _checkmod(pkgname, modname, mod):
74 expected = 1 # TODO: maybe defined in table?
75 actual = getattr(mod, r'version', None)
76 if actual != expected:
77 raise ImportError(r'cannot import module %s.%s '
78 r'(expected version: %d, actual: %r)'
79 % (pkgname, modname, expected, actual))
80
81 def importmod(modname):
82 """Import module according to policy and check API version"""
83 try:
84 verpkg, purepkg = _packageprefs[policy]
85 except KeyError:
86 raise ImportError(r'invalid HGMODULEPOLICY %r' % policy)
87 assert verpkg or purepkg
88 if verpkg:
89 try:
90 mod = _importfrom(verpkg, modname)
91 _checkmod(verpkg, modname, mod)
92 return mod
93 except ImportError:
94 if not purepkg:
95 raise
96 return _importfrom(purepkg, modname)
General Comments 0
You need to be logged in to leave comments. Login now