-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
77 lines (63 loc) · 2.21 KB
/
main.py
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import asyncio
from contextlib import AsyncExitStack, suppress
import signal
from typing import List, Optional
from nodes import Node
from transport import UdpTransport
import getopt
import sys
from worker import Worker
from config import Config
import logging
from globalClass import Global
async def run(config: Config) -> None:
"""Function to initialize whole application and starts events loop"""
loop = asyncio.get_running_loop()
async with AsyncExitStack() as stack:
stack.enter_context(suppress(asyncio.CancelledError))
tranport = UdpTransport(config.node.host, config.node.port)
worker: Worker = await stack.enter_async_context(tranport.enter())
globalObj = Global()
worker.initialize(config, globalObj)
task = asyncio.create_task(worker.run())
loop.add_signal_handler(signal.SIGINT, task.cancel)
loop.add_signal_handler(signal.SIGTERM, task.cancel)
await task
def parse_cmdline_args(arguments: List[str]) -> Config:
"""Parse cmdline options"""
hostname: str = '127.0.0.1'
port: int = 8001
conf: Optional[Config] = None
introducer: str = None
testing: bool = False
try:
opts, args = getopt.getopt(arguments, "h:p:t", [
"hostname=", "port=", "help="])
for opt, arg in opts:
if opt == '--help':
print(
'failure_detector.py -h <hostname> -p <port> -t')
sys.exit()
elif opt in ("-h", "--hostname"):
hostname = arg
elif opt in ("-p", "--port"):
port = int(arg)
elif opt in ("-t"):
testing = True
conf = Config(hostname, port, testing)
except getopt.GetoptError:
logging.error(
'failure_detector.py -h <hostname> -p <port> -i <introducer_ip:port> -t')
sys.exit(2)
return conf
if __name__ == '__main__':
logging.basicConfig(
level=logging.INFO,
format="%(asctime)s: [%(levelname)s] %(message)s",
handlers=[
logging.FileHandler("debug.log"),
logging.StreamHandler(sys.stdout)
]
)
conf = parse_cmdline_args(sys.argv[1:])
asyncio.run(run(conf))