mirror of
https://github.com/BOSWatch/BW3-Core.git
synced 2025-12-06 07:12:04 +01:00
130 lines
4.3 KiB
Python
130 lines
4.3 KiB
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
____ ____ ______ __ __ __ _____
|
|
/ __ )/ __ \/ ___/ | / /___ _/ /______/ /_ |__ /
|
|
/ __ / / / /\__ \| | /| / / __ `/ __/ ___/ __ \ /_ <
|
|
/ /_/ / /_/ /___/ /| |/ |/ / /_/ / /_/ /__/ / / / ___/ /
|
|
/_____/\____//____/ |__/|__/\__,_/\__/\___/_/ /_/ /____/
|
|
German BOS Information Script
|
|
by Bastian Schroll
|
|
|
|
@file: bw_server.py
|
|
@date: 09.12.2017
|
|
@author: Bastian Schroll
|
|
@description: BOSWatch server application
|
|
"""
|
|
from boswatch.utils import paths
|
|
|
|
if not paths.makeDirIfNotExist(paths.LOG_PATH):
|
|
print("cannot find/create log directory: %s", paths.LOG_PATH)
|
|
exit(1)
|
|
|
|
try:
|
|
import logging
|
|
import logging.config
|
|
print(paths.CONFIG_PATH + "logger_server.ini")
|
|
logging.config.fileConfig(paths.CONFIG_PATH + "logger_server.ini")
|
|
logging.debug("")
|
|
logging.debug("######################## NEW LOG ############################")
|
|
logging.debug("BOSWatch server has started ...")
|
|
except Exception as e: # pragma: no cover
|
|
print("cannot load logger")
|
|
print(e)
|
|
exit(1)
|
|
|
|
|
|
try:
|
|
logging.debug("Import python modules")
|
|
import argparse
|
|
logging.debug("- argparse")
|
|
# following is temp for testing
|
|
import time
|
|
import sys
|
|
import threading
|
|
import queue
|
|
|
|
logging.debug("Import BOSWatch modules")
|
|
from boswatch import configYaml
|
|
from boswatch.network.server import TCPServer
|
|
from boswatch.packet.packet import Packet
|
|
from boswatch.plugin.pluginManager import PluginManager
|
|
from boswatch.descriptor.descriptor import Descriptor
|
|
from boswatch.filter.doubeFilter import DoubleFilter
|
|
from boswatch.utils import header
|
|
from boswatch.network.broadcast import BroadcastClient
|
|
from boswatch.network.broadcast import BroadcastServer
|
|
except: # pragma: no cover
|
|
logging.exception("cannot import modules")
|
|
exit(1)
|
|
|
|
try:
|
|
header.logoToLog()
|
|
header.infoToLog()
|
|
header.logoToScreen()
|
|
|
|
logging.debug("parse args")
|
|
# With -h or --help you get the Args help
|
|
parser = argparse.ArgumentParser(prog="bw_server.py",
|
|
description="""BOSWatch is a Python Script to receive and
|
|
decode german BOS information with rtl_fm and multimon-NG""",
|
|
epilog="""More options you can find in the extern client.ini
|
|
file in the folder /config""")
|
|
parser.add_argument("-c", "--config", help="Name to configuration File", required=True)
|
|
args = parser.parse_args()
|
|
|
|
bwConfig = configYaml.loadConfigFile(paths.CONFIG_PATH + args.config, "serverConfig")
|
|
if bwConfig is None:
|
|
logging.error("cannot load config file")
|
|
|
|
except: # pragma: no cover
|
|
logging.exception("error occurred")
|
|
exit(1)
|
|
|
|
|
|
# ############################# begin server system
|
|
try:
|
|
|
|
if bwConfig["server"]["useBroadcast"]:
|
|
bcServer = BroadcastServer()
|
|
bcServer.start()
|
|
|
|
incomingQueue = queue.Queue()
|
|
bwServer = TCPServer(incomingQueue)
|
|
if bwServer.start():
|
|
|
|
while 1:
|
|
if incomingQueue.empty(): # pause only when no data
|
|
time.sleep(0.1) # reduce cpu load (wait 100ms)
|
|
|
|
else:
|
|
data = incomingQueue.get()
|
|
|
|
logging.info("get data from %s (waited in queue %0.3f sec.)", data[0], time.time() - data[2])
|
|
logging.debug("%s packet(s) still waiting in queue", incomingQueue.qsize())
|
|
bwPacket = Packet((data[1]))
|
|
|
|
bwPacket.set("clientIP", data[0])
|
|
bwPacket.addServerData()
|
|
|
|
# todo implement routing
|
|
|
|
incomingQueue.task_done()
|
|
|
|
except KeyboardInterrupt: # pragma: no cover
|
|
logging.warning("Keyboard interrupt")
|
|
except SystemExit: # pragma: no cover
|
|
logging.error("BOSWatch interrupted by an error")
|
|
except: # pragma: no cover
|
|
logging.exception("BOSWatch interrupted by an error")
|
|
finally: # pragma: no cover
|
|
# try-except-blocks are necessary because there is a change that the vars
|
|
# bwServer or bwPluginManager are not defined in case of an early error
|
|
try:
|
|
bwServer.stop()
|
|
if "bcServer" in locals():
|
|
bcServer.stop()
|
|
except: # pragma: no cover
|
|
pass
|
|
logging.debug("BOSWatch has ended ...")
|