91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

200行自定義異步非阻塞Web框架

發布時間:2020-07-15 09:01:27 來源:網絡 閱讀:579 作者:python入門 欄目:開發技術

老男孩IT教育Python培訓教你如何使用python web框架

PythonWeb框架中Tornado以異步非阻塞而聞名。本篇將使用200行代碼完成一個微型異步非阻塞Web框架:Snow

一、源碼

本文基于非阻塞的Socket以及IO多路復用從而實現異步非阻塞的Web框架,其中便是眾多異步非阻塞Web框架內部原理。

200行自定義異步非阻塞Web框架

200行自定義異步非阻塞Web框架

#!/usr/bin/env python# -*- coding:utf-8 -*-import reimport socketimport selectimport timeclass HttpResponse(object):    """
    封裝響應信息    """
    def __init__(self, content=''):
        self.content = content

        self.headers = {}
        self.cookies = {}    def response(self):        return bytes(self.content, encoding='utf-8')class HttpNotFound(HttpResponse):    """
    404時的錯誤提示    """
    def __init__(self):
        super(HttpNotFound, self).__init__('404 Not Found')class HttpRequest(object):    """
    用戶封裝用戶請求信息    """
    def __init__(self, conn):
        self.conn = conn

        self.header_bytes = bytes()
        self.header_dict = {}
        self.body_bytes = bytes()

        self.method = ""
        self.url = ""
        self.protocol = ""

        self.initialize()
        self.initialize_headers()    def initialize(self):

        header_flag = False        while True:            try:
                received = self.conn.recv(8096)            except Exception as e:
                received = None            if not received:                break
            if header_flag:
                self.body_bytes += received                continue
            temp = received.split(b'\r\n\r\n', 1)            if len(temp) == 1:
                self.header_bytes += temp            else:
                h, b = temp
                self.header_bytes += h
                self.body_bytes += b
                header_flag = True

    @property    def header_str(self):        return str(self.header_bytes, encoding='utf-8')    def initialize_headers(self):
        headers = self.header_str.split('\r\n')
        first_line = headers[0].split(' ')        if len(first_line) == 3:
            self.method, self.url, self.protocol = headers[0].split(' ')            for line in headers:
                kv = line.split(':')                if len(kv) == 2:
                    k, v = kv
                    self.header_dict[k] = vclass Future(object):    """
    異步非阻塞模式時封裝回調函數以及是否準備就緒    """
    def __init__(self, callback):
        self.callback = callback
        self._ready = False
        self.value = None    def set_result(self, value=None):
        self.value = value
        self._ready = True

    @property    def ready(self):        return self._readyclass TimeoutFuture(Future):    """
    異步非阻塞超時    """
    def __init__(self, timeout):
        super(TimeoutFuture, self).__init__(callback=None)
        self.timeout = timeout
        self.start_time = time.time()

    @property    def ready(self):
        current_time = time.time()        if current_time > self.start_time + self.timeout:
            self._ready = True        return self._readyclass Snow(object):    """
    微型Web框架類    """
    def __init__(self, routes):
        self.routes = routes
        self.inputs = set()
        self.request = None
        self.async_request_handler = {}    def run(self, host='localhost', port=9999):        """
        事件循環
        :param host:
        :param port:
        :return:        """
        sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
        sock.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
        sock.bind((host, port,))
        sock.setblocking(False)
        sock.listen(128)
        sock.setblocking(0)
        self.inputs.add(sock)        try:            while True:
                readable_list, writeable_list, error_list = select.select(self.inputs, [], self.inputs,0.005)                for conn in readable_list:                    if sock == conn:
                        client, address = conn.accept()
                        client.setblocking(False)
                        self.inputs.add(client)                    else:
                        gen = self.process(conn)                        if isinstance(gen, HttpResponse):
                            conn.sendall(gen.response())
                            self.inputs.remove(conn)
                            conn.close()                        else:
                            yielded = next(gen)
                            self.async_request_handler[conn] = yielded
                self.polling_callback()        except Exception as e:            pass
        finally:
            sock.close()    def polling_callback(self):        """
        遍歷觸發異步非阻塞的回調函數
        :return:        """
        for conn in list(self.async_request_handler.keys()):
            yielded = self.async_request_handler[conn]            if not yielded.ready:                continue
            if yielded.callback:
                ret = yielded.callback(self.request, yielded)
                conn.sendall(ret.response())
            self.inputs.remove(conn)            del self.async_request_handler[conn]
            conn.close()    def process(self, conn):        """
        處理路由系統以及執行函數
        :param conn:
        :return:        """
        self.request = HttpRequest(conn)
        func = None        for route in self.routes:            if re.match(route[0], self.request.url):
                func = route[1]                break
        if not func:            return HttpNotFound()        else:            return func(self.request)

200行自定義異步非阻塞Web框架

二、使用

1. 基本使用

1

2

3

4

5

6

7

8

9

10

11

12

13

14

from snow import Snow

from snow import HttpResponse

 

 

def index(request):

    return HttpResponse('OK')

 

 

routes = [

    (r'/index/', index),

]

 

app = Snow(routes)

app.run(port=8012)

2.異步非阻塞:超時

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

from snow import Snow

from snow import HttpResponse

from snow import TimeoutFuture

 

request_list = []

 

 

def async(request):

    obj = TimeoutFuture(5)

    yield obj

 

 

def home(request):

    return HttpResponse('home')

 

 

routes = [

    (r'/home/', home),

    (r'/async/', async),

]

 

app = Snow(routes)

app.run(port=8012)

3.異步非阻塞:等待

基于等待模式可以完成自定制操作

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

from snow import Snow

from snow import HttpResponse

from snow import Future

 

request_list = []

 

 

def callback(request, future):

    return HttpResponse(future.value)

 

 

def req(request):

    obj = Future(callback=callback)

    request_list.append(obj)

    yield obj

 

 

def stop(request):

    obj = request_list[0]

    del request_list[0]

    obj.set_result('done')

    return HttpResponse('stop')

 

 

routes = [

    (r'/req/', req),

    (r'/stop/', stop),

]

 

app = Snow(routes)

app.run(port=8012)

 更多精彩請關注老男孩教育官網:www.oldboyedu.com


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

田阳县| 内江市| 镶黄旗| 伊通| 霍州市| 兴国县| 合川市| 贵德县| 弥渡县| 峨眉山市| 汝阳县| 饶河县| 承德县| 金乡县| 莱芜市| 吐鲁番市| 正安县| 城市| 巴东县| 柏乡县| 荥经县| 甘南县| 高密市| 福海县| 永济市| 睢宁县| 丹阳市| 松阳县| 新丰县| 石泉县| 宕昌县| 比如县| 新龙县| 阳西县| 垦利县| 龙泉市| 伊金霍洛旗| 蒲城县| 瑞丽市| 开封市| 江都市|