Przemyslaw Czerpak napsal(a):
Nice but it will not work as expected in all cases.
If stderr output is longer then PIPE buffer size this code will create
deadlock. If if passed stdin is longer then PIPE buffer size then is
truncated in hidden.
This deadlock in this code can be used to exploit in the following way:
PROC MAIN( x )
LOCAL nResult, cCommand, cStdIn, cStdOut, cStdErr
IF PCount() == 0
cCommand := hb_progName() + " test"
nResult := hb_processRun( cCommand, cStdIn, @cStdOut, @cStdErr )
? cCommand, "=>", nResult
? "stdout size:", len( cStdOut )
? "stderr size:", len( cStdErr )
ELSE
OutStd( repl( ".stdout.", 1 ) )
OutErr( repl( ".stderr.", 100000 ) ) // huge stderr outout,
// longer then PIPE buffer size
ENDIF
RETURN
It means that in such version this function cannot be used in SVN.
In general we do not have .prg wrappers to implement such functionality
only in .prg level. In *nixes it has to be implement using select()
or similar poll function. In Windows it's necessary to use
WaitForMultipleObjects(). I do not know OS2 API so I cannot answer how
(and if) it can be implemented in this OS. Probably yes. DOS does not
support simultaneous process execution so it does not have any hb_process*()
functions though function like above hb_processRun() can be implemented
using temporary files.
If you think that such function will be usable then I can implement it
in some spare time but it will have to be done in C due to low level
platform differences. As alternative we can create hb_processCanRead()
function for *nixes and MS-Windows as wrapper to select() and
WaitForMultipleObjects() and use this function in above hb_processRun()
code to eliminate deadlock.
Functionality like this make simple using various command line tools
etc. and I use it daily.
Would be great if You find a spare time to take a look
than You for explanation
best regards
Davor
best regards,
Przemek
_______________________________________________
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour
_______________________________________________
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour