-
Notifications
You must be signed in to change notification settings - Fork 51
/
prodcons.py
55 lines (36 loc) · 977 Bytes
/
prodcons.py
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
#!/usr/bin/env python3
from myThread import MyThread
from queue import Queue
from random import randint
from time import sleep
def writeQ(queue):
print("producing object for Q...", end=" ")
queue.put("xxx", 1)
print("size now:", queue.qsize())
def readQ(queue):
val = queue.get(1)
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(2, 5)
q = Queue(32)
threads = []
for i in nfuncs:
t = MyThread(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()