-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathprodcons.py
More file actions
64 lines (51 loc) · 1.31 KB
/
prodcons.py
File metadata and controls
64 lines (51 loc) · 1.31 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env python
from random import randint
from time import sleep
from Queue import Queue
from mythread import My_thread
QUEUE_SIZE = 6
def writeQ(queue):
print 'Producing object for Q...',
if queue.full() :
print "queue is full, writeQ will block"
block = True
else :
block = False
queue.put('xxx', block=1)
if block :
print "writeQ is now unblocked"
print 'size now', queue.qsize()
def readQ(queue):
if queue.empty() :
print "readQ will block"
block = True
else :
block = False
val = queue.get(block=1)
if block :
print "readQ is now unblocked"
print 'consumed object from Q... size now', queue.qsize()
def writer(queue, loops):
for i in range(loops):
writeQ(queue)
sleep(randint(1, 3))
def reader(queue, loops):
for i in range(loops):
readQ(queue)
sleep(randint(2, 5))
funcs = [writer, reader]
nfuncs = range(len(funcs))
def main():
nloops = randint(8, 20)
q = Queue(QUEUE_SIZE)
threads = []
for i in nfuncs:
t = My_thread(funcs[i], (q, nloops), funcs[i].__name__)
threads.append(t)
for i in nfuncs:
threads[i].start()
for i in nfuncs:
threads[i].join()
print 'all DONE'
if __name__ == '__main__':
main()