2015-05-20 10:38:21 +02:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
# -*- coding: cp1252 -*-
|
|
|
|
|
|
|
|
|
|
import logging # Global logger
|
|
|
|
|
import globals # Global variables
|
|
|
|
|
|
|
|
|
|
def run(typ,freq,data):
|
|
|
|
|
try:
|
|
|
|
|
#ConfigParser
|
|
|
|
|
logging.debug("reading config file")
|
|
|
|
|
try:
|
2015-05-20 14:26:17 +02:00
|
|
|
for key,val in globals.config.items("BOSWatch"):
|
2015-05-20 10:38:21 +02:00
|
|
|
logging.debug(" - %s = %s", key, val)
|
|
|
|
|
except:
|
|
|
|
|
logging.exception("cannot read config file")
|
|
|
|
|
|
|
|
|
|
if typ == "FMS":
|
|
|
|
|
#logging.debug("FMS: %s Status: %s Dir: %s", data["fms"], data["status"], data["direction"])
|
|
|
|
|
logging.debug("FMS")
|
|
|
|
|
elif typ == "ZVEI":
|
|
|
|
|
#logging.debug("ZVEI: %s", data["zvei"])
|
|
|
|
|
logging.debug("ZVEI")
|
|
|
|
|
elif typ == "POC":
|
|
|
|
|
#logging.debug("POC: %s/%s - %s", data["ric"], data["function"], data["msg"])
|
|
|
|
|
logging.debug("POC")
|
|
|
|
|
else:
|
|
|
|
|
logging.warning(typ + " not supportet")
|
|
|
|
|
|
|
|
|
|
except:
|
|
|
|
|
logging.exception("unknown error")
|