BAPSicle/launch.py
2022-03-19 16:01:37 +00:00

93 lines
2.9 KiB
Python
Executable file

#!/usr/bin/env python3
import multiprocessing
import time
import sys
import os
from typing import Any
import webbrowser
from setproctitle import setproctitle
from helpers.the_terminator import Terminator
def startServer(notifications=False):
# Only spend the time importing the Server if we want to start the server. Speeds up web browser opens.
from server import BAPSicleServer
server = multiprocessing.Process(target=BAPSicleServer)
server.start()
sent_start_notif = False
terminator = Terminator()
try:
while not terminator.terminate:
time.sleep(1)
if server and server.is_alive():
if notifications and not sent_start_notif:
notif("Welcome to BAPSicle!")
sent_start_notif = True
pass
else:
printer("Server dead. Exiting.")
if notifications:
notif("BAPSicle Server Stopped!")
os._exit(0)
if server and server.is_alive():
printer("Terminating server.")
server.terminate()
printer("Waiting to terminate.")
server.join(timeout=20) # If we somehow get stuck stopping BAPSicle let it die.
printer("Terminated")
# Catch the handler being killed externally.
except Exception as e:
printer("Received Exception {} with args: {}".format(
type(e).__name__, e.args))
if server and server.is_alive():
server.terminate()
server.join(timeout=20)
def printer(msg: Any):
print("LAUNCHER:{}".format(msg))
def notif(msg: str):
print("NOTIFICATION:{}".format(msg))
if __name__ == "__main__":
# On Windows, calling this function is necessary.
# Causes all kinds of loops if not present.
# IT HAS TO BE RIGHT HERE, AT THE TOP OF __MAIN__
# NOT INSIDE AN IF STATEMENT. RIGHT. HERE.
# If it's not here, multiprocessing just doesn't run in the package.
# Freeze support refers to being packaged with Pyinstaller.
multiprocessing.freeze_support()
setproctitle("BAPSicle - Launcher")
if len(sys.argv) > 1:
# We got an argument! It's probably Platypus's UI.
try:
if (sys.argv[1]) == "Start Server":
notif("BAPSicle is starting, please wait...")
webbrowser.open("http://localhost:13500/")
startServer(notifications=True)
if sys.argv[1] == "Server":
webbrowser.open("http://localhost:13500/")
if sys.argv[1] == "Presenter":
webbrowser.open("http://localhost:13500/presenter/")
except Exception as e:
printer(
"ALERT:BAPSicle failed with exception of type {}:{}".format(
type(e).__name__, e
)
)
os._exit(1)
os._exit(0)
else:
startServer()
printer("Exiting.")
os._exit(0)