10

Python で mutliprocessing モジュールを使用してプロセスを作成したいのですが、サブプロセスを作成したプロセスが終了した後もプロセスが実行され続けるようにします。

subprocess モジュールと Popen を使用して必要な機能を取得できますが、スクリプトとしてではなく、関数としてコードを実行したいと考えています。これを行う理由は、pyro (python リモート オブジェクト) オブジェクトの作成を簡素化するためです。マルチプロセッシングを使用して別のプロセスで Pyro オブジェクト リクエスト ハンドラを開始したいのですが、Pyro オブジェクトをサポートするプロセスが引き続き実行されている間、メイン プロセスを終了させたいです。

4

1 に答える 1

4

やっと欲しかったものを手に入れました。コードを改善するための提案をいただければ幸いです。

def start_server():
    pyrodaemon = Pyro.core.Daemon()
    #setup daemon and nameserver
    #Don't want to close the pyro socket
    #Need to remove SIGTERM map so Processing doesn't kill the subprocess
    #Need to explicitly detach for some reason I don't understand
    with daemon.DaemonContext(files_preserve=[pyrodaemon.sock],signal_map={signal.SIGTERM:None},detach_process=True):
        while running:
            pyrodaemon.handleRequests(timeout=1.0)
    #when finished, clean up
    pyrodaemon.shutdown()

def main():
    p = Process(target=start_server)
    p.daemon=True # Need to inform Process that this should run as a daemon
    p.start()
    time.sleep(3.0) # Important when running this program stand alone: Must wait long enough for start_server to get into the daemon context before the main program exits or Process will take down the subprocess before it detaches
    do_other_stuff_not_in_the_daemon()
于 2009-11-19T07:37:46.007 に答える