mirror of
https://github.com/HorlogeSkynet/archey4
synced 2025-04-16 16:00:13 +02:00

+ Publishes some test cases for `Singleton` meta-class and `Processes` class * Explicits that `Singleton` is an abstract meta-class * Fixes and improves `Configuration` test cases
20 lines
688 B
Python
20 lines
688 B
Python
"""Simple singleton meta-class definition"""
|
|
|
|
|
|
from abc import ABCMeta as AbstractBaseMetaClass
|
|
|
|
|
|
class Singleton(AbstractBaseMetaClass):
|
|
"""
|
|
Taken from : <https://stackoverflow.com/q/6760685/10599709>
|
|
This meta-class allows us to declare `Configuration` as a singleton.
|
|
This way, we are able to import `Configuration` in multiple modules, ...
|
|
... whereas it is effectively loaded only once.
|
|
You cannot instantiate this meta-class directly.
|
|
"""
|
|
_instances = {}
|
|
def __call__(cls, *args, **kwargs):
|
|
if cls not in cls._instances:
|
|
cls._instances[cls] = super(Singleton, cls).__call__(*args, **kwargs)
|
|
return cls._instances[cls]
|