hub/imports/usage_factory.py

37 lines
1.1 KiB
Python
Raw Normal View History

2020-06-09 14:07:47 -04:00
"""
UsageFactory retrieve the specific usage module for the given region
2020-06-09 14:07:47 -04:00
SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2020 Project Author Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
"""
2021-01-06 16:42:38 -05:00
from pathlib import Path
from imports.usage.hft_usage_parameters import HftUsageParameters
from imports.usage.ca_usage_parameters import CaUsageParameters
# todo: handle missing lambda and rise error.
class UsageFactory:
"""
UsageFactory class
"""
def __init__(self, handler, city, base_path=Path(Path(__file__).parent.parent / 'data/usage')):
self._handler = '_' + handler.lower().replace(' ', '_')
self._city = city
2021-01-06 16:42:38 -05:00
self._base_path = base_path
def _hft(self):
HftUsageParameters(self._city, self._base_path).enrich_buildings()
def _ca(self):
CaUsageParameters(self._city, self._base_path).enrich_buildings()
def _other_usage_library_format(self):
raise Exception('Not implemented')
def enrich(self):
"""
Enrich the city with the usage information
:return: None
"""
getattr(self, self._handler, lambda: None)()