Monkey Patch モンキーパッチ手法とは、プログラムの元のコードを変更せずに、クラスまたはモジュールを追加することによって、プログラムの実行プロセス中にコードを追加することを指します。以下では、Monkey Patch モンキーパッチ開発手法の適用についてさらに詳しく説明します。 Python プログラミングでは、
モンキー パッチは、ホット パッチの目的を達成するために実行時に既存のコードを変更することです。この手法は、ソケットなどの標準ライブラリ内のコンポーネントを置き換えるために、Eventlet で広く使用されています。まず、モンキーパッチの最も単純な実装を見てみましょう。
class Foo(object): def bar(self): print 'Foo.bar' def bar(self): print 'Modified bar' Foo().bar() Foo.bar = bar Foo().bar()
Pythonの名前空間はオープンであり、dictを通じて実装されているため、パッチ適用の目的を簡単に達成できます。 Python 名前空間
python には、
ローカルPythonモジュールのインポートと名前の検索
モジュールをインポートするとき、Pythonは次のことを行います
モジュールをインポートします置き換えられたモジュールが他のモジュールを参照している場合は、それも置き換える必要がありますが、変更することはできますここでは globals dict を使用し、モジュールをグローバルに追加して、これらの参照モジュールをフックします。
イベントレット パッチャーの実装
次に、イベントレット内のパッチャー呼び出しコードを見てみましょう。このコードは、標準の ftplib にモンキー パッチを作成し、イベントレットの GreenSocket を標準のソケットに置き換えます。
from eventlet import patcher # *NOTE: there might be some funny business with the "SOCKS" module # if it even still exists from eventlet.green import socket patcher.inject('ftplib', globals(), ('socket', socket)) del patcher inject函数会将eventlet的socket模块注入标准的ftplib中,globals dict被传入以做适当的修改。 让我们接着来看一下inject的实现。 __exclude = set(('__builtins__', '__file__', '__name__')) def inject(module_name, new_globals, *additional_modules): """Base method for "injecting" greened modules into an imported module. It imports the module specified in *module_name*, arranging things so that the already-imported modules in *additional_modules* are used when *module_name* makes its imports. *new_globals* is either None or a globals dictionary that gets populated with the contents of the *module_name* module. This is useful when creating a "green" version of some other module. *additional_modules* should be a collection of two-element tuples, of the form (, ). If it's not specified, a default selection of name/module pairs is used, which should cover all use cases but may be slower because there are inevitably redundant or unnecessary imports. """ if not additional_modules: # supply some defaults additional_modules = ( _green_os_modules() + _green_select_modules() + _green_socket_modules() + _green_thread_modules() + _green_time_modules()) ## Put the specified modules in sys.modules for the duration of the import saved = {} for name, mod in additional_modules: saved[name] = sys.modules.get(name, None) sys.modules[name] = mod ## Remove the old module from sys.modules and reimport it while ## the specified modules are in place old_module = sys.modules.pop(module_name, None) try: module = __import__(module_name, {}, {}, module_name.split('.')[:-1]) if new_globals is not None: ## Update the given globals dictionary with everything from this new module for name in dir(module): if name not in __exclude: new_globals[name] = getattr(module, name) ## Keep a reference to the new module to prevent it from dying sys.modules['__patched_module_' + module_name] = module finally: ## Put the original module back if old_module is not None: sys.modules[module_name] = old_module elif module_name in sys.modules: del sys.modules[module_name] ## Put all the saved modules back for name, mod in additional_modules: if saved[name] is not None: sys.modules[name] = saved[name] else: del sys.modules[name] return moduleコメントはコードの意図をより明確に説明しています。コードは比較的理解しやすいです。モジュールをロードするためのモジュール名 (文字列) を提供する関数 __import__ があります。インポートまたはリロード時に指定する名前はオブジェクトです。
if new_globals is not None: ## Update the given globals dictionary with everything from this new module for name in dir(module): if name not in __exclude: new_globals[name] = getattr(module, name)このコードの機能は、標準 ftplib のオブジェクトをイベントレットの ftplib モジュールに追加することです。 eventlet.ftplib で inject を呼び出してグローバルに渡し、inject ではモジュールを手動で __import__ し、モジュール オブジェクトを 1 つだけ取得したため、モジュール内のオブジェクトはグローバルに追加されず、手動で追加する必要があります。
ここで from ftplib import * が使用されていないのは、おそらく ftplib を完全に置き換えることができないためです。 from...import * は __init__.py の __all__ リストに従ってパブリック シンボルをインポートするため、この方法ではアンダースコアで始まるプライベート シンボルはインポートされず、完全なパッチ適用は達成できません。
Python プログラミングでの Monkey Patch 開発方法に関連するその他の記事については、PHP 中国語 Web サイトに注目してください。