2020-07-04 22:51:10 +08:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
from typing import Optional
|
|
|
|
from ipaddress import IPv4Address
|
|
|
|
|
|
|
|
|
|
|
|
class BaseDriver(object):
|
|
|
|
|
2020-07-05 20:39:34 +08:00
|
|
|
def __init__(self):
|
|
|
|
raise NotImplementedError
|
|
|
|
|
2020-07-04 22:51:10 +08:00
|
|
|
@property
|
|
|
|
def server_app(self):
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
@property
|
|
|
|
def asgi(self):
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
@property
|
|
|
|
def logger(self):
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
def run(self,
|
|
|
|
host: Optional[IPv4Address] = None,
|
|
|
|
port: Optional[int] = None,
|
|
|
|
*args,
|
|
|
|
**kwargs):
|
|
|
|
raise NotImplementedError
|
2020-07-05 20:39:34 +08:00
|
|
|
|
|
|
|
async def _handle_http(self):
|
|
|
|
raise NotImplementedError
|
|
|
|
|
|
|
|
async def _handle_ws_reverse(self):
|
|
|
|
raise NotImplementedError
|