I am new to Python and I am wondering how to implement more syntactically efficient the following problem.
I have functions f1, f2 ... fN Those functions are wrappers which spawn new processes (with targets _f1, _f2, .. _fN),
pass its argument (arg1, arg2, ...) to the child processes and receive the return values
With code like this I want the module functionality to execute in a different process then the caller(user of the module) process.
Functions f1, f2, ... fN (respectively _f1, f2, ... _fN) may have different prototypes.
in a module
def _f1(arg1, arg2, ... argn, connection):
...
connection.send(return_value)
connection.close()
def f1(arg1, arg2, ... argn):
parent_conn, child_conn = Pipe()
p = Process(target=_f1, args=(arg1, arg2, ... argn, child_conn))
p.start()
p.join()
return parent_conn.recv()
def _f2(arg1, arg2, ... argm, connection):
...
connection.send(return_value)
connection.close()
def f2(arg1, arg2, ... argn):
parent_conn, child_conn = Pipe()
p = Process(target=_f2, args=(arg1, arg2, ... argm, child_conn))
p.start()
p.join()
return parent_conn.recv()
...
def _fn(arg1, arg2, ... argk, connection):
...
connection.send(return_value)
connection.close()
def fN(arg1, arg2, ... argn):
parent_conn, child_conn = Pipe()
p = Process(target=_fN, args=(arg1, arg2, ... argk, child_conn))
p.start()
p.join()
return parent_conn.recv()
It is clear that wrapper functions f1,f2, fN are about the same. Can I implement them as a single wrapper function probably? I want the execution to be not blocking. The user of the module should be able to execute concurrently f1 and f2 for example.
I hope I have managed to explain my question.
Here concrete example with two functions sum() and sin():
def _sum(a, b, connection):
return_value=a+b
connection.send(return_value)
connection.close()
def sum(a, b):
parent_conn, child_conn = Pipe()
p = Process(target=_sum, args=(a, b, child_conn))
p.start()
p.join()
return parent_conn.recv()
def _sin(x, connection):
return_value=sin(x)
connection.send(return_value)
connection.close()
def sin(x):
parent_conn, child_conn = Pipe()
p = Process(target=_sin, args=(x, child_conn))
p.start()
p.join()
return parent_conn.recv()
Taking the srj idea about using decoration i came to a solution posted below. I have tried to expand it even further to decorate also connection.send(return_value) and connection.close() but it doesn't work for me. Below the code. With coments I specify what is working and what equivalen (in my opinion) is not working. Any help?
from multiprocessing import Process, Pipe
def process_wrapper1(func):
def wrapper(*args):
parent_conn, child_conn = Pipe()
f_args = args + (child_conn,)
p = Process(target=func, args=f_args)
p.start()
p.join()
return parent_conn.recv()
return wrapper
def process_wrapper2(func):
def wrapper(*args):
res=func(*args[0:len(args)-1])
args[-1].send(res)
args[-1].close()
return wrapper
#def _sum(a, b, connection): #Working
# return_value=a+b
# connection.send(return_value)
# connection.close()
def __sum(a, b): #Doesn't work, see the error bellow
return(a+b)
_sum=process_wrapper2(__sum)
sum=process_wrapper1(_sum)
The above code in the Pyzo ipython shell generates the following result:
In [3]: import test1
In [4]: test1.sum(2,3)
---------------------------------------------------------------------------
PicklingError Traceback (most recent call last)
<ipython-input-4-8c542dc5e11a> in <module>()
----> 1 test1.sum(2,3)
C:\projects\PYnGUInLib\test1.py in wrapper(*args)
11 f_args = (child_conn,) + args
12 p = Process(target=func, args=f_args)
---> 13 p.start()
14 p.join()
15 return parent_conn.recv()
C:\pyzo2014a_64b\lib\multiprocessing\process.py in start(self)
103 'daemonic processes are not allowed to have children'
104 _cleanup()
--> 105 self._popen = self._Popen(self)
106 self._sentinel = self._popen.sentinel
107 _children.add(self)
C:\pyzo2014a_64b\lib\multiprocessing\context.py in _Popen(process_obj)
210 @staticmethod
211 def _Popen(process_obj):
--> 212 return _default_context.get_context().Process._Popen(process_obj)
213
214 class DefaultContext(BaseContext):
C:\pyzo2014a_64b\lib\multiprocessing\context.py in _Popen(process_obj)
311 def _Popen(process_obj):
312 from .popen_spawn_win32 import Popen
--> 313 return Popen(process_obj)
314
315 class SpawnContext(BaseContext):
C:\pyzo2014a_64b\lib\multiprocessing\popen_spawn_win32.py in __init__(self, process_obj)
64 try:
65 reduction.dump(prep_data, to_child)
---> 66 reduction.dump(process_obj, to_child)
67 finally:
68 context.set_spawning_popen(None)
C:\pyzo2014a_64b\lib\multiprocessing\reduction.py in dump(obj, file, protocol)
57 def dump(obj, file, protocol=None):
58 '''Replacement for pickle.dump() using ForkingPickler.'''
---> 59 ForkingPickler(file, protocol).dump(obj)
60
61 #
PicklingError: Can't pickle <function process_wrapper2.<locals>.wrapper at 0x0000000005541048>: attribute lookup wrapper on test1 failed
Traceback (most recent call last):
File "<string>", line 1, in <module>
File "C:\pyzo2014a_64b\lib\multiprocessing\spawn.py", line 106, in spawn_main
exitcode = _main(fd)
File "C:\pyzo2014a_64b\lib\multiprocessing\spawn.py", line 116, in _main
self = pickle.load(from_parent)
EOFError: Ran out of input
In [5]: