相关文章推荐
光明磊落的玉米  ·  Power ...·  6 月前    · 
阳光的金鱼  ·  Natural History ...·  6 月前    · 
稳重的海豚  ·  Takyon Z660 电子调速器- ...·  6 月前    · 
痴情的啄木鸟  ·  個股淺析-海螺水泥·  6 月前    · 
Collectives™ on Stack Overflow

Find centralized, trusted content and collaborate around the technologies you use most.

Learn more about Collectives

Teams

Q&A for work

Connect and share knowledge within a single location that is structured and easy to search.

Learn more about Teams

If I have a program which creates and attempts to open a named pipe using mkfifo, how can I open a pipe for reading or writing without blocking?

Specifically, I'm writing a C program which can be run with or without a gui (written in Java).

In the C program, I successfully create the named pipes using mkfifo, however when I do

FILE* in = fopen(PIPE_IN, "r"); /* Where PIPE_IN is the filename*/

fopen doesn't return until the GUI opens that pipe for writing. What I wish to do is have that pipe ready to be read once (if) the GUI decides to write to it - I'll be putting the file descriptor in a select() call. It's reasonable to expect that the java GUI may never actually be started, so I cannot rely on it to open the other end of the pipe at any specific point or even at all.

I will also have a second pipe open for writing, and I assume I will have the same problem. Further, I can't set O_NONBLOCK on an output pipe that has no reader.

Any suggestions?

(This is running on a linux system)

@tinkertim - I suppose technically not - I had set them both up in a setup function, but I could just set up the output pipe first and then call select, why? – Zxaos Feb 24, 2009 at 4:47

You could open() your pipe O_RDONLY | O_NONBLOCK, and if you want the C stream, you can get it with fdopen(). However, there might be a problem with the select() - AFAIK, a pipe fd open for reading that has no writer is always prepared for reading, and read() returns 0, so the select() would fire indefinitely.

A kludgy way of overcoming this would be to open the pipe O_RDWR; that is, have at least one writer (your C++ program). Which would solve your problem anyway.

The POSIX standard says (of select()): "A descriptor shall be considered ready for reading when a call to an input function with O_NONBLOCK clear would not block, whether or not the function would transfer data successfully." (POSIX.1:2008). – Jonathan Leffler Feb 24, 2009 at 4:13 Opening the pipe O_RDWR would lead to deadlock when the program reads (or writes) - unless there is actually another process also with the pipe open. – Jonathan Leffler Feb 24, 2009 at 4:15 @Jonathan Leffler - But could I open it RDWR and just poll it to see when another process actually has written to it? That shouldn't cause deadlocks, right? – Zxaos Feb 24, 2009 at 4:46 Yes, and this should block in select(). No such solutions for the writing end of a pipe, probably the best thing you could do is open the writing end after you've received some prompt from the Java program – jpalecek Feb 24, 2009 at 9:41

Thanks for contributing an answer to Stack Overflow!

  • Please be sure to answer the question. Provide details and share your research!

But avoid

  • Asking for help, clarification, or responding to other answers.
  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.