2018-01-07 14:09:40 +01:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
"""!
|
|
|
|
|
____ ____ ______ __ __ __ _____
|
|
|
|
|
/ __ )/ __ \/ ___/ | / /___ _/ /______/ /_ |__ /
|
|
|
|
|
/ __ / / / /\__ \| | /| / / __ `/ __/ ___/ __ \ /_ <
|
|
|
|
|
/ /_/ / /_/ /___/ /| |/ |/ / /_/ / /_/ /__/ / / / ___/ /
|
|
|
|
|
/_____/\____//____/ |__/|__/\__,_/\__/\___/_/ /_/ /____/
|
|
|
|
|
German BOS Information Script
|
|
|
|
|
by Bastian Schroll
|
|
|
|
|
|
|
|
|
|
@file: decoder.py
|
|
|
|
|
@date: 06.01.2018
|
|
|
|
|
@author: Bastian Schroll
|
|
|
|
|
@description: Some utils for the decoding
|
|
|
|
|
"""
|
|
|
|
|
import logging
|
|
|
|
|
|
2018-09-09 16:17:49 +02:00
|
|
|
from boswatch.decoder.fmsdecoder import FmsDecoder
|
|
|
|
|
from boswatch.decoder.pocsagdecoder import PocsagDecoder
|
|
|
|
|
from boswatch.decoder.zveidecoder import ZveiDecoder
|
2018-01-07 14:09:40 +01:00
|
|
|
|
|
|
|
|
logging.debug("- %s loaded", __name__)
|
|
|
|
|
|
|
|
|
|
|
2018-09-09 16:17:49 +02:00
|
|
|
def decode(data):
|
|
|
|
|
"""!Choose the right decoder and return a bwPacket instance
|
2018-01-07 14:09:40 +01:00
|
|
|
|
|
|
|
|
@param data: data to decode
|
2018-09-09 16:17:49 +02:00
|
|
|
@return bwPacket instance"""
|
2018-01-07 14:09:40 +01:00
|
|
|
logging.debug("search decoder")
|
|
|
|
|
if "FMS" in data:
|
2018-09-09 16:17:49 +02:00
|
|
|
return FmsDecoder.decode(data)
|
2018-01-07 14:09:40 +01:00
|
|
|
elif "POCSAG" in data:
|
2018-09-09 16:17:49 +02:00
|
|
|
return PocsagDecoder.decode(data)
|
2018-01-07 14:09:40 +01:00
|
|
|
elif "ZVEI" in data:
|
2018-09-09 16:17:49 +02:00
|
|
|
return ZveiDecoder.decode(data)
|
2018-01-07 14:09:40 +01:00
|
|
|
else:
|
2018-09-09 16:17:49 +02:00
|
|
|
logging.error("no decoder found for: %s", data)
|
|
|
|
|
return False
|