in reply to Re^3: Win32::Job::watch vs. system(1,...)
in thread Win32::Job::watch vs. system(1,...)

Basically you are right, but a bit simpler. I want to start a process (let's call it P), and this process might create any number of childs and grandchilds. After the process is started, my program is continuing to do other stuff. From time to time (when my program has nothing else to do, which is typically every few seconds), my program checks whether P is supposed to be killed, or whether it is allowed to continue running, or whether maybe it already has ended. This decision is done by looking whether a certain file exists (this file is created from a different side - from the viewpoint of my program, I only need to see whether the file exists or not). If this certain file exists, and P is still running, my program has to kill P and all its decendents.

Here the whole thing in pseudocode:

Create new process P while(1) { read next task process task if(P has ended) { evaluate result of P Create new process P } elsif(P should be killed) { kill P and its children Create new process P } }
In my original solution, 'create new process' was done with system(1,...) and killing was done with kill -9.

-- 
Ronald Fischer <ynnor@mm.st>

Replies are listed 'Best First'.
Re^5: Win32::Job::watch vs. system(1,...)
by BrowserUk (Patriarch) on Sep 25, 2009 at 17:51 UTC

    Then watch() is not a good fit for your requirements. All you need is something like:

    my $job = Win32::Job->new; my $pid = $job->spawn(); while( 1 ) { ## read and process next task sleep 3 while $job->status->{ $pid }{ exitcode } == $STILL_RUNNING + ## 259?? and not -e 'killfile'; $job->kill if $job->status->{ $pid }{ exitcode } == $STILL_RUNNING +; $job = Win32::Job->new; $pid = $job->spawn( ... ) }

    Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
    "Science is about questioning the status quo. Questioning authority".
    In the absence of evidence, opinion is indistinguishable from prejudice.
      my $pid = $job->spawn();

      I must admit that there is something I don't understand in the documentation of Win32::Job::spawn. The perldoc says:

      spawn($exe, $args, \%opts); Creates a new process and associates it with the Job. The proc +ess is initially suspended, and can be resumed with one of the other methods.
      I was thinking that this means, spawn creates a new process, but does not actually execute it, and that I would have to execute it with one of the other methods (run or watch). In your example, you use neither of these. How is this supposed to work, respectively, in what way did I misunderstand the documentation?

      -- 
      Ronald Fischer <ynnor@mm.st>

        Okay. Looking back at the code on my archive CD from my old machine, the one time I had occasion to use Win32::Job, I encountered the same problem and fixed it by adding these 5 lines to Job.xs:

        void run_nw(self) JOB_T self CODE: resume_threads(aTHX_ self->procs );

        If you add that and rebuild, you can start the job asynchronously by calling $job->run_nw when you've set the job up.

        Sorry for not putting two and two together from your earlier posts ... um, earlier.


        Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
        "Science is about questioning the status quo. Questioning authority".
        In the absence of evidence, opinion is indistinguishable from prejudice.