system_assignation/imports/usage_factory.py

51 lines
1.6 KiB
Python
Raw Normal View History

2020-06-09 14:07:47 -04:00
"""
UsageFactory retrieve the specific usage module for the given region
This factory can only be called after calling the construction factory so the thermal zones are created.
2020-06-09 14:07:47 -04:00
SPDX - License - Identifier: LGPL - 3.0 - or -later
Copyright © 2022 Concordia CERC group
Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
Code contributors: Pilar Monsalvete Alvarez de Uribarri pilar.monsalvete@concordia.ca
2020-06-09 14:07:47 -04:00
"""
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
from imports.usage.comnet_usage_parameters import ComnetUsageParameters
# todo: handle missing lambda and rise error.
class UsageFactory:
"""
UsageFactory class
"""
2021-09-22 07:25:53 -04:00
def __init__(self, handler, city, base_path=None):
if base_path is None:
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):
2021-09-22 07:25:53 -04:00
"""
Enrich the city with HFT usage library
"""
2021-08-26 13:27:43 -04:00
return HftUsageParameters(self._city, self._base_path).enrich_buildings()
def _ca(self):
2021-09-22 07:25:53 -04:00
"""
Enrich the city with Canada usage library
"""
2021-08-26 13:27:43 -04:00
return CaUsageParameters(self._city, self._base_path).enrich_buildings()
def _comnet(self):
"""
Enrich the city with COMNET usage library
"""
return ComnetUsageParameters(self._city, self._base_path).enrich_buildings()
def enrich(self):
"""
2021-09-22 07:25:53 -04:00
Enrich the city given to the class using the usage factory given handler
:return: None
"""
getattr(self, self._handler, lambda: None)()