Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 import thread
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 class Singleton(object):
00032 __lockObj = thread.allocate_lock()
00033 __instance = None
00034
00035 def __new__(self, *args, **kargs):
00036 return self.instance(*args, **kargs)
00037
00038
00039 def __init__(self, *args, **kargs):
00040 self.instance(*args, **kargs)
00041
00042
00043 def instance(self, *args, **kargs):
00044 self.__lockObj.acquire()
00045 try:
00046 if self.__instance is None:
00047 self.__instance = object.__new__(self, *args, **kargs)
00048
00049 finally:
00050 self.__lockObj.release()
00051
00052 return self.__instance
00053
00054 instance = classmethod(instance)
00055