|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2007-07-02 19:04 UTC] sebastianmarconi at gmail dot com
Description:
------------
It seems that Gtk::io_add_watch
can't detect HUP conditions using
beta Windows binary with Gtk+ 2.10.
In some cases the only workaround that I've found is to look the process status info [1] in the STDOUT callback (sometimes it sends IO_IN signals constantly), but randomly losses some information.
[1]
<?php
$status = proc_get_status($proc_id);
if (! $status['running']) {
$this->io_hup($pipe);
}
?>
Reproduce code:
---------------
<?php
function out($pipe) {
echo "STDOUT\n";
echo stream_get_contents($pipe);
}
function hup($pipe){
echo "HUP\n";
Gtk::main_quit();
return false;
}
$pipes = null;
$descriptor = array(
0 => array("pipe", "r"), // stdin
1 => array("pipe", "w"), // stdout is a pipe that the child will write to
2 => array("pipe", "w") // stderr
);
$cmd = 'dir';
$p = proc_open($cmd, $descriptor, $pipes);
Gtk::io_add_watch($pipes[1],Gtk::IO_IN, 'out');
Gtk::io_add_watch($pipes[1],Gtk::IO_HUP, 'hup');
Gtk::main();
echo "EXIT\n";
fclose($pipes[0]);
fclose($pipes[1]);
fclose($pipes[2]);
?>
Expected result:
----------------
STDOUT
[Dir contents]
HUP
EXIT
Actual result:
--------------
STDOUT
[The script hangs]
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 16:00:01 2025 UTC |
You need to add code to detect HUP | IN - hup is never being called separately so the second watch is never being fired <?php function out($pipe) { echo "STDOUT\n"; echo stream_get_contents($pipe); } function hupin($pipe){ echo "STDOUT\n"; echo stream_get_contents($pipe); echo "HUP\n"; Gtk::main_quit(); return false; } function hup($pipe){ echo "HUP\n"; Gtk::main_quit(); return false; } $pipes = null; $descriptor = array( 0 => array("pipe", "r"), // stdin 1 => array("pipe", "w"), // stdout is a pipe that the child will write to 2 => array("pipe", "w") // stderr ); $cmd = 'dir'; $p = proc_open($cmd, $descriptor, $pipes); Gtk::io_add_watch($pipes[1],GTK::IO_IN, 'out'); Gtk::io_add_watch($pipes[1],GTK::IO_HUP, 'hup'); Gtk::io_add_watch($pipes[1],GTK::IO_HUP | GTK::IO_IN, 'hupin'); Gtk::main(); echo "EXIT\n"; fclose($pipes[0]); fclose($pipes[1]); fclose($pipes[2]); ?>