python monkey_patch浅析

最近做了一个neutron集成vyatta的任务,顺便认真学习下neutron的代码,头几行就看到了monkey_patch。

首先就从neutron-server的启动脚本开始:

[[email protected] ~]# cat /usr/bin/neutron-server
#!/usr/bin/python
# PBR Generated from u‘console_scripts‘
import sys
from neutron.server import main
if __name__ == "__main__":
    sys.exit(main())
[[email protected] ~]# cat /usr/lib/python2.7/site-packages/neutron/server/__init__.py
import sys
import eventlet
eventlet.monkey_patch()        #  这里使用monkey_patch

from oslo.config import cfg

from neutron.common import config
from neutron import service

from neutron.openstack.common import gettextutils
from neutron.openstack.common import log as logging
gettextutils.install(‘neutron‘, lazy=True)

LOG = logging.getLogger(__name__)

def main():

什么是monkey_patch?

简单说就是程序在运行时动态对已有代码进行修改,而不需要修改原始代码。来看个例子:

[[email protected] tmp]# cat monkey_patch_test.py
class Monkey_patch(object):
    def patch(self):
        print "patch it!"
        
def patch(self):
    print "Modifies patch!"
    
Monkey_patch().patch()
Monkey_patch.patch = patch
Monkey_patch().patch()

python的namespace是开放的,通过dict来实现,所以达到patch比较容易。

python的namespace有:
1、locals
2、globals
3、builtin

一篇介绍eventlet的文章:http://www.cnblogs.com/Security-Darren/p/4170031.html

下面来看下eventlet.monkey_patch怎么用?

从上面可以看到:

eventlet.monkey_patch()  # 默认不加任何参数的情况下,是所有可能的module都会被patch。

# 看个例子
In [2]: eventlet.monkey_patch
Out[2]: <function eventlet.patcher.monkey_patch>

In [3]: eventlet.monkey_patch()

In [4]: import ti
time    timeit  timing

In [4]: import time
time    timeit

In [4]: import time

In [5]: eventlet.patcher.is_monkey_patched(‘time‘) # 查看一个module是否被monkey_patch,eventlet.patcher.is_monkey_patched(module)
Out[5]: True

In [6]: import sys

In [7]: eventlet.patcher.is_monkey_patched(‘sys‘)  # 说明eventlet没有对sys的patch
Out[7]: False

注:在程序中越早调用monkey_patch()越好,通常作为模块的第一行代码(避免子类继承父类的时候,父类还没被monkey_patch)

模块被monkey_patch后的好处:

[[email protected] tmp]# cat monkey_patch_test.py
#!/usr/bin/env python
import eventlet
eventlet.monkey_patch()

from eventlet.green import urllib2
import time

urls = ["http://www.tudou.com",
        "http://www.baid.com"
       ]
         
def test_1(url):
    try:
        print "open tudou"
        time.sleep(5)
        urllib2.urlopen(url).read()
        print "done open tudou"
    except urllib2.HTTPError:
        return
        
def test_2(url):
    try:
        print "open baidu"
        urllib2.urlopen(url).read()
        print "done open baidu"
    except urllib2.HTTPError:
        return
        
pool = eventlet.GreenPool(100)
pool.spawn(test_1, urls[0])
pool.spawn(test_2, urls[1])
pool.waitall()    # 等待所有绿色线程执行结束

当test_1中time.sleep被调用到时,会将运行权利交给了hub,然后接着执行test_2,如果不使用monkey_patch的话time.sleep(1)会阻塞。
你可以注释掉eventlet.monkey_patch()这行代码,然后再看下运行结果。

openstack项目中大量用到了monkey_patch

[[email protected] tmp]# grep -n -r "eventlet.monkey_patch" 
/usr/lib/python2.7/site-packages/neutron/agent/netns_cleanup_util.py:19:eventlet.monkey_patch()
/usr/lib/python2.7/site-packages/neutron/agent/l3_agent.py:20:eventlet.monkey_patch()
/usr/lib/python2.7/site-packages/oslo/messaging/_cmd/zmq_receiver.py:18:eventlet.monkey_patch()
。。。。。。
时间: 2024-11-16 20:08:34

python monkey_patch浅析的相关文章

Python yield 浅析(转)

您可能听说过,带有 yield 的函数在 Python 中被称之为 generator(生成器),何谓 generator ? 我们先抛开 generator,以一个常见的编程题目来展示 yield 的概念. 如何生成斐波那契數列 斐波那契(Fibonacci)數列是一个非常简单的递归数列,除第一个和第二个数外,任意一个数都可由前两个数相加得到.用计算机程序输出斐波那契數列的前 N 个数是一个非常简单的问题,许多初学者都可以轻易写出如下函数: 清单 1. 简单输出斐波那契數列前 N 个数 def

python类浅析(包含语法简单分析)

学习了一周python.通过一个简单的类的继承的例子,分析python中的一些语法. 1 class Animal: 2 age = 1 3 name = 'luo' 4 def __init__(self, n, a): 5 self.name = n 6 self.age = a 7 print("父类,名字:%s,年龄:%d" % (self.name, self.age)) 8 9 class Cat(Animal): 10 color = '' 11 def __init__

python yield 浅析

python 的 yield 关键字很多人可能不是很熟悉,最早知道这个关键字是看 xrange 的文档,其中提到了 yield.后来开始用 tornado,对 tornado 的异步模式比较感兴趣,也翻了一下 tornado 的源码,很多东西仍然是一知半解. 最近翻了翻 python 的源码,看了一下 yield 的实现,发现其实原理非常简单! 最简单的用法: def simple_yield(start): n = start while True: yield n n += 1 if __n

python日志浅析

输出日志对于追踪问题比较重要. 默认logger(root) python使用logging模块来处理日志.通常下面的用法就能满足常规需求: import logging logging.debug('some debug level info....')#debug级别消息 logging.info('some info level info...')#info级别消息 logging.warn('some warning level info...')#warning级别消息 logging

python设计模式浅析

今天简单聊聊python的设计模式,GOF设计模式(c++)和Head first design pattern(Java)是两本设计模式的经典,基本可以照搬在python上面,但是你会发现python有很多它特有的东西,比如它并没有多个构造函数,相对应的它有classmethod,所以python设计模式还是有值得聊聊的地方. 构造函数: python2: class Person(object): def __init__(self, name): self.name = name pyth

Python单元测试浅析

测试的意义 ??人们针对一个具体问题,通过分析和设计,最后用编程语言写出了一个程序,如果它通过了语言解释器(编译器)的检查,可以运行了,那么下一步的工作就是设法确认它确实满足了我们需求.这篇文章就是讨论怎么确认程序是否满足用户提出的需求. 满足需求,换言之就是功能正常,确认功能正常可以从以下几个方面确认: 定义的函数对于所有正确的参数都能返回正确的结果 写出的程序对所有合适的输入都能产生正确的输出 ??量化后的做法就是通过一系列的试运行,检查程序的行为.输入和输出,如果检查中发现了问题,就纠正.

Python之encode与decode浅析

 Python之encode与decode浅析 在 python 源代码文件中,如果你有用到非ASCII字符,则需要在文件头部进行字符编码的声明,声明如下: # code: UTF-8 因为python 只检查 #.coding 和编码字符串,为了美观等原因可以如下写法: #-*-coding:utf-8-*- 常见编码介绍: GB2312编码:适用于汉字处理.汉字通信等系统之间的信息交换. GBK编码:是汉字编码标准之一,是在 GB2312-80 标准基础上的内码扩展规范,使用了双字节编码.

浅析python中_name_=&#39;_main_&#39;

刚接触到python时,对代码中的_name_='_main_'比较疑惑,本文对其的讲解借鉴了其他博客讲述(见参考资料),希望和大家共同学习. Make a script both importable and executable 首先先看一个例子 1 #module.py 2 def main(): 3 print "we are in %s"%__name__ 4 if __name__ == '__main__': 5 main() 在这段函数中,定义main函数,当py文件被

浅析python 中__name__ = &#39;__main__&#39; 的作用

很多新手刚开始学习python的时候经常会看到python 中__name__ = \'__main__\' 这样的代码,可能很多新手一开始学习的时候都比较疑惑,python 中__name__ = '__main__' 的作用,到底干嘛的? 有句话经典的概括了这段代码的意义: "Make a script both importable and executable" 意思就是说让你写的脚本模块既可以导入到别的模块中用,另外该模块自己也可执行. __name__ 是当前模块名,当模块