当前位置:Gxlcms > Python > Python编程中对MonkeyPatch猴子补丁开发方式

Python编程中对MonkeyPatch猴子补丁开发方式

时间:2021-07-01 10:21:17 帮助过:57人阅读

Monkey Patch猴子补丁方式是指在不修改程序原本代码的前提下,通过添加类或模块等方式在程序运行过程中加入代码,下面就来进一步详解Python编程中对Monkey Patch猴子补丁开发方式的运用

Monkey patch就是在运行时对已有的代码进行修改,达到hot patch的目的。Eventlet中大量使用了该技巧,以替换标准库中的组件,比如socket。首先来看一下最简单的monkey patch的实现。

  1. class Foo(object):
  2. def bar(self):
  3. print 'Foo.bar'
  4. def bar(self):
  5. print 'Modified bar'
  6. Foo().bar()
  7. Foo.bar = bar
  8. Foo().bar()

由于Python中的名字空间是开放,通过dict来实现,所以很容易就可以达到patch的目的。

Python namespace

Python有几个namespace,分别是

  • locals

  • globals

  • builtin

其中定义在函数内声明的变量属于locals,而模块内定义的函数属于globals。

Python module Import & Name Lookup

当我们import一个module时,python会做以下几件事情

  • 导入一个module

  • 将module对象加入到sys.modules,后续对该module的导入将直接从该dict中获得

  • 将module对象加入到globals dict中

当我们引用一个模块时,将会从globals中查找。这里如果要替换掉一个标准模块,我们得做以下两件事情

将我们自己的module加入到sys.modules中,替换掉原有的模块。如果被替换模块还没加载,那么我们得先对其进行加载,否则第一次加载时,还会加载标准模块。(这里有一个import hook可以用,不过这需要我们自己实现该hook,可能也可以使用该方法hook module import)
如果被替换模块引用了其他模块,那么我们也需要进行替换,但是这里我们可以修改globals dict,将我们的module加入到globals以hook这些被引用的模块。
Eventlet Patcher Implementation

现在我们先来看一下eventlet中的Patcher的调用代码吧,这段代码对标准的ftplib做monkey patch,将eventlet的GreenSocket替换标准的socket。

  1. from eventlet import patcher
  2. # *NOTE: there might be some funny business with the "SOCKS" module
  3. # if it even still exists
  4. from eventlet.green import socket
  5. patcher.inject('ftplib', globals(), ('socket', socket))
  6. del patcher
  7. inject函数会将eventlet的socket模块注入标准的ftplib中,globals dict被传入以做适当的修改。
  8. 让我们接着来看一下inject的实现。
  9. __exclude = set(('__builtins__', '__file__', '__name__'))
  10. def inject(module_name, new_globals, *additional_modules):
  11. """Base method for "injecting" greened modules into an imported module. It
  12. imports the module specified in *module_name*, arranging things so
  13. that the already-imported modules in *additional_modules* are used when
  14. *module_name* makes its imports.
  15. *new_globals* is either None or a globals dictionary that gets populated
  16. with the contents of the *module_name* module. This is useful when creating
  17. a "green" version of some other module.
  18. *additional_modules* should be a collection of two-element tuples, of the
  19. form (, ). If it's not specified, a default selection of
  20. name/module pairs is used, which should cover all use cases but may be
  21. slower because there are inevitably redundant or unnecessary imports.
  22. """
  23. if not additional_modules:
  24. # supply some defaults
  25. additional_modules = (
  26. _green_os_modules() +
  27. _green_select_modules() +
  28. _green_socket_modules() +
  29. _green_thread_modules() +
  30. _green_time_modules())
  31. ## Put the specified modules in sys.modules for the duration of the import
  32. saved = {}
  33. for name, mod in additional_modules:
  34. saved[name] = sys.modules.get(name, None)
  35. sys.modules[name] = mod
  36. ## Remove the old module from sys.modules and reimport it while
  37. ## the specified modules are in place
  38. old_module = sys.modules.pop(module_name, None)
  39. try:
  40. module = __import__(module_name, {}, {}, module_name.split('.')[:-1])
  41. if new_globals is not None:
  42. ## Update the given globals dictionary with everything from this new module
  43. for name in dir(module):
  44. if name not in __exclude:
  45. new_globals[name] = getattr(module, name)
  46. ## Keep a reference to the new module to prevent it from dying
  47. sys.modules['__patched_module_' + module_name] = module
  48. finally:
  49. ## Put the original module back
  50. if old_module is not None:
  51. sys.modules[module_name] = old_module
  52. elif module_name in sys.modules:
  53. del sys.modules[module_name]
  54. ## Put all the saved modules back
  55. for name, mod in additional_modules:
  56. if saved[name] is not None:
  57. sys.modules[name] = saved[name]
  58. else:
  59. del sys.modules[name]
  60. return module

注释比较清楚的解释了代码的意图。代码还是比较容易理解的。这里有一个函数__import__,这个函数提供一个模块名(字符串),来加载一个模块。而我们import或者reload时提供的名字是对象。

  1. if new_globals is not None:
  2. ## Update the given globals dictionary with everything from this new module
  3. for name in dir(module):
  4. if name not in __exclude:
  5. new_globals[name] = getattr(module, name)

这段代码的作用是将标准的ftplib中的对象加入到eventlet的ftplib模块中。因为我们在eventlet.ftplib中调用了inject,传入了globals,而inject中我们手动__import__了这个module,只得到了一个模块对象,所以模块中的对象不会被加入到globals中,需要手动添加。
这里为什么不用from ftplib import *的缘故,应该是因为这样无法做到完全替换ftplib的目的。因为from … import *会根据__init__.py中的__all__列表来导入public symbol,而这样对于下划线开头的private symbol将不会导入,无法做到完全patch。

更多Python编程中对Monkey Patch猴子补丁开发方式相关文章请关注PHP中文网!

人气教程排行