V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
推荐学习书目
Learn Python the Hard Way
Python Sites
PyPI - Python Package Index
http://diveintopython.org/toc/index.html
Pocoo
值得关注的项目
PyPy
Celery
Jinja2
Read the Docs
gevent
pyenv
virtualenv
Stackless Python
Beautiful Soup
结巴中文分词
Green Unicorn
Sentry
Shovel
Pyflakes
pytest
Python 编程
pep8 Checker
Styles
PEP 8
Google Python Style Guide
Code Style from The Hitchhiker's Guide
boyhailong
V2EX  ›  Python

gevent 中写的很巧妙的地方分享

  •  
  •   boyhailong · 2016-04-07 22:38:27 +08:00 · 2356 次点击
    这是一个创建于 2931 天前的主题,其中的信息可能已经有所发展或是发生改变。

    看到源代码里在 recv 里有个 while 循环

    def recv(self, *args):
            sock = self._sock  # keeping the reference so that fd is not closed during waiting
            while True:
                try:
                    return sock.recv(*args)
                except error as ex:
                    if ex.args[0] != EWOULDBLOCK or self.timeout == 0.0:
                        raise
                    # QQQ without clearing exc_info test__refcount.test_clean_exit fails
                    sys.exc_clear()
                self._wait(self._read_event)
    

    当前可读的话,直接返回数据;
    如果不可读,调用_wait 将 sock 可读事件放进 loop 里等待 loop 检测可读事件,有可读事件时切换到当前协程,函数就开始执行
    return sock.recv(*args)
    理论上 while 循环最多被执行 2 次
    刚开始看没怎么懂,协程的编程还是流弊,之前 C++用习惯了线程回调,还一时转换不过来。

    1 条回复    2016-04-10 11:43:17 +08:00
    AZLisme
        1
    AZLisme  
       2016-04-10 11:43:17 +08:00
    哈哈,还可以还可以。
    我觉得就是充分利用了协程特性,是协程巧妙
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   1006 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 26ms · UTC 20:07 · PVG 04:07 · LAX 13:07 · JFK 16:07
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.