2020-11-22 14:15:39 +01:00
|
|
|
from collections import Callable
|
2020-11-25 21:41:45 +01:00
|
|
|
from inspect import signature, Parameter
|
2020-12-11 21:48:46 +01:00
|
|
|
from typing import Type, Optional
|
2020-11-22 14:15:39 +01:00
|
|
|
|
2020-11-26 10:45:02 +01:00
|
|
|
from sh_edraft.configuration.base.configuration_model_base import ConfigurationModelBase
|
2020-12-11 21:48:46 +01:00
|
|
|
from sh_edraft.database.context.base.database_context_base import DatabaseContextBase
|
2020-12-20 14:49:28 +01:00
|
|
|
from sh_edraft.environment.base import EnvironmentBase
|
2020-11-26 18:58:08 +01:00
|
|
|
from sh_edraft.hosting.base.application_runtime_base import ApplicationRuntimeBase
|
2020-11-29 21:36:16 +01:00
|
|
|
from sh_edraft.service.providing.base.service_provider_base import ServiceProviderBase
|
2020-11-22 14:15:39 +01:00
|
|
|
from sh_edraft.service.base.service_base import ServiceBase
|
|
|
|
|
|
|
|
|
2020-11-22 20:17:57 +01:00
|
|
|
class ServiceProvider(ServiceProviderBase):
|
2020-11-22 14:15:39 +01:00
|
|
|
|
2020-11-26 18:58:08 +01:00
|
|
|
def __init__(self, app_runtime: ApplicationRuntimeBase):
|
|
|
|
ServiceProviderBase.__init__(self)
|
|
|
|
self._app_runtime: ApplicationRuntimeBase = app_runtime
|
2020-12-11 21:48:46 +01:00
|
|
|
self._database_context: Optional[DatabaseContextBase] = None
|
2020-11-22 14:15:39 +01:00
|
|
|
|
2020-11-26 11:55:55 +01:00
|
|
|
self._transient_services: dict[Type[ServiceBase], Type[ServiceBase]] = {}
|
|
|
|
self._scoped_services: dict[Type[ServiceBase], Type[ServiceBase]] = {}
|
|
|
|
self._singleton_services: dict[Type[ServiceBase], ServiceBase] = {}
|
|
|
|
|
2020-11-22 20:17:57 +01:00
|
|
|
def create(self): pass
|
2020-11-22 14:15:39 +01:00
|
|
|
|
2020-11-25 21:41:45 +01:00
|
|
|
def _create_instance(self, service: Callable[ServiceBase]) -> ServiceBase:
|
|
|
|
sig = signature(service.__init__)
|
|
|
|
params = []
|
|
|
|
for param in sig.parameters.items():
|
|
|
|
parameter = param[1]
|
|
|
|
if parameter.name != 'self' and parameter.annotation != Parameter.empty:
|
2020-11-26 18:58:08 +01:00
|
|
|
if issubclass(parameter.annotation, ApplicationRuntimeBase):
|
|
|
|
params.append(self._app_runtime)
|
2020-11-26 11:20:21 +01:00
|
|
|
|
2020-12-20 14:49:28 +01:00
|
|
|
elif issubclass(parameter.annotation, EnvironmentBase):
|
|
|
|
params.append(self._app_runtime.configuration.environment)
|
|
|
|
|
2020-12-11 21:48:46 +01:00
|
|
|
elif issubclass(parameter.annotation, DatabaseContextBase):
|
|
|
|
params.append(self._database_context)
|
|
|
|
|
2020-11-26 11:20:21 +01:00
|
|
|
elif issubclass(parameter.annotation, ServiceBase):
|
2020-11-25 21:41:45 +01:00
|
|
|
params.append(self.get_service(parameter.annotation))
|
|
|
|
|
2020-11-26 11:20:21 +01:00
|
|
|
elif issubclass(parameter.annotation, ConfigurationModelBase):
|
2020-11-28 15:13:54 +01:00
|
|
|
params.append(self._app_runtime.configuration.get_configuration(parameter.annotation))
|
2020-11-22 14:15:39 +01:00
|
|
|
|
2020-11-25 21:41:45 +01:00
|
|
|
return service(*params)
|
2020-11-22 14:15:39 +01:00
|
|
|
|
2020-12-11 21:48:46 +01:00
|
|
|
def add_db_context(self, db_context: Type[DatabaseContextBase]):
|
|
|
|
self._database_context = self._create_instance(db_context)
|
|
|
|
|
|
|
|
def get_db_context(self) -> Callable[DatabaseContextBase]:
|
|
|
|
return self._database_context
|
|
|
|
|
2020-11-25 21:41:45 +01:00
|
|
|
def add_transient(self, service_type: Type[ServiceBase], service: Type[ServiceBase]):
|
|
|
|
self._transient_services[service_type] = service
|
2020-11-22 14:15:39 +01:00
|
|
|
|
2020-11-25 21:41:45 +01:00
|
|
|
def add_scoped(self, service_type: Type[ServiceBase], service: Type[ServiceBase]):
|
|
|
|
self._scoped_services[service_type] = service
|
|
|
|
|
2020-11-26 19:17:05 +01:00
|
|
|
def add_singleton(self, service_type: Type[ServiceBase], service: Callable[ServiceBase]):
|
2020-11-22 14:15:39 +01:00
|
|
|
for known_service in self._singleton_services:
|
2020-11-29 21:36:16 +01:00
|
|
|
if type(known_service) == service_type:
|
|
|
|
raise Exception(f'Service with type {service_type} already exists')
|
2020-11-22 14:15:39 +01:00
|
|
|
|
2020-11-25 21:41:45 +01:00
|
|
|
self._singleton_services[service_type] = self._create_instance(service)
|
2020-11-22 14:15:39 +01:00
|
|
|
|
2020-11-22 20:17:57 +01:00
|
|
|
def get_service(self, instance_type: Type[ServiceBase]) -> Callable[ServiceBase]:
|
2020-11-25 21:41:45 +01:00
|
|
|
for service in self._transient_services:
|
|
|
|
if service == instance_type and isinstance(self._transient_services[service], type(instance_type)):
|
|
|
|
return self._create_instance(self._transient_services[service])
|
2020-11-22 14:15:39 +01:00
|
|
|
|
2020-11-25 21:41:45 +01:00
|
|
|
for service in self._scoped_services:
|
|
|
|
if service == instance_type and isinstance(self._scoped_services[service], type(instance_type)):
|
|
|
|
return self._create_instance(self._scoped_services[service])
|
2020-11-22 14:15:39 +01:00
|
|
|
|
|
|
|
for service in self._singleton_services:
|
2020-11-25 21:41:45 +01:00
|
|
|
if service == instance_type and isinstance(self._singleton_services[service], instance_type):
|
|
|
|
return self._singleton_services[service]
|
2020-11-22 14:15:39 +01:00
|
|
|
|
2020-11-25 21:41:45 +01:00
|
|
|
def remove_service(self, instance_type: Type[ServiceBase]):
|
|
|
|
for service in self._transient_services:
|
2020-12-25 14:53:50 +01:00
|
|
|
if service == instance_type and isinstance(self._transient_services[service], type(instance_type)):
|
2020-11-25 21:41:45 +01:00
|
|
|
del self._transient_services[service]
|
2020-11-22 14:15:39 +01:00
|
|
|
return
|
|
|
|
|
2020-11-25 21:41:45 +01:00
|
|
|
for service in self._scoped_services:
|
2020-12-25 14:53:50 +01:00
|
|
|
if service == instance_type and isinstance(self._scoped_services[service], type(instance_type)):
|
2020-11-25 21:41:45 +01:00
|
|
|
del self._scoped_services[service]
|
2020-11-22 14:15:39 +01:00
|
|
|
return
|
|
|
|
|
|
|
|
for service in self._singleton_services:
|
2020-12-25 14:53:50 +01:00
|
|
|
if service == instance_type and isinstance(self._singleton_services[service], instance_type):
|
2020-11-25 21:41:45 +01:00
|
|
|
del self._singleton_services[service]
|
2020-11-22 14:15:39 +01:00
|
|
|
return
|