I just implemented the singleton protocol in python using the code below:
# An inheritance based Singleton protocol implementation
# All classes that wish to automatically implement the Singleton protocol
# inherit from Singleton
#
# For each Class(Singleton):
# Class() (Class._instance) gives access to this (Singleton) class's instance
# Class._singleton accesses to the Singleton class object
# Singleton._singletons accesses all the Singletons indexed by class name
class SingletonMeta(type):
# customize creation of Singleton class object
# and Singleton derived class objects
def __new__(cls, name, bases, dict):
if name == "Singleton":
clsobj = type.__new__(cls, name, bases, dict)
clsobj._meta = cls
clsobj._singletons = {}
cls._singleton = clsobj
else:
clsobj = type.__new__(cls, name, bases, dict)
d={}
try: # copy __init__ from subclass if defined
d["__init__"] = dict["__init__"]
except:
pass
orphan = type.__new__(clsobj, name, (), d)
instance = orphan()
clsobj._instance = instance
clsobj._singleton = cls._singleton
clsobj._meta = cls
clsobj._singletons[name] = orphan
return clsobj
# return Singleton instance on call to subclass
def __call__(self):
return self._instance
class Singleton(type):
__metaclass__ = SingletonMeta
# Application code follows
class s1(Singleton):
def __init__(self):
print("hello from s1!")
class s2(Singleton):
# def __init__(self):
# print("hello from s2!")
pass
class s3(Singleton):
def __init__(self):
print("hello from s3!")
I'd like to know if this is just completely insane, and, if so, what I may do to rectify the insanity. kthxbi!
Singletonthat takes care of creating only one instance of a backing class_Singleton. (Since you can't distinguish constructor calls from any other function call in Python.) The class name reported by the object instances will be different, but this is a common enough pattern in Python that I don't think it'd throw users. – millimoose Aug 21 '12 at 20:12