故意在蟒蛇的孤儿进程(Deliberately make an orphan process in

2019-07-02 17:49发布

我有一个python脚本(类似Unix,基于RHEL),叫的MyScript,有两个功能,称为A和B.我希望他们能够在不同的,独立的进程中运行(分离B和A):

  • 启动脚本的MyScript
  • 执行功能的
  • 产生一个新的过程,从函数A将数据传递到乙
  • 虽然函数B运行,继续与功能的
  • 当功能的完成,出口的MyScript即使B的仍在运行

我想我应该用多来创建一个守护进程,但文件暗示,这不是正确的用例。 所以,我决定生成一个子进程和子^ 2个处理(孩子的孩子),然后强迫孩子终止。 虽然这个解决办法似乎工作,似乎真难看。

你能帮助我使之更符合Python? 请问子模块都将在功能操作的方法? 下面的示例代码。

import multiprocessing
import time
import sys
import os

def parent_child():
    p = multiprocessing.current_process()
    print 'Starting parent child:', p.name, p.pid
    sys.stdout.flush()
    cc = multiprocessing.Process(name='childchild', target=child_child)
    cc.daemon = False
    cc.start()
    print 'Exiting parent child:', p.name, p.pid
    sys.stdout.flush()

def child_child():
    p = multiprocessing.current_process()
    print 'Starting child child:', p.name, p.pid
    sys.stdout.flush()
    time.sleep(30)
    print 'Exiting child child:', p.name, p.pid
    sys.stdout.flush()

def main():
    print 'starting main', os.getpid()
    d = multiprocessing.Process(name='parentchild', target=parent_child)
    d.daemon = False
    d.start()
    time.sleep(5)
    d.terminate()
    print 'exiting main', os.getpid()

main()

Answer 1:

这里是一个移动的功能集成到一个单一的呼叫你原来的代码只是一个随机版spawn_detached(callable) 。 它使连程序退出后运行分离的进程:

import time
import os
from multiprocessing import Process, current_process

def spawn_detached(callable):
    p = _spawn_detached(0, callable)
    # give the process a moment to set up
    # and then kill the first child to detach
    # the second.
    time.sleep(.001)
    p.terminate()

def _spawn_detached(count, callable):
    count += 1
    p = current_process()
    print 'Process #%d: %s (%d)' % (count, p.name, p.pid)

    if count < 2:
        name = 'child'
    elif count == 2:
        name = callable.func_name
    else:
        # we should now be inside of our detached process
        # so just call the function
        return callable()

    # otherwise, spawn another process, passing the counter as well
    p = Process(name=name, target=_spawn_detached, args=(count, callable)) 
    p.daemon = False 
    p.start()
    return p

def operation():
    """ Just some arbitrary function """
    print "Entered detached process"
    time.sleep(15)
    print "Exiting detached process"


if __name__ == "__main__":
    print 'starting main', os.getpid()
    p = spawn_detached(operation)
    print 'exiting main', os.getpid()


文章来源: Deliberately make an orphan process in python