in windows, how to have non-blocking stdin that is a redirected pipe? - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T22:16:35Zhttp://stackoverflow.com/feeds/question/870167http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/870167/in-windows-how-to-have-non-blocking-stdin-that-is-a-redirected-pipe4in windows, how to have non-blocking stdin that is a redirected pipe?paleozogt2009-05-15T18:29:05Z2009-05-16T19:50:03Z
<p>I have a Windows C program that gets its data through a redirected <code>stdin</code> pipe, sort of like this:</p>
<pre><code>./some-data-generator | ./myprogram
</code></pre>
<p>The problem is that I need to be able to read from <code>stdin</code> in a non-blocking manner. The reason for this is that (1) the input is a data stream and there is no <code>EOF</code> and (2) the program needs to be able to abort its <code>stdin</code>-reading thread at any time. <code>fread</code> blocks when there's no data, so this makes it very difficult.</p>
<p>In Unix this is no problem, as you can set the blocking mode of a file descriptor with <code>fcntl</code> and <code>O_NONBLOCK</code>. However, <code>fcntl</code> doesn't exist on windows.</p>
<p>I tried using <code>SetNamedPipeHandleState</code>:</p>
<pre><code> DWORD mode= PIPE_READMODE_BYTE|PIPE_NOWAIT;
BOOL ok= SetNamedPipeHandleState(GetStdHandle(STD_INPUT_HANDLE), &mode, NULL, NULL);
DWORD err= GetLastError();
</code></pre>
<p>but this fails with <code>ERROR_ACCESS_DENIED</code> (<code>0x5</code>).</p>
<p>I'm not sure what else to do. Is this actually impossible (!) or is it just highly obfuscated? The resources on the net are rather sparse for this particular issue.</p>
http://stackoverflow.com/questions/870167/in-windows-how-to-have-non-blocking-stdin-that-is-a-redirected-pipe/870824#8708241Answer by Conal for in windows, how to have non-blocking stdin that is a redirected pipe?Conal2009-05-15T20:55:04Z2009-05-15T20:55:04Z<p>You could use async I/O to read from the handle, such as the ReadFileEx() WIN32 call. Use CancelIo() to terminate reading in the absence of input.</p>
<p>See MSDN at <a href="http://msdn.microsoft.com/en-us/library/aa365468" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa365468</a>(VS.85).aspx</p>
http://stackoverflow.com/questions/870167/in-windows-how-to-have-non-blocking-stdin-that-is-a-redirected-pipe/873161#8731612Answer by kcwu for in windows, how to have non-blocking stdin that is a redirected pipe?kcwu2009-05-16T19:50:03Z2009-05-16T19:50:03Z<p>The order apprach, check there is input ready to read:</p>
<ul>
<li>For console mode, you can use GetNumberOfConsoleInputEvents().</li>
<li>For pipe redirection, you can use PeekNamedPipe()</li>
</ul>