0

我正在将 jython 与第三方应用程序一起使用。第三方应用程序有一些内置库foo。为了进行一些(单元)测试,我们希望在应用程序之外运行一些代码。由于foo绑定到应用程序,我们决定编写自己的模拟实现。

但是有一个问题,我们在 python 中实现了我们的模拟类,而他们的类是在 java 中。因此,可以使用他们的代码,import foo而 foo 是之后的模拟。但是,如果我们像这样导入 python 模块,我们会得到附加到名称的模块foo.foo,因此必须编写才能进入该类。

为方便起见,我们希望能够编写from ourlib.thirdparty import foo绑定foofoo类。但是,我们希望避免直接导入所有类,因为每个文件的加载时间都需要相当长的时间。ourlib.thirdparty

在python中有什么办法吗?(我在 Import 钩子上没有走多远,我尝试简单地返回类load_module或覆盖我写的内容sys.modules(我认为这两种方法都很丑陋,尤其是后者))

编辑

好的:这是 ourlib.thirdparty 中的文件简化后的样子(没有魔法):

foo.py:

try:
    import foo
except ImportError:
    class foo
        ....

实际上它们看起来像这样:

foo.py:

class foo
    ....

__init__.py in ourlib.thirdparty
import sys
import os.path
import imp
#TODO: 3.0 importlib.util abstract base classes could greatly simplify this code or make it prettier.

class Importer(object):
    def __init__(self, path_entry):
        if not path_entry.startswith(os.path.join(os.path.dirname(__file__), 'thirdparty')):
            raise ImportError('Custom importer only for thirdparty objects')

        self._importTuples = {}

    def find_module(self, fullname):
        module = fullname.rpartition('.')[2]

        try:
            if fullname not in self._importTuples:
                fileObj, self._importTuples[fullname] = imp.find_module(module)

                if isinstance(fileObj, file):
                    fileObj.close()
        except:
            print 'backup'
            path = os.path.join(os.path.join(os.path.dirname(__file__), 'thirdparty'), module+'.py')
            if not os.path.isfile(path):
                return None
                raise ImportError("Could not find dummy class for %s (%s)\n(searched:%s)" % (module, fullname, path))

            self._importTuples[fullname] = path, ('.py', 'r', imp.PY_SOURCE)

        return self

    def load_module(self, fullname):
        fp = None
        python = False

        print fullname

        if self._importTuples[fullname][1][2] in (imp.PY_SOURCE, imp.PY_COMPILED, imp.PY_FROZEN):
            fp = open( self._importTuples[fullname][0], self._importTuples[fullname][1][1])
            python = True

        try:
            imp.load_module(fullname, fp, *self._importTuples[fullname])
        finally:
            if python:
                module = fullname.rpartition('.')[2]
                #setattr(sys.modules[fullname], module, getattr(sys.modules[fullname], module))
                #sys.modules[fullname] = getattr(sys.modules[fullname], module)

                if isinstance(fp, file):
                    fp.close()

                return getattr(sys.modules[fullname], module)



sys.path_hooks.append(Importer)
4

1 回答 1

0

正如其他人所说,在 Python 中这是一件很简单的事情,import语句本身就有这样的语法:

from foo import foo as original_foo,例如 - 甚至import foo as module_foo

值得注意的是,import语句将名称绑定到本地上下文上的导入模块或对象 - 但是,字典sys.modules (在 moduels sys of course), is a live reference to all imported modules, using their names as a key. This mechanism plays a key role in avoding that Python re-reads and re-executes and already imported module , when running (that is, if various of yoru modules or sub-modules import the samefoo` 模块上,它只被读取一次 - 后续导入使用存储在 sys.path 中的引用。模块)。

而且——除了“import...as”语法之外,Python 中的模块只是另一个对象:您可以在运行时为它们分配任何其他名称。

因此,以下代码也将非常适合您:

import foo
original_foo = foo
class foo(Mock):
   ...
于 2012-09-10T13:56:09.710 回答