| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | """Import hook support.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Consistent use of this module will make it possible to change the | 
					
						
							|  |  |  | different mechanisms involved in loading modules independently. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | While the built-in module imp exports interfaces to the built-in | 
					
						
							|  |  |  | module searching and loading algorithm, and it is possible to replace | 
					
						
							|  |  |  | the built-in function __import__ in order to change the semantics of | 
					
						
							|  |  |  | the import statement, until now it has been difficult to combine the | 
					
						
							|  |  |  | effect of different __import__ hacks, like loading modules from URLs | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  | by rimport.py, or restricted execution by rexec.py. | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | This module defines three new concepts: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  | 1) A "file system hooks" class provides an interface to a filesystem. | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | One hooks class is defined (Hooks), which uses the interface provided | 
					
						
							|  |  |  | by standard modules os and os.path.  It should be used as the base | 
					
						
							|  |  |  | class for other hooks classes. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-10-20 14:01:56 +00:00
										 |  |  | 2) A "module loader" class provides an interface to search for a | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | module in a search path and to load it.  It defines a method which | 
					
						
							|  |  |  | searches for a module in a single directory; by overriding this method | 
					
						
							|  |  |  | one can redefine the details of the search.  If the directory is None, | 
					
						
							|  |  |  | built-in and frozen modules are searched instead. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | Two module loader class are defined, both implementing the search | 
					
						
							|  |  |  | strategy used by the built-in __import__ function: ModuleLoader uses | 
					
						
							|  |  |  | the imp module's find_module interface, while HookableModuleLoader | 
					
						
							|  |  |  | uses a file system hooks class to interact with the file system.  Both | 
					
						
							|  |  |  | use the imp module's load_* interfaces to actually load the module. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  | 3) A "module importer" class provides an interface to import a | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | module, as well as interfaces to reload and unload a module.  It also | 
					
						
							|  |  |  | provides interfaces to install and uninstall itself instead of the | 
					
						
							|  |  |  | default __import__ and reload (and unload) functions. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | One module importer class is defined (ModuleImporter), which uses a | 
					
						
							|  |  |  | module loader instance passed in (by default HookableModuleLoader is | 
					
						
							|  |  |  | instantiated). | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | The classes defined here should be used as base classes for extended | 
					
						
							|  |  |  | functionality along those lines. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-23 15:35:05 +00:00
										 |  |  | If a module importer class supports dotted names, its import_module() | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | must return a different value depending on whether it is called on | 
					
						
							|  |  |  | behalf of a "from ... import ..." statement or not.  (This is caused | 
					
						
							|  |  |  | by the way the __import__ hook is used by the Python interpreter.)  It | 
					
						
							|  |  |  | would also do wise to install a different version of reload(). | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | """
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import __builtin__ | 
					
						
							|  |  |  | import imp | 
					
						
							|  |  |  | import os | 
					
						
							|  |  |  | import sys | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2001-01-23 15:35:05 +00:00
										 |  |  | __all__ = ["BasicModuleLoader","Hooks","ModuleLoader","FancyModuleLoader", | 
					
						
							|  |  |  |            "BasicModuleImporter","ModuleImporter","install","uninstall"] | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | VERBOSE = 0 | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | from imp import C_EXTENSION, PY_SOURCE, PY_COMPILED | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  | from imp import C_BUILTIN, PY_FROZEN, PKG_DIRECTORY | 
					
						
							|  |  |  | BUILTIN_MODULE = C_BUILTIN | 
					
						
							|  |  |  | FROZEN_MODULE = PY_FROZEN | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class _Verbose: | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |     def __init__(self, verbose = VERBOSE): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         self.verbose = verbose | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def get_verbose(self): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         return self.verbose | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def set_verbose(self, verbose): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         self.verbose = verbose | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # XXX The following is an experimental interface | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def note(self, *args): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         if self.verbose: | 
					
						
							| 
									
										
										
										
											2003-02-27 20:14:51 +00:00
										 |  |  |             self.message(*args) | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def message(self, format, *args): | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |         if args: | 
					
						
							|  |  |  |             print format%args | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             print format | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class BasicModuleLoader(_Verbose): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     """Basic module loader.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     This provides the same functionality as built-in import.  It | 
					
						
							|  |  |  |     doesn't deal with checking sys.modules -- all it provides is | 
					
						
							|  |  |  |     find_module() and a load_module(), as well as find_module_in_dir() | 
					
						
							|  |  |  |     which searches just one directory, and can be overridden by a | 
					
						
							|  |  |  |     derived class to change the module search algorithm when the basic | 
					
						
							|  |  |  |     dependency on sys.path is unchanged. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     The interface is a little more convenient than imp's: | 
					
						
							|  |  |  |     find_module(name, [path]) returns None or 'stuff', and | 
					
						
							|  |  |  |     load_module(name, stuff) loads the module. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def find_module(self, name, path = None): | 
					
						
							| 
									
										
										
										
											2001-01-14 23:47:14 +00:00
										 |  |  |         if path is None: | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |             path = [None] + self.default_path() | 
					
						
							|  |  |  |         for dir in path: | 
					
						
							|  |  |  |             stuff = self.find_module_in_dir(name, dir) | 
					
						
							|  |  |  |             if stuff: return stuff | 
					
						
							|  |  |  |         return None | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def default_path(self): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         return sys.path | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def find_module_in_dir(self, name, dir): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         if dir is None: | 
					
						
							|  |  |  |             return self.find_builtin_module(name) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 return imp.find_module(name, [dir]) | 
					
						
							|  |  |  |             except ImportError: | 
					
						
							|  |  |  |                 return None | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def find_builtin_module(self, name): | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |         # XXX frozen packages? | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         if imp.is_builtin(name): | 
					
						
							|  |  |  |             return None, '', ('', '', BUILTIN_MODULE) | 
					
						
							|  |  |  |         if imp.is_frozen(name): | 
					
						
							|  |  |  |             return None, '', ('', '', FROZEN_MODULE) | 
					
						
							|  |  |  |         return None | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_module(self, name, stuff): | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |         file, filename, info = stuff | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         try: | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |             return imp.load_module(name, file, filename, info) | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         finally: | 
					
						
							|  |  |  |             if file: file.close() | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class Hooks(_Verbose): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     """Hooks into the filesystem and interpreter.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     By deriving a subclass you can redefine your filesystem interface, | 
					
						
							|  |  |  |     e.g. to merge it with the URL space. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     This base class behaves just like the native filesystem. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     # imp interface | 
					
						
							|  |  |  |     def get_suffixes(self): return imp.get_suffixes() | 
					
						
							|  |  |  |     def new_module(self, name): return imp.new_module(name) | 
					
						
							|  |  |  |     def is_builtin(self, name): return imp.is_builtin(name) | 
					
						
							|  |  |  |     def init_builtin(self, name): return imp.init_builtin(name) | 
					
						
							|  |  |  |     def is_frozen(self, name): return imp.is_frozen(name) | 
					
						
							|  |  |  |     def init_frozen(self, name): return imp.init_frozen(name) | 
					
						
							|  |  |  |     def get_frozen_object(self, name): return imp.get_frozen_object(name) | 
					
						
							|  |  |  |     def load_source(self, name, filename, file=None): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         return imp.load_source(name, filename, file) | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  |     def load_compiled(self, name, filename, file=None): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         return imp.load_compiled(name, filename, file) | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  |     def load_dynamic(self, name, filename, file=None): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         return imp.load_dynamic(name, filename, file) | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |     def load_package(self, name, filename, file=None): | 
					
						
							|  |  |  |         return imp.load_module(name, file, filename, ("", "", PKG_DIRECTORY)) | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def add_module(self, name): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         d = self.modules_dict() | 
					
						
							| 
									
										
										
										
											2002-06-01 14:18:47 +00:00
										 |  |  |         if name in d: return d[name] | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         d[name] = m = self.new_module(name) | 
					
						
							|  |  |  |         return m | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     # sys interface | 
					
						
							|  |  |  |     def modules_dict(self): return sys.modules | 
					
						
							|  |  |  |     def default_path(self): return sys.path | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def path_split(self, x): return os.path.split(x) | 
					
						
							|  |  |  |     def path_join(self, x, y): return os.path.join(x, y) | 
					
						
							|  |  |  |     def path_isabs(self, x): return os.path.isabs(x) | 
					
						
							|  |  |  |     # etc. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def path_exists(self, x): return os.path.exists(x) | 
					
						
							|  |  |  |     def path_isdir(self, x): return os.path.isdir(x) | 
					
						
							|  |  |  |     def path_isfile(self, x): return os.path.isfile(x) | 
					
						
							|  |  |  |     def path_islink(self, x): return os.path.islink(x) | 
					
						
							|  |  |  |     # etc. | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2003-02-27 20:14:51 +00:00
										 |  |  |     def openfile(self, *x): return open(*x) | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  |     openfile_error = IOError | 
					
						
							|  |  |  |     def listdir(self, x): return os.listdir(x) | 
					
						
							|  |  |  |     listdir_error = os.error | 
					
						
							|  |  |  |     # etc. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class ModuleLoader(BasicModuleLoader): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     """Default module loader; uses file system hooks.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     By defining suitable hooks, you might be able to load modules from | 
					
						
							|  |  |  |     other sources than the file system, e.g. from compressed or | 
					
						
							|  |  |  |     encrypted files, tar files or (if you're brave!) URLs. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |     def __init__(self, hooks = None, verbose = VERBOSE): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         BasicModuleLoader.__init__(self, verbose) | 
					
						
							|  |  |  |         self.hooks = hooks or Hooks(verbose) | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def default_path(self): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         return self.hooks.default_path() | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def modules_dict(self): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         return self.hooks.modules_dict() | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def get_hooks(self): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         return self.hooks | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def set_hooks(self, hooks): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         self.hooks = hooks | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def find_builtin_module(self, name): | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |         # XXX frozen packages? | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         if self.hooks.is_builtin(name): | 
					
						
							|  |  |  |             return None, '', ('', '', BUILTIN_MODULE) | 
					
						
							|  |  |  |         if self.hooks.is_frozen(name): | 
					
						
							|  |  |  |             return None, '', ('', '', FROZEN_MODULE) | 
					
						
							|  |  |  |         return None | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |     def find_module_in_dir(self, name, dir, allow_packages=1): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         if dir is None: | 
					
						
							|  |  |  |             return self.find_builtin_module(name) | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |         if allow_packages: | 
					
						
							|  |  |  |             fullname = self.hooks.path_join(dir, name) | 
					
						
							|  |  |  |             if self.hooks.path_isdir(fullname): | 
					
						
							|  |  |  |                 stuff = self.find_module_in_dir("__init__", fullname, 0) | 
					
						
							|  |  |  |                 if stuff: | 
					
						
							|  |  |  |                     file = stuff[0] | 
					
						
							|  |  |  |                     if file: file.close() | 
					
						
							|  |  |  |                     return None, fullname, ('', '', PKG_DIRECTORY) | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         for info in self.hooks.get_suffixes(): | 
					
						
							|  |  |  |             suff, mode, type = info | 
					
						
							|  |  |  |             fullname = self.hooks.path_join(dir, name+suff) | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 fp = self.hooks.openfile(fullname, mode) | 
					
						
							|  |  |  |                 return fp, fullname, info | 
					
						
							|  |  |  |             except self.hooks.openfile_error: | 
					
						
							|  |  |  |                 pass | 
					
						
							|  |  |  |         return None | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def load_module(self, name, stuff): | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |         file, filename, info = stuff | 
					
						
							|  |  |  |         (suff, mode, type) = info | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             if type == BUILTIN_MODULE: | 
					
						
							|  |  |  |                 return self.hooks.init_builtin(name) | 
					
						
							|  |  |  |             if type == FROZEN_MODULE: | 
					
						
							|  |  |  |                 return self.hooks.init_frozen(name) | 
					
						
							|  |  |  |             if type == C_EXTENSION: | 
					
						
							|  |  |  |                 m = self.hooks.load_dynamic(name, filename, file) | 
					
						
							|  |  |  |             elif type == PY_SOURCE: | 
					
						
							|  |  |  |                 m = self.hooks.load_source(name, filename, file) | 
					
						
							|  |  |  |             elif type == PY_COMPILED: | 
					
						
							|  |  |  |                 m = self.hooks.load_compiled(name, filename, file) | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |             elif type == PKG_DIRECTORY: | 
					
						
							|  |  |  |                 m = self.hooks.load_package(name, filename, file) | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |             else: | 
					
						
							| 
									
										
										
										
											2004-02-12 17:35:32 +00:00
										 |  |  |                 raise ImportError, "Unrecognized module type (%r) for %s" % \ | 
					
						
							|  |  |  |                       (type, name) | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         finally: | 
					
						
							|  |  |  |             if file: file.close() | 
					
						
							|  |  |  |         m.__file__ = filename | 
					
						
							|  |  |  |         return m | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class FancyModuleLoader(ModuleLoader): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     """Fancy module loader -- parses and execs the code itself.""" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def load_module(self, name, stuff): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         file, filename, (suff, mode, type) = stuff | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |         realfilename = filename | 
					
						
							|  |  |  |         path = None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if type == PKG_DIRECTORY: | 
					
						
							|  |  |  |             initstuff = self.find_module_in_dir("__init__", filename, 0) | 
					
						
							|  |  |  |             if not initstuff: | 
					
						
							|  |  |  |                 raise ImportError, "No __init__ module in package %s" % name | 
					
						
							|  |  |  |             initfile, initfilename, initinfo = initstuff | 
					
						
							|  |  |  |             initsuff, initmode, inittype = initinfo | 
					
						
							|  |  |  |             if inittype not in (PY_COMPILED, PY_SOURCE): | 
					
						
							|  |  |  |                 if initfile: initfile.close() | 
					
						
							|  |  |  |                 raise ImportError, \ | 
					
						
							| 
									
										
										
										
											2004-02-12 17:35:32 +00:00
										 |  |  |                     "Bad type (%r) for __init__ module in package %s" % ( | 
					
						
							|  |  |  |                     inittype, name) | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |             path = [filename] | 
					
						
							|  |  |  |             file = initfile | 
					
						
							|  |  |  |             realfilename = initfilename | 
					
						
							|  |  |  |             type = inittype | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         if type == FROZEN_MODULE: | 
					
						
							|  |  |  |             code = self.hooks.get_frozen_object(name) | 
					
						
							|  |  |  |         elif type == PY_COMPILED: | 
					
						
							|  |  |  |             import marshal | 
					
						
							|  |  |  |             file.seek(8) | 
					
						
							|  |  |  |             code = marshal.load(file) | 
					
						
							|  |  |  |         elif type == PY_SOURCE: | 
					
						
							|  |  |  |             data = file.read() | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |             code = compile(data, realfilename, 'exec') | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         else: | 
					
						
							|  |  |  |             return ModuleLoader.load_module(self, name, stuff) | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         m = self.hooks.add_module(name) | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |         if path: | 
					
						
							|  |  |  |             m.__path__ = path | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         m.__file__ = filename | 
					
						
							|  |  |  |         exec code in m.__dict__ | 
					
						
							|  |  |  |         return m | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  | class BasicModuleImporter(_Verbose): | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |     """Basic module importer; uses module loader.
 | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |     This provides basic import facilities but no package imports. | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     """
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |     def __init__(self, loader = None, verbose = VERBOSE): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         _Verbose.__init__(self, verbose) | 
					
						
							|  |  |  |         self.loader = loader or ModuleLoader(None, verbose) | 
					
						
							|  |  |  |         self.modules = self.loader.modules_dict() | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def get_loader(self): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         return self.loader | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def set_loader(self, loader): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         self.loader = loader | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def get_hooks(self): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         return self.loader.get_hooks() | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def set_hooks(self, hooks): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         return self.loader.set_hooks(hooks) | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def import_module(self, name, globals={}, locals={}, fromlist=[]): | 
					
						
							| 
									
										
										
										
											2002-12-16 13:11:57 +00:00
										 |  |  |         name = str(name) | 
					
						
							| 
									
										
										
										
											2002-06-01 14:18:47 +00:00
										 |  |  |         if name in self.modules: | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |             return self.modules[name] # Fast path | 
					
						
							|  |  |  |         stuff = self.loader.find_module(name) | 
					
						
							|  |  |  |         if not stuff: | 
					
						
							|  |  |  |             raise ImportError, "No module named %s" % name | 
					
						
							|  |  |  |         return self.loader.load_module(name, stuff) | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def reload(self, module, path = None): | 
					
						
							| 
									
										
										
										
											2002-12-16 13:11:57 +00:00
										 |  |  |         name = str(module.__name__) | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         stuff = self.loader.find_module(name, path) | 
					
						
							|  |  |  |         if not stuff: | 
					
						
							|  |  |  |             raise ImportError, "Module %s not found for reload" % name | 
					
						
							|  |  |  |         return self.loader.load_module(name, stuff) | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def unload(self, module): | 
					
						
							| 
									
										
										
										
											2002-12-16 13:11:57 +00:00
										 |  |  |         del self.modules[str(module.__name__)] | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         # XXX Should this try to clear the module's namespace? | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def install(self): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         self.save_import_module = __builtin__.__import__ | 
					
						
							|  |  |  |         self.save_reload = __builtin__.reload | 
					
						
							|  |  |  |         if not hasattr(__builtin__, 'unload'): | 
					
						
							|  |  |  |             __builtin__.unload = None | 
					
						
							|  |  |  |         self.save_unload = __builtin__.unload | 
					
						
							|  |  |  |         __builtin__.__import__ = self.import_module | 
					
						
							|  |  |  |         __builtin__.reload = self.reload | 
					
						
							|  |  |  |         __builtin__.unload = self.unload | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def uninstall(self): | 
					
						
							| 
									
										
										
										
											1998-03-26 21:13:24 +00:00
										 |  |  |         __builtin__.__import__ = self.save_import_module | 
					
						
							|  |  |  |         __builtin__.reload = self.save_reload | 
					
						
							|  |  |  |         __builtin__.unload = self.save_unload | 
					
						
							|  |  |  |         if not __builtin__.unload: | 
					
						
							|  |  |  |             del __builtin__.unload | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  | class ModuleImporter(BasicModuleImporter): | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     """A module importer that supports packages.""" | 
					
						
							| 
									
										
										
										
											2001-01-14 23:47:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |     def import_module(self, name, globals=None, locals=None, fromlist=None): | 
					
						
							|  |  |  |         parent = self.determine_parent(globals) | 
					
						
							| 
									
										
										
										
											2002-12-16 13:11:57 +00:00
										 |  |  |         q, tail = self.find_head_package(parent, str(name)) | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |         m = self.load_tail(q, tail) | 
					
						
							|  |  |  |         if not fromlist: | 
					
						
							|  |  |  |             return q | 
					
						
							|  |  |  |         if hasattr(m, "__path__"): | 
					
						
							|  |  |  |             self.ensure_fromlist(m, fromlist) | 
					
						
							|  |  |  |         return m | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def determine_parent(self, globals): | 
					
						
							| 
									
										
										
										
											2002-06-01 14:18:47 +00:00
										 |  |  |         if not globals or not "__name__" in globals: | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |             return None | 
					
						
							|  |  |  |         pname = globals['__name__'] | 
					
						
							| 
									
										
										
										
											2002-06-01 14:18:47 +00:00
										 |  |  |         if "__path__" in globals: | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |             parent = self.modules[pname] | 
					
						
							|  |  |  |             assert globals is parent.__dict__ | 
					
						
							|  |  |  |             return parent | 
					
						
							|  |  |  |         if '.' in pname: | 
					
						
							| 
									
										
										
										
											2001-02-09 10:18:37 +00:00
										 |  |  |             i = pname.rfind('.') | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |             pname = pname[:i] | 
					
						
							|  |  |  |             parent = self.modules[pname] | 
					
						
							|  |  |  |             assert parent.__name__ == pname | 
					
						
							|  |  |  |             return parent | 
					
						
							|  |  |  |         return None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def find_head_package(self, parent, name): | 
					
						
							|  |  |  |         if '.' in name: | 
					
						
							| 
									
										
										
										
											2001-02-09 10:18:37 +00:00
										 |  |  |             i = name.find('.') | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |             head = name[:i] | 
					
						
							|  |  |  |             tail = name[i+1:] | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             head = name | 
					
						
							|  |  |  |             tail = "" | 
					
						
							|  |  |  |         if parent: | 
					
						
							|  |  |  |             qname = "%s.%s" % (parent.__name__, head) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             qname = head | 
					
						
							|  |  |  |         q = self.import_it(head, qname, parent) | 
					
						
							|  |  |  |         if q: return q, tail | 
					
						
							|  |  |  |         if parent: | 
					
						
							|  |  |  |             qname = head | 
					
						
							|  |  |  |             parent = None | 
					
						
							|  |  |  |             q = self.import_it(head, qname, parent) | 
					
						
							|  |  |  |             if q: return q, tail | 
					
						
							|  |  |  |         raise ImportError, "No module named " + qname | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def load_tail(self, q, tail): | 
					
						
							|  |  |  |         m = q | 
					
						
							|  |  |  |         while tail: | 
					
						
							| 
									
										
										
										
											2001-02-09 10:18:37 +00:00
										 |  |  |             i = tail.find('.') | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |             if i < 0: i = len(tail) | 
					
						
							|  |  |  |             head, tail = tail[:i], tail[i+1:] | 
					
						
							|  |  |  |             mname = "%s.%s" % (m.__name__, head) | 
					
						
							|  |  |  |             m = self.import_it(head, mname, m) | 
					
						
							|  |  |  |             if not m: | 
					
						
							|  |  |  |                 raise ImportError, "No module named " + mname | 
					
						
							|  |  |  |         return m | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def ensure_fromlist(self, m, fromlist, recursive=0): | 
					
						
							|  |  |  |         for sub in fromlist: | 
					
						
							|  |  |  |             if sub == "*": | 
					
						
							|  |  |  |                 if not recursive: | 
					
						
							|  |  |  |                     try: | 
					
						
							|  |  |  |                         all = m.__all__ | 
					
						
							|  |  |  |                     except AttributeError: | 
					
						
							|  |  |  |                         pass | 
					
						
							|  |  |  |                     else: | 
					
						
							|  |  |  |                         self.ensure_fromlist(m, all, 1) | 
					
						
							|  |  |  |                 continue | 
					
						
							|  |  |  |             if sub != "*" and not hasattr(m, sub): | 
					
						
							|  |  |  |                 subname = "%s.%s" % (m.__name__, sub) | 
					
						
							|  |  |  |                 submod = self.import_it(sub, subname, m) | 
					
						
							|  |  |  |                 if not submod: | 
					
						
							|  |  |  |                     raise ImportError, "No module named " + subname | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2000-04-13 14:52:27 +00:00
										 |  |  |     def import_it(self, partname, fqname, parent, force_load=0): | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |         if not partname: | 
					
						
							|  |  |  |             raise ValueError, "Empty module name" | 
					
						
							| 
									
										
										
										
											2000-04-13 14:52:27 +00:00
										 |  |  |         if not force_load: | 
					
						
							|  |  |  |             try: | 
					
						
							|  |  |  |                 return self.modules[fqname] | 
					
						
							|  |  |  |             except KeyError: | 
					
						
							|  |  |  |                 pass | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |         try: | 
					
						
							|  |  |  |             path = parent and parent.__path__ | 
					
						
							|  |  |  |         except AttributeError: | 
					
						
							|  |  |  |             return None | 
					
						
							| 
									
										
										
										
											2002-12-16 13:11:57 +00:00
										 |  |  |         partname = str(partname) | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |         stuff = self.loader.find_module(partname, path) | 
					
						
							|  |  |  |         if not stuff: | 
					
						
							|  |  |  |             return None | 
					
						
							| 
									
										
										
										
											2002-12-16 13:11:57 +00:00
										 |  |  |         fqname = str(fqname) | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |         m = self.loader.load_module(fqname, stuff) | 
					
						
							|  |  |  |         if parent: | 
					
						
							|  |  |  |             setattr(parent, partname, m) | 
					
						
							|  |  |  |         return m | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def reload(self, module): | 
					
						
							| 
									
										
										
										
											2002-12-16 13:11:57 +00:00
										 |  |  |         name = str(module.__name__) | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |         if '.' not in name: | 
					
						
							| 
									
										
										
										
											2000-04-13 14:52:27 +00:00
										 |  |  |             return self.import_it(name, name, None, force_load=1) | 
					
						
							| 
									
										
										
										
											2001-02-09 10:18:37 +00:00
										 |  |  |         i = name.rfind('.') | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  |         pname = name[:i] | 
					
						
							|  |  |  |         parent = self.modules[pname] | 
					
						
							| 
									
										
										
										
											2000-04-13 14:52:27 +00:00
										 |  |  |         return self.import_it(name[i+1:], name, parent, force_load=1) | 
					
						
							| 
									
										
										
										
											1998-06-29 20:31:16 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											1995-08-04 04:00:20 +00:00
										 |  |  | default_importer = None | 
					
						
							|  |  |  | current_importer = None | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def install(importer = None): | 
					
						
							|  |  |  |     global current_importer | 
					
						
							|  |  |  |     current_importer = importer or default_importer or ModuleImporter() | 
					
						
							|  |  |  |     current_importer.install() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | def uninstall(): | 
					
						
							|  |  |  |     global current_importer | 
					
						
							|  |  |  |     current_importer.uninstall() |