Communication problem between Java and C++ app on stdin - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T08:32:09Zhttp://stackoverflow.com/feeds/question/1007436http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1007436/communication-problem-between-java-and-c-app-on-stdin1Communication problem between Java and C++ app on stdinAndreas Pakulat2009-06-17T14:35:41Z2009-06-17T18:12:57Z
<p>I have a java app here that starts a C++ app via the java.lang.Process API and then tries to send commands to it via the stdin pipe:</p>
<pre>
process.getOutputStream().write("foo\n");
process.getOutputStream().flush();
</pre>
<p>On the C++ side there's a loop running that checks for input in stdin and if there is some
it reads it. Unfortunately the checking always returns 0, hence it never tries to read. If I remove the check then it'll suddenly start to see the commands and process them. This is on linux. </p>
<p>The C++ apps code to check and read from stdin is this:</p>
<pre>
fd_set fds;
FD_ZERO ( &fds );
FD_SET ( 0, &fds );
struct timeval tv;
tv.tv_sec = 0;
tv.tv_usec = 0;
if( select ( 1, &fds, 0, 0, &tv ) > 0 ) {
char buf[16384];
buf[16383] = '\0';
if ( fgets ( buf, sizeof ( buf ) - 1, stdin ) == 0 )
return;
}
</pre>
<p>As I said, removing the if clause makes it work, but of course thats not so nice as the loop around it also does some other things. Anybody got an idea what I'm doing wrong here?</p>
<p>Update:
Meanwhile I was able to reproduce the problem with two very small sample apps. The problem seems to be related to the Qt framework here, as soon as I create the QCoreApplication instance needed for the framework then select() for stdin doesn't seem to work anymore.</p>
http://stackoverflow.com/questions/1007436/communication-problem-between-java-and-c-app-on-stdin/1007475#10074750Answer by Martin Cote for Communication problem between Java and C++ app on stdinMartin Cote2009-06-17T14:40:34Z2009-06-17T14:40:34Z<p>I may be wrong, but does having a timeout of 0 for the <code>select</code> call makes sense? I would try to increase the timeout value.</p>
http://stackoverflow.com/questions/1007436/communication-problem-between-java-and-c-app-on-stdin/1007533#10075331Answer by lavinio for Communication problem between Java and C++ app on stdinlavinio2009-06-17T14:49:32Z2009-06-17T14:54:32Z<p>You have two if's; removing which one makes it work?</p>
<p>Doesn't <a href="http://en.wikipedia.org/wiki/Fgets" rel="nofollow">fgets()</a> wait for a newline, buffer full, or EOF before it returns? I don't see you writing a newline, "foo" doesn't fill the buffer, and since the stream isn't closed, does it see an EOF?</p>
http://stackoverflow.com/questions/1007436/communication-problem-between-java-and-c-app-on-stdin/1007751#10077510Answer by Jay for Communication problem between Java and C++ app on stdinJay2009-06-17T15:23:58Z2009-06-17T15:23:58Z<p>I remember there being a lot of argument about the semantics and operation of select() and a couple of replacements for it. You might look at those.</p>
<p>How is the stream you're reading being created/opened? Is it a buffered stream? Perhaps you get nothing because it's not been written to the stream until the writing process flushes it?</p>
<p>The other thing you might try is putting it on a thread with blocking I/O instead of polling.</p>
<p>Good luck with it</p>
http://stackoverflow.com/questions/1007436/communication-problem-between-java-and-c-app-on-stdin/1007868#10078680Answer by Andreas Pakulat for Communication problem between Java and C++ app on stdinAndreas Pakulat2009-06-17T15:39:55Z2009-06-17T15:39:55Z<p>Turns out its not the QCoreApplication as I could now reproduce the problem twice with out. Seems like the problem is the fgets() that I'm using, replacing that with read() fixes it.</p>
http://stackoverflow.com/questions/1007436/communication-problem-between-java-and-c-app-on-stdin/1008523#10085230Answer by Warrior for Communication problem between Java and C++ app on stdinWarrior2009-06-17T17:38:43Z2009-06-17T18:12:57Z<p>is the below inside the while loop, if not it should be.</p>
<pre><code>FD_ZERO ( &fds );
FD_SET ( 0, &fds );
struct timeval tv;
tv.tv_sec = 0;
tv.tv_usec = 0;
</code></pre>
<p>if the answer for my first question is yes, then please try this timeout</p>
<pre><code>tv.tv_sec = 0;
tv.tv_usec = 1;
</code></pre>
<p>if the above doest work, try this</p>
<p>while(fgets(buf, sizeof ( buf ) - 1, stdin) !=NULL)
{
}</p>