Something very strange is happening when I open FIFOs(named pipes) in python for writing. Consider what happens when try to I open a FIFO for writing in a interactive interpreter :

>>> fifo_write = open('fifo', 'w')

The above line blocks until I open another interpreter and type the following:

>>> fifo_read = open('fifo', 'r')
>>> fifo.read()

I don't understand why I had to wait for the pipe to be opened for reading, but lets skip that. The above code will block until there's data available as expected. However lets say I go back to the first interpreter window and type:

>>> fifo_write.write("some testing data\n")
>>> fifo_write.flush()

The expected behavior is that on the second interpreter the call to 'read' will return and we will see the data on the screen, except that is not happening to me. If I call os.fsync the following happens:

>>> import os
>>> fifo_write.flush()
>>> os.fsync(fifo_write.fileno())
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
OSError: [Errno 22] Invalid argument

And the fifo reader is still waiting. However, if I call 'fifo_writer.close()' then the data is flushed. If I use a shell command to feed the pipe:

$ echo "some data" > fifo

then the reader output is :

>>> fifo_read.read()
'some data\n'

Has anyone experienced this? If so is there a workaround for it? My current OS is Ubuntu 11.04 with linux 2.6.38.

Thanks in advance

link|improve this question

How did you create the fifo? – OneOfOne Aug 13 '11 at 2:22
use either "os.mkfifo('fifo')" or in shell "mkfifo fifo" – Thiado de Arruda Aug 13 '11 at 2:24
fsync() on a FIFO makes no sense; none of the data is stored on disc (except maybe in swap in very strange situations). – Ignacio Vazquez-Abrams Aug 13 '11 at 2:24
feedback

1 Answer

up vote 3 down vote accepted

read() doesn't return until it reaches EOF.

link|improve this answer
Thanks for that, adding an argument to the 'read' method solved the problem, still needed to flush though.. – Thiado de Arruda Aug 13 '11 at 2:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.