BW3-Core/boswatch/descriptor/descriptor.py

111 lines
3.7 KiB
Python
Raw Normal View History

2018-01-07 22:19:56 +01:00
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""!
____ ____ ______ __ __ __ _____
/ __ )/ __ \/ ___/ | / /___ _/ /______/ /_ |__ /
/ __ / / / /\__ \| | /| / / __ `/ __/ ___/ __ \ /_ <
/ /_/ / /_/ /___/ /| |/ |/ / /_/ / /_/ /__/ / / / ___/ /
/_____/\____//____/ |__/|__/\__,_/\__/\___/_/ /_/ /____/
German BOS Information Script
by Bastian Schroll
@file: descriptor.py
@date: 07.01.2018
@author: Bastian Schroll
@description:
"""
import logging
import csv
import re
from boswatch.utils import paths
logging.debug("- %s loaded", __name__)
class Descriptor:
"""!CSV Descriptor class to load specific
descriptions from CSV files, manage and serve them"""
def __init__(self):
"""!Initialise a private list for the DescriptionList objects"""
self._lists = {}
def loadDescription(self, csvType):
"""!Build a new description list
@param csvType: Name of the CSV file without `.csv`"""
self._lists[csvType] = DescriptionList(csvType)
def addDescriptions(self, bwPacket):
"""!Add the short and long description to a bwPacket
@param bwPacket: bwPacket instance to add descriptions"""
logging.debug("add descriptions to bwPacket")
bwPacket.setField("shortDescription",
self._lists[bwPacket.getField("mode")].getShortDescription(bwPacket.getField(bwPacket.getField("mode"))))
bwPacket.setField("longDescription",
self._lists[bwPacket.getField("mode")].getLongDescription(bwPacket.getField(bwPacket.getField("mode"))))
class DescriptionList:
def __init__(self, csvType):
"""!Loads the given CSV file into internal list
@param csvType: Name of the CSV file without `.csv`"""
logging.debug("create new descriptionList")
self._descriptionList = {}
self._loadCSV(csvType)
def getShortDescription(self, id):
"""!Returns the short description of given id
@return short description or empty string"""
try:
return self._descriptionList[str(id)]["shortDescription"]
except:
return ""
def getLongDescription(self, id):
"""!Returns the long description of given id
@return long description or empty string"""
try:
return self._descriptionList[str(id)]["longDescription"]
except:
return ""
def _getFullList(self):
"""!Returns the full intern _descriptionList
@return descriptionList as dict"""
return self._descriptionList
def _loadCSV(self, csvType):
"""!Load descriptions from an csv file
@param csvType: Name of the CSV file without `.csv`
@return True or False"""
count = 0
logging.debug("loading csv file: %s", csvType)
csvPath = paths.CSV_PATH + csvType + ".csv"
try:
csvFile = open(csvPath, 'r', -1, 'utf-8')
reader = csv.DictReader(csvFile)
for line in reader:
if re.match("^[0-9]+[A-D]?$", line["id"], re.IGNORECASE):
self._descriptionList[line["id"]] = {"shortDescription": line["shortDescription"], "longDescription": line["longDescription"]}
logging.debug("- %s", line)
count += 1
logging.debug("%s entry's loaded", count)
return True
except FileNotFoundError:
logging.error("csv file not found: %s", csvPath)
return False
except: # pragma: no cover
logging.exception("error while loading descriptions")
return False