-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathusing_pipe.py
48 lines (37 loc) · 1.08 KB
/
using_pipe.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
##Using Pipes with multiprocessing
import multiprocessing
def create_items(pipe):
output_pipe, _ = pipe
for item in range(10):
output_pipe.send(item)
output_pipe.close()
def multiply_items(pipe_1, pipe_2):
close, input_pipe = pipe_1
close.close()
output_pipe, _ = pipe_2
try:
while True:
item = input_pipe.recv()
output_pipe.send(item * item)
except EOFError:
output_pipe.close()
if __name__== '__main__':
#First process pipe with numbers from 0 to 9
pipe_1 = multiprocessing.Pipe(True)
process_pipe_1 = \
multiprocessing.Process\
(target=create_items, args=(pipe_1,))
process_pipe_1.start()
#second pipe,
pipe_2 = multiprocessing.Pipe(True)
process_pipe_2 = \
multiprocessing.Process\
(target=multiply_items, args=(pipe_1, pipe_2,))
process_pipe_2.start()
pipe_1[0].close()
pipe_2[0].close()
try:
while True:
print (pipe_2[1].recv())
except EOFError:
print ("End")