AzurLaneAutoScript/gui.py

56 lines
1.5 KiB
Python
Raw Normal View History

import threading
2022-06-03 23:00:54 +08:00
from multiprocessing import Event, Process
2022-01-07 22:06:28 +08:00
from module.webui.setting import State
2022-01-07 22:06:28 +08:00
def func(ev: threading.Event):
import argparse
2022-06-03 23:00:54 +08:00
import asyncio
import sys
import uvicorn
2022-06-03 23:00:54 +08:00
if sys.platform.startswith("win"):
asyncio.set_event_loop_policy(asyncio.WindowsProactorEventLoopPolicy())
State.researt_event = ev
parser = argparse.ArgumentParser(description="Alas web service")
parser.add_argument(
"--host",
type=str,
help="Host to listen. Default to WebuiHost in deploy setting",
)
parser.add_argument(
"-p",
"--port",
type=int,
help="Port to listen. Default to WebuiPort in deploy setting",
)
2022-01-08 21:45:05 +08:00
args, _ = parser.parse_known_args()
2022-01-07 22:06:28 +08:00
2022-06-03 21:28:44 +08:00
host = args.host or State.deploy_config.WebuiHost or "0.0.0.0"
port = args.port or int(State.deploy_config.WebuiPort) or 22267
2022-01-07 22:06:28 +08:00
uvicorn.run("module.webui.app:app", host=host, port=port, factory=True)
2022-01-07 22:06:28 +08:00
if __name__ == "__main__":
if State.deploy_config.EnableReload:
should_exit = False
while not should_exit:
event = Event()
process = Process(target=func, args=(event,))
process.start()
while not should_exit:
if event.wait(5):
process.kill()
break
elif process.is_alive():
continue
else:
should_exit = True
else:
func(None)