概述
python中 asyncio 模块内置了对异步io的支持,用于处理异步io;是python 3.4版本引入的标准库。
asyncio 的编程模型就是一个消息循环。
我们从 asyncio 块中直接获取一个 eventloop 的引用,然后把需要执行的协程扔到 eventloop 中执行,就实现了异步io。
用asyncio实现hello world
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# @time : 2019/1/9 11:23
# @author : arrow and bullet
# @filename: test.py
# @software: pycharm
# @blog :https://blog.csdn.net/qq_41800366
import asyncio
@asyncio.coroutine
def hello():
print("hello world!")
# 异步调用asyncio.sleep(2):
yield from asyncio.sleep(2)
print("hello again!")
# 获取eventloop:
loop = asyncio.get_event_loop()
# 执行coroutine
loop.run_until_complete(hello())
loop.close()@asyncio.coroutine 把一个 generator 标记为 coroutine 类型,然后,我们就把这个 coroutine 扔到 eventloop 中执行。
hello() 会首先打印出hello world!,然后,yield from语法可以让我们方便地调用另一个generator。由于 asyncio.sleep() 也是一个 coroutine,所以线程不会等待 asyncio.sleep() ,而是直接中断并执行下一个消息循环。
当asyncio.sleep()返回时,线程就可以从yield from拿到返回值(此处是none),然后接着执行下一行语句。
把asyncio.sleep(2)看成是一个耗时2秒的io操作(比如读取大文件),在此期间,主线程并未等待,而是去执行 eventloop 中其他可以执行的 coroutine 了,因此可以实现并发执行。
我们用task封装两个coroutine试试:
import threading
import asyncio
@asyncio.coroutine
def hello():
print('hello world! (%s)' % threading.currentthread())
yield from asyncio.sleep(2)
print('hello again! (%s)' % threading.currentthread())
loop = asyncio.get_event_loop()
tasks = [hello(), hello()]
loop.run_until_complete(asyncio.wait(tasks))
loop.close()观察执行过程:
hello world! (<_mainthread(mainthread, started 140735195337472)>)
hello world! (<_mainthread(mainthread, started 140735195337472)>)
(暂停约2秒)
hello again! (<_mainthread(mainthread, started 140735195337472)>)
hello again! (<_mainthread(mainthread, started 140735195337472)>)
由打印的当前线程名称可以看出,两个 coroutine 是由同一个线程并发执行的。
如果把 asyncio.sleep() 换成真正的io操作,则多个 coroutine 就可以由一个线程并发执行。
我们用asyncio的异步网络连接来获取sina、sohu和163的网站首页:
import asyncio
@asyncio.coroutine
def wget(host):
print('wget %s...' % host)
connect = asyncio.open_connection(host, 80) # 创建连接
reader, writer = yield from connect
header = 'get / http/1.0\r\nhost: %s\r\n\r\n' % host
writer.write(header.encode('utf-8'))
yield from writer.drain()
while true:
line = yield from reader.readline()
if line == b'\r\n':
break
print('%s header > %s' % (host, line.decode('utf-8').rstrip()))
# ignore the body, close the socket
writer.close()
loop = asyncio.get_event_loop()
tasks = [wget(host) for host in ['www.sina.com.cn', 'www.sohu.com', 'www.163.com']]
loop.run_until_complete(asyncio.wait(tasks))
loop.close()执行结果如下:
wget www.sohu.com...
wget www.sina.com.cn...
wget www.163.com...
(等待一段时间)
(打印出sohu的header)
www.sohu.com header > http/1.1 200 ok
www.sohu.com header > content-type: text/html
...
(打印出sina的header)
www.sina.com.cn header > http/1.1 200 ok
www.sina.com.cn header > date: wed, 20 may 2015 04:56:33 gmt
...
(打印出163的header)
www.163.com header > http/1.0 302 moved temporarily
www.163.com header > server: cdn cache server v2.0
...
可见3个连接由一个线程通过coroutine并发完成。
总结
asyncio提供了完善的异步io支持;
异步操作需要在coroutine中通过yield from完成;
多个coroutine可以封装成一组task然后并发执行。
以上为个人经验,希望能给大家一个参考,也希望大家多多支持代码网。
发表评论