推荐学习书目
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 · Apr 7, 2016 · 2931 views
    This topic created in 3690 days ago, the information mentioned may be changed or developed.

    看到源代码里在 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 replies    2016-04-10 11:43:17 +08:00
    AZLisme
        1
    AZLisme  
       Apr 10, 2016
    哈哈,还可以还可以。
    我觉得就是充分利用了协程特性,是协程巧妙
    About   ·   Help   ·   Advertise   ·   Blog   ·   API   ·   FAQ   ·   Solana   ·   2878 Online   Highest 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 45ms · UTC 10:19 · PVG 18:19 · LAX 03:19 · JFK 06:19
    ♥ Do have faith in what you're doing.