2022-11-15 20:48:42 -05:00
|
|
|
"""
|
|
|
|
DBFactory performs database create, delete and update operations
|
|
|
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
|
|
|
Copyright © 2022 Concordia CERC group
|
|
|
|
Project CoderPeter Yefi peteryefi@gmail.com
|
|
|
|
"""
|
|
|
|
from persistence import CityRepo
|
2022-11-22 20:20:12 -05:00
|
|
|
from persistence import HeatPumpSimulationRepo
|
|
|
|
from typing import Dict
|
2022-11-15 20:48:42 -05:00
|
|
|
|
|
|
|
|
|
|
|
class DBFactory:
|
|
|
|
"""
|
|
|
|
DBFactory class
|
|
|
|
"""
|
|
|
|
|
2022-12-07 19:06:17 -05:00
|
|
|
def __init__(self, city, db_name, dotenv_path, app_env):
|
2022-11-15 20:48:42 -05:00
|
|
|
self._city = city
|
2022-12-07 19:06:17 -05:00
|
|
|
self._city_repo = CityRepo(db_name=db_name, dotenv_path=dotenv_path, app_env=app_env)
|
|
|
|
self._hp_simulation_repo = HeatPumpSimulationRepo(db_name=db_name, dotenv_path=dotenv_path, app_env=app_env)
|
2022-11-15 20:48:42 -05:00
|
|
|
|
2023-01-11 16:02:33 -05:00
|
|
|
def persist_city(self, user_id: int):
|
2022-11-15 20:48:42 -05:00
|
|
|
"""
|
|
|
|
Persist city into postgres database
|
|
|
|
"""
|
2023-01-11 16:02:33 -05:00
|
|
|
return self._city_repo.insert(self._city, user_id)
|
2022-11-15 20:48:42 -05:00
|
|
|
|
|
|
|
def update_city(self, city_id, city):
|
|
|
|
"""
|
|
|
|
Update an existing city in postgres database
|
|
|
|
:param city_id: the id of the city to update
|
|
|
|
:param city: the updated city object
|
|
|
|
"""
|
|
|
|
return self._city_repo.update(city_id, city)
|
|
|
|
|
|
|
|
def delete_city(self, city_id):
|
|
|
|
"""
|
|
|
|
Deletes a single city from postgres
|
|
|
|
:param city_id: the id of the city to get
|
|
|
|
"""
|
|
|
|
self._city_repo.delete_city(city_id)
|
|
|
|
|
2022-11-22 20:20:12 -05:00
|
|
|
def persist_hp_simulation(self, hp_simulation_data: Dict, city_id: int):
|
|
|
|
"""
|
|
|
|
Persist heat pump simulation results
|
|
|
|
:param hp_simulation_data: the simulation results
|
|
|
|
:param city_id: the city object used in running the simulation
|
|
|
|
:return: HeatPumpSimulation object
|
|
|
|
"""
|
|
|
|
return self._hp_simulation_repo.insert(hp_simulation_data, city_id)
|
|
|
|
|
|
|
|
def delete_hp_simulation(self, hp_sim_id):
|
|
|
|
"""
|
|
|
|
Deletes a single heat pump simulation from postgres
|
|
|
|
:param hp_sim_id: the id of the heat pump simulation to get
|
|
|
|
"""
|
|
|
|
self._hp_simulation_repo.delete_hp_simulation(hp_sim_id)
|
|
|
|
|