From:             RQuadling at GMail dot com
Operating system: Windows XP SP3
PHP version:      5.3CVS-2009-04-07 (snap)
PHP Bug Type:     Streams related
Bug description:  stream_set_blocking() not working on proc_open()'d pipes

Description:
------------
I'm trying to set non-blocking mode on pipes attached to a process 
opened using proc_open.

The documentation and the user notes suggest that what I am doing 
should work.

Running this with php -n to remove my ini file settings.







Reproduce code:
---------------
<?php
echo PHP_VERSION, ' ', PHP_OS, ' ', PHP_SAPI, PHP_EOL;
echo 'INI:', php_ini_loaded_file(), PHP_EOL;

// Define the descriptors.
$a_Descriptors = array(0 => array('pipe', 'r'), 1 => array('pipe', 'w'), 2
=> array('pipe', 'w'));

// Provide a place for the pipes.
$a_Pipes = array();

// Create the thread.
$r_Thread = proc_open("dir c:\\ /b", $a_Descriptors, $a_Pipes, Null,
$_ENV);

// Display the current STDOUT meta data.
print_r(stream_get_meta_data($a_Pipes[1]));

// Try to change the blocking mode to non-blocking.
echo (stream_set_blocking($a_Pipes[1], False) ? 'Successfully' :
'Failed'), ' to set blocking mode to non-blocking', PHP_EOL;

// Display the current STDOUT meta data.
print_r(stream_get_meta_data($a_Pipes[1]));



Expected result:
----------------
5.3.0RC2-dev WINNT cli
INI:
Array
(
    [stream_type] => STDIO
    [mode] => r
    [unread_bytes] => 0
    [seekable] =>
    [timed_out] =>
    [blocked] => 1
    [eof] =>
)
Successfully set blocking mode to non-blocking
Array
(
    [stream_type] => STDIO
    [mode] => r
    [unread_bytes] => 0
    [seekable] =>
    [timed_out] =>
    [blocked] =>
    [eof] =>
)

Actual result:
--------------
5.3.0RC2-dev WINNT cli
INI:
Array
(
    [stream_type] => STDIO
    [mode] => r
    [unread_bytes] => 0
    [seekable] =>
    [timed_out] =>
    [blocked] => 1
    [eof] =>
)
Failed to set blocking mode to non-blocking
Array
(
    [stream_type] => STDIO
    [mode] => r
    [unread_bytes] => 0
    [seekable] =>
    [timed_out] =>
    [blocked] => 1
    [eof] =>
)

-- 
Edit bug report at http://bugs.php.net/?id=47918&edit=1
-- 
Try a CVS snapshot (PHP 5.2):        
http://bugs.php.net/fix.php?id=47918&r=trysnapshot52
Try a CVS snapshot (PHP 5.3):        
http://bugs.php.net/fix.php?id=47918&r=trysnapshot53
Try a CVS snapshot (PHP 6.0):        
http://bugs.php.net/fix.php?id=47918&r=trysnapshot60
Fixed in CVS:                        
http://bugs.php.net/fix.php?id=47918&r=fixedcvs
Fixed in CVS and need be documented: 
http://bugs.php.net/fix.php?id=47918&r=needdocs
Fixed in release:                    
http://bugs.php.net/fix.php?id=47918&r=alreadyfixed
Need backtrace:                      
http://bugs.php.net/fix.php?id=47918&r=needtrace
Need Reproduce Script:               
http://bugs.php.net/fix.php?id=47918&r=needscript
Try newer version:                   
http://bugs.php.net/fix.php?id=47918&r=oldversion
Not developer issue:                 
http://bugs.php.net/fix.php?id=47918&r=support
Expected behavior:                   
http://bugs.php.net/fix.php?id=47918&r=notwrong
Not enough info:                     
http://bugs.php.net/fix.php?id=47918&r=notenoughinfo
Submitted twice:                     
http://bugs.php.net/fix.php?id=47918&r=submittedtwice
register_globals:                    
http://bugs.php.net/fix.php?id=47918&r=globals
PHP 4 support discontinued:          http://bugs.php.net/fix.php?id=47918&r=php4
Daylight Savings:                    http://bugs.php.net/fix.php?id=47918&r=dst
IIS Stability:                       
http://bugs.php.net/fix.php?id=47918&r=isapi
Install GNU Sed:                     
http://bugs.php.net/fix.php?id=47918&r=gnused
Floating point limitations:          
http://bugs.php.net/fix.php?id=47918&r=float
No Zend Extensions:                  
http://bugs.php.net/fix.php?id=47918&r=nozend
MySQL Configuration Error:           
http://bugs.php.net/fix.php?id=47918&r=mysqlcfg

Reply via email to