python 動態加載module、class、function

python做爲一種動態解釋型語言,在實現各類框架方面具備很大的靈活性。java

最近在研究python web框架,發現各類框架中須要顯示的定義各類路由和Handler的映射,若是想要實現並維護複雜的web應用,靈活性很是欠缺。python

若是內容以「約定即配置」的方式完成handler和路由的映射操做,能夠大大增長python web框架的靈活性,此時動態映射是必不可少的。web

在java mvc框架中,可利用反射機制,實現動態映射,而python也能夠利用自己的特性,實現動態映射。mvc

一、得到指定package對象(其實也是module)框架

爲了遍歷此包下的全部module以及module中的controller,以及controller中的function,必須首先得到指定的package引用,可以使用以下方法:this

__import__(name, globals={}, locals={}, fromlist=)加載package,輸入name爲package的名字字符串spa

controller_package=__import__('com.project.controller',{},{},["models"])code

ps:直接使用__import__('com.project.controller')是沒法加載指望的package的,只會獲得頂層的package-‘com’,除非使用以下方法迭代得到。component

def my_import(name):
    mod = __import__(name)
    components = name.split('.')
    for comp in components[1:]:
        mod = getattr(mod, comp)
    return mod

官方文檔描述以下orm

When the name variable is of the form package.module, normally, the top-level package (the name up till the first dot) is returned,not the module named by name. However, when a non-empty fromlist argument is given, the module named by name is returned. This is done for compatibility with the bytecode generated for the different kinds of import statement; when using "import spam.ham.eggs", the top-level package spam must be placed in the importing namespace, but when using "from spam.ham import eggs", the spam.ham subpackage must be used to find the eggs variable. As a workaround for this behavior, use getattr() to extract the desired components.

二、遍歷指定package下的全部module

爲了得到controller_package下的module,可先使用dir(controller_package)得到controller_package對象範圍內的變量、方法和定義的類型列表。而後經過

for name in dir(controller_package):
  var=getattr(controller_package,name)
  print type(var)

遍歷此package中的全部module,並根據約定的controller文件命名方式,發現約定的module,並在module中發現約定好的class。

若是name表明的變量不是方法或者類,type(var)返回的值爲"<type 'module'>"。

三、遍歷指定module中的class

依然使用dir(module)方法,只不過type(var)返回的值爲"<type 'classobj'>"。

四、遍歷指定class中的method

依然使用dir(class)方法,只不過type(var)返回的值爲"<type 'instancemethod'>"或者<type 'function'>,第一種爲對象方法,第二種爲類方法。

五、遍歷指定method中的參數名

使用method的func_code.co_varnames屬性,便可得到方法的參數名列表。

 

以上方法,適合在python web運行前,對全部的controller提早進行加載,若是須要根據用戶的請求再動態發現controller,依然可使用上面的方法完成,只是會更加的簡單,須要需找的controller路徑已知,只需遞歸得到controller的引用便可,再實例化,根據action名,執行執行的action。

 

總結:主要使用的方法

__import__('name')、dir(module)、type(module)、getattr(module,name)

相關文章
相關標籤/搜索