pyqtgraph/multiprocess/bootstrap.py

29 lines
1.1 KiB
Python
Raw Normal View History

"""For starting up remote processes"""
import sys, pickle, os
if __name__ == '__main__':
if hasattr(os, 'setpgrp'):
os.setpgrp() ## prevents signals (notably keyboard interrupt) being forwarded from parent to this process
2013-01-12 23:07:35 +00:00
if sys.version[0] == '3':
2013-02-13 16:43:22 +00:00
#name, port, authkey, ppid, targetStr, path, pyside = pickle.load(sys.stdin.buffer)
opts = pickle.load(sys.stdin.buffer)
2013-01-12 23:07:35 +00:00
else:
2013-02-13 16:43:22 +00:00
#name, port, authkey, ppid, targetStr, path, pyside = pickle.load(sys.stdin)
opts = pickle.load(sys.stdin)
#print "key:", ' '.join([str(ord(x)) for x in authkey])
2013-02-13 16:43:22 +00:00
path = opts.pop('path', None)
if path is not None:
## rewrite sys.path without assigning a new object--no idea who already has a reference to the existing list.
while len(sys.path) > 0:
sys.path.pop()
sys.path.extend(path)
2013-01-12 23:07:35 +00:00
2013-02-13 16:43:22 +00:00
if opts.pop('pyside', False):
2013-01-12 23:07:35 +00:00
import PySide
2013-02-13 16:43:22 +00:00
targetStr = opts.pop('targetStr')
target = pickle.loads(targetStr) ## unpickling the target should import everything we need
2013-02-13 16:43:22 +00:00
target(**opts) ## Send all other options to the target function
sys.exit(0)