forked from faif/python-patterns
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpool.py
More file actions
Latest commit
49 lines (35 loc) · 1.24 KB
/
Copy pathpool.py
File metadata and controls
49 lines (35 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
'''http://stackoverflow.com/questions/1514120/python-implementation-of-the-object-pool-design-pattern'''
classqObj():
_q=None
o=None
def__init__(self, dQ, autoGet=False):
self._q=dQ
ifautoGet==True:
self.o=self._q.get()
def__enter__(self):
ifself.o==None:
self.o=self._q.get()
returnself.o
def__exit__(self, type, value, traceback):
ifself.o!=None:
self._q.put(self.o)
self.o=None
def__del__(self):
ifself.o!=None:
self._q.put(self.o)
self.o=None
if__name__=="__main__":
importqueue
deftestObj(Q):
someObj=qObj(Q, True)
print('Inside func: {}'.format(someObj.o))
aQ=queue.Queue()
aQ.put("yam")
withqObj(aQ) asobj:
print("Inside with: {}".format(obj))
print('Outside with: {}'.format(aQ.get()))
aQ.put("sam")
testObj(aQ)
print('Outside func: {}'.format(aQ.get()))
ifnotaQ.empty():
print(aQ.get())