Differences between revisions 1 and 16 (spanning 15 versions)
Revision 1 as of 2007-09-09 01:04:23
Size: 214
Editor: irc2samus
Comment:
Revision 16 as of 2013-12-21 20:51:03
Size: 2397
Editor: geirha
Comment: Doesn't really work ...
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
[[Anchor(faq85)]]
== How do I prevent a named pipe from closing? ==
<<Anchor(faq85)>>
== How to write several times to a fifo without having to reopen it? ==
In the general case, you'll open a new FileDescriptor (FD) pointing to the fifo, and write through that. For simple cases, it may be possible to skip that step.
Line 4: Line 5:
We've found two ways so far: The most basic use of NamedPipes is:
Line 6: Line 7:
 * Using a loop
  {{{
  while cat myfifo; do :; done}}}
{{{
mkfifo myfifo
cat < myfifo &
echo 'a' > myfifo
}}}
Line 10: Line 13:
 * Using tail
  {{{
  tail -n +1 -f myfifo}}}
This works, but `cat` dies after reading one line. (In fact, what happens is when the named pipe is closed by all the ''writers'', this signals an end of file condition for the ''reader''. So `cat`, the reader, terminates because it saw the end of its input.)

What if we want to write several times to the pipe without having to restart the reader? We have to arrange for all our data to be sent without opening and closing the pipe multiple times.

If the commands are consecutive, they can be grouped:

{{{
cat < myfifo &
{ echo 'a'; echo 'b'; echo 'c'; } > myfifo
}}}

The use of `tail -f` instead of `cat` can be an option:

{{{
tail -f myfifo &

echo 'a' > myfifo
# Doesn't die
echo 'b' > myfifo
echo 'c' > myfifo
}}}

The problem here is that the process `tail` doesn't die, even if the named pipe is deleted. In a script this is not a problem as you can kill `tail` on exit. There is also the --pid option to tail that can prove useful in some cases.

But if they can't be grouped for some reason or if the use of` tail` is not an option, a better way is to assign a file descriptor to the pipe and write there:

{{{
cat < myfifo &

# assigning fd 3 to the pipe
exec 3>myfifo

# writing to fd 3 instead of reopening the pipe
echo 'a' >&3
echo 'b' >&3
echo 'c' >&3

# closing the fd
exec 3>&-
}}}

Closing the FD causes the pipe's reader to receive the end of file indication.

The file descriptor solution above works well to write to the fifo from a single shell, but it does not scale if many processes need to write to the fifo.
In this case, a solution is to keep the fifo opened by a writer:

{{{
mkfifo myfifo

# keep the fifo opened using a writer
cat > myfifo
}}}

Open a reader in another shell:

{{{
cat myfifo
}}}

Then use as many shell as you want to send data to the reader:

{{{
echo something > myfifo
# reader does not die
}}}

To end the reader, go back to the 1st cat (writer) and send it an EOF using CTRL-D (or terminate it using CTRL-C).

How to write several times to a fifo without having to reopen it?

In the general case, you'll open a new FileDescriptor (FD) pointing to the fifo, and write through that. For simple cases, it may be possible to skip that step.

The most basic use of NamedPipes is:

mkfifo myfifo
cat < myfifo &
echo 'a' > myfifo

This works, but cat dies after reading one line. (In fact, what happens is when the named pipe is closed by all the writers, this signals an end of file condition for the reader. So cat, the reader, terminates because it saw the end of its input.)

What if we want to write several times to the pipe without having to restart the reader? We have to arrange for all our data to be sent without opening and closing the pipe multiple times.

If the commands are consecutive, they can be grouped:

cat < myfifo &
{ echo 'a'; echo 'b'; echo 'c'; } > myfifo

The use of tail -f instead of cat can be an option:

tail -f myfifo &

echo 'a' > myfifo
# Doesn't die
echo 'b' > myfifo
echo 'c' > myfifo

The problem here is that the process tail doesn't die, even if the named pipe is deleted. In a script this is not a problem as you can kill tail on exit. There is also the --pid option to tail that can prove useful in some cases.

But if they can't be grouped for some reason or if the use of tail is not an option, a better way is to assign a file descriptor to the pipe and write there:

cat < myfifo &

# assigning fd 3 to the pipe
exec 3>myfifo

# writing to fd 3 instead of reopening the pipe
echo 'a' >&3
echo 'b' >&3
echo 'c' >&3

# closing the fd
exec 3>&-

Closing the FD causes the pipe's reader to receive the end of file indication.

The file descriptor solution above works well to write to the fifo from a single shell, but it does not scale if many processes need to write to the fifo. In this case, a solution is to keep the fifo opened by a writer:

mkfifo myfifo

# keep the fifo opened using a writer
cat > myfifo

Open a reader in another shell:

cat myfifo

Then use as many shell as you want to send data to the reader:

echo something > myfifo
# reader does not die

To end the reader, go back to the 1st cat (writer) and send it an EOF using CTRL-D (or terminate it using CTRL-C).

BashFAQ/085 (last edited 2016-10-17 20:45:47 by 163-172-21-117)