FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
python-patterns/pool.py at master · Pythoning/python-patterns · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
Pythoning
/
python-patterns
Public
forked from
faif/python-patterns
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
python-patterns
/
pool.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
51 lines (37 loc) · 1.35 KB
Breadcrumbs
python-patterns
/
pool.py
Copy path
File metadata and controls
51 lines (37 loc) · 1.35 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
50
51
"""http://stackoverflow.com/questions/1514120/python-implementation-of-the-object-pool-design-pattern"""
class
QueueObject
():
def
__init__
(
self
,
queue
,
auto_get
=
False
):
self
.
_queue
=
queue
self
.
object
=
self
.
_queue
.
get
()
if
auto_get
else
None
def
__enter__
(
self
):
if
self
.
object
is
None
:
self
.
object
=
self
.
_queue
.
get
()
return
self
.
object
def
__exit__
(
self
,
type
,
value
,
traceback
):
if
self
.
object
is
not
None
:
self
.
_queue
.
put
(
self
.
object
)
self
.
object
=
None
def
__del__
(
self
):
if
self
.
object
is
not
None
:
self
.
_queue
.
put
(
self
.
object
)
self
.
object
=
None
def
main
():
try
:
import
queue
except
ImportError
:
# python 2.x compatibility
import
Queue
as
queue
def
test_object
(
queue
):
queue_object
=
QueueObject
(
queue
,
True
)
print
(
'Inside func: {}'
.
format
(
queue_object
.
object
))
sample_queue
=
queue
.
Queue
()
sample_queue
.
put
(
'yam'
)
with
QueueObject
(
sample_queue
)
as
obj
:
print
(
'Inside with: {}'
.
format
(
obj
))
print
(
'Outside with: {}'
.
format
(
sample_queue
.
get
()))
sample_queue
.
put
(
'sam'
)
test_object
(
sample_queue
)
print
(
'Outside func: {}'
.
format
(
sample_queue
.
get
()))
if
not
sample_queue
.
empty
():
print
(
sample_queue
.
get
())
if
__name__
==
'__main__'
:
main
()
Back
|
FazBrowse Home
|
New Git URL