<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#000000">
Thomas Chust wrote at 02/06/2011 10:14 AM:
<blockquote
 cite="mid:AANLkTi=PeveB_F9SuxA+D6_Pp-oe60iCRAaLntKsKPBX@mail.gmail.com"
 type="cite">
  <pre wrap="">2011/2/6 Manfred Lotz <a class="moz-txt-link-rfc2396E" href="mailto:manfred.lotz@arcor.de">&lt;manfred.lotz@arcor.de&gt;</a>:
  </pre>
  <blockquote type="cite">
    <pre wrap="">[...]
I don't know how to merge stdout and stderr in proper sequence.
[...]
    </pre>
  </blockquote>
  <pre wrap=""><!---->
There is no such thing as proper sequencing of data flowing through different streams.

Due to buffering in system libraries and the operating system kernel it is also entirely impossible to reliably process the output data in the exact sequence it was produced by the external process.</pre>
</blockquote>
<br>
Agreed with Thomas that doing this perfectly is impossible in the
general case, even when there's a single-threaded producer of the two
streams.<br>
<br>
However, if you want to sequence reading stdout and stderr close enough
for most purposes, keep in mind that these are usually interleaved at
the resolution of lines rather than characters, so you can get this
pretty much right, and still do fairly efficient block reads.&nbsp; So, you
can do the sequencing efficiently in your reading process by doing raw
stdio and avoiding any buffering port abstractions in your library,
doing a "sync" loop on the ports, and implementing your own buffering
for each port, out of which buffer you pick a complete line at a time.&nbsp;
You also can tweak this to better interleave reads from the two
streams/buffers.&nbsp; You can also use time or other heuristics to detect
when, say, a stdout message like "Processing..." without newline should
be handled because it was interrupted by a subsequent stderr error
message.&nbsp; There might still be buffering outside of your control, but I
think it doesn't often matter.<br>
<br>
Once you get into "expect"-like interaction with a process using the
three streams at once, and doing pattern-matching while also capturing
the output, and doing this all efficiently, it's tricky.&nbsp; There's no
reason that a generalized library routine to do this can't be
implemented in Racket, but I'm not aware of one.&nbsp; If you hand-implement
for a particular purpose, I think you'll be getting your hands dirty
with "sync", your own buffering of both input and output, block I/O,
and some strategy for how to do your pattern-matching efficiently on
the buffers.&nbsp; IMHO, this should feel like systems programming if you're
doing it efficiently.&nbsp; This complication does not reflect a limitation
of Racket, but instead that Racket is flexible enough that this doing
this complicated stuff is possible.<br>
<br>
<div class="moz-signature">-- <br>
<a class="moz-txt-link-freetext" href="http://www.neilvandyke.org/">http://www.neilvandyke.org/</a><br>
<br>
</div>
</body>
</html>