2021-06-01 18:31:50 -04:00
|
|
|
"""
|
|
|
|
SensorsFactory retrieve sensors information
|
|
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
|
|
|
Copyright © 2021 Project Author Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
|
2021-06-02 11:56:38 -04:00
|
|
|
Contributors Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
|
2021-06-01 18:31:50 -04:00
|
|
|
"""
|
|
|
|
from pathlib import Path
|
|
|
|
from imports.sensors.concordia_energy_consumption import ConcordiaEnergyConsumption
|
2021-06-02 11:56:38 -04:00
|
|
|
from imports.sensors.concordia_gas_flow import ConcordiaGasFlow
|
|
|
|
from imports.sensors.concordia_temperature import ConcordiaTemperature
|
2021-06-01 18:31:50 -04:00
|
|
|
|
|
|
|
|
|
|
|
class SensorsFactory:
|
|
|
|
"""
|
|
|
|
UsageFactory class
|
|
|
|
"""
|
|
|
|
def __init__(self, handler, city, end_point, base_path=Path(Path(__file__).parent.parent / 'data/sensors')):
|
|
|
|
self._handler = '_' + handler.lower().replace(' ', '_')
|
|
|
|
self._city = city
|
|
|
|
self._end_point = end_point
|
|
|
|
self._base_path = base_path
|
|
|
|
|
|
|
|
def _cec(self):
|
|
|
|
ConcordiaEnergyConsumption(self._city, self._end_point, self._base_path)
|
|
|
|
|
2021-06-02 11:16:00 -04:00
|
|
|
def _cgf(self):
|
|
|
|
ConcordiaGasFlow(self._city, self._end_point, self._base_path)
|
|
|
|
|
2021-06-02 11:56:38 -04:00
|
|
|
def _ct(self):
|
|
|
|
ConcordiaTemperature(self._city, self._end_point, self._base_path)
|
|
|
|
|
2021-06-01 18:31:50 -04:00
|
|
|
def enrich(self):
|
|
|
|
"""
|
2021-06-03 15:56:59 -04:00
|
|
|
Enrich the city with the usage information
|
2021-06-01 18:31:50 -04:00
|
|
|
:return: None
|
|
|
|
"""
|
2021-06-02 10:55:04 -04:00
|
|
|
getattr(self, self._handler, lambda: None)()
|