contentmonster/worker.py
Kumi 48bc92653d Fixing Dog Handler usage
Lots of documentation
2021-11-25 10:40:25 +01:00

35 lines
931 B
Python

#!/usr/bin/env python3
from classes.config import MonsterConfig
from classes.vesselthread import VesselThread
from classes.shorethread import ShoreThread
from multiprocessing import Manager
import pathlib
import time
if __name__ == '__main__':
config_path = pathlib.Path(__file__).parent.absolute() / "settings.ini"
config = MonsterConfig.fromFile(config_path)
with Manager() as manager:
state = manager.dict()
state["files"] = manager.list()
threads = []
for vessel in config.vessels:
thread = VesselThread(vessel, state)
thread.start()
threads.append(thread)
try:
shore = ShoreThread(state, config.directories)
shore.run()
except KeyboardInterrupt:
print("Keyboard interrupt received - stopping threads")
for thread in threads:
thread.kill()
exit()