adjust project content

This commit is contained in:
csunny
2023-05-08 00:34:36 +08:00
parent 0c3f0ed84c
commit d746086694
11 changed files with 87 additions and 15 deletions

21
pilot/singleton.py Normal file
View File

@@ -0,0 +1,21 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""The singleton metaclass for ensuring only one instance of a class."""
import abc
from typing import Any
class Singleton(abc.ABCMeta, type):
""" Singleton metaclass for ensuring only one instance of a class"""
_instances = {}
def __call__(cls, *args: Any, **kwargs: Any) -> Any:
"""Call method for the singleton metaclass"""
if cls not in cls._instances:
cls._instances[cls] = super(Singleton, cls).__call__(*args, **kwargs)
return cls._instances[cls]
class AbstractSingleton(abc.ABC, metaclass=Singleton):
"""Abstract singleton class for ensuring only one instance of a class"""
pass