vote up 4 vote down star
4

I need to execute a directory copy upon a user action, but the directories are quite large, so I would like to be able to perform such an action without the user being aware of the time it takes for the copy to complete.

Any suggestions would be much appreciated.

flag

5 Answers

vote up 17 vote down check

Assuming this is running on a Linux machine, I've always handled it like this:

exec(sprintf("%s > %s 2>&1 & echo $! >> %s", $cmd, $outputfile, $pidfile));

This launches the command $cmd, redirects the command output to $outputfile, and writes the process id to $pidfile.

That lets you easily monitor what the process is doing and if it's still running.

function isRunning($pid){
    try{
        $result = shell_exec(sprintf("ps %d", $pid));
        if( count(preg_split("/\n/", $result)) > 2){
            return true;
        }
    }catch(Exception $e){}

    return false;
}
link|flag
vote up 2 vote down

If you are running the Zend Platform (or willing to run the Zend Platform), the Jobs Queue will help you out. If not, it is certainly functionality you could rewrite.

link|flag
vote up 2 vote down

Write the process as a server-side script in whatever language (php/bash/perl/etc) is handy and then call it from the process control functions in your php script.

The function probably detects if standard io is used as the output stream and if it is then that will set the return value..if not then it ends

Proc_Close (Proc_Open ("./command --foo=1 &", Array (), $foo));

I tested this quickly from the command line using "sleep 25s" as the command and it worked like a charm.

(Answer found here)

link|flag
vote up 0 vote down

Can you arrange to fork off a separate process, and then run your copy in the background? It's been a while since I did any PHP, but the function pcntl-fork looks promising.

link|flag
vote up 0 vote down

You could use AJAX to initiate the copy. This would be particularly easy if you didn't need to wait for a response to the client.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.