Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
4answers
7k views

Create a temporary FIFO (named pipe) in Python?

How can you create a temporary FIFO (named pipe) in Python? This should work: import tempfile temp_file_name = mktemp() os.mkfifo(temp_file_name) open(temp_file_name, os.O_WRONLY) # ... some ...
4
votes
1answer
163 views

How do I properly write to FIFOs in python?

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 : >>> ...
3
votes
2answers
443 views

Python and FIFOs

I was trying to understand FIFOs using Python under linux and I found a strange behavior i don't understand. The following is fifoserver.py import sys import time def readline(f): s = ...
3
votes
2answers
779 views

Example for using Python Twisted with File Descriptors

I'm looking to use twisted to control communication across Linux pipes (os.pipe()) and fifos (os.mkfifo()) between a master process and a set of slave processes. While I'm positive tat it's possible ...
3
votes
2answers
1k views

Named pipe similar to “mkfifo” creation, but bidirectional

I'd like to create a named pipe, like the one created by "mkfifo", but one caveat. I want the pipe to be bidirectional. That is, I want process A to write to the fifo, and process B to read from it, ...
3
votes
5answers
193 views

feeding data to C API expecting a filename

I'm writing a straightforward C program on Linux and wish to use an existing library's API which expects data from a file. I must feed it a file name as a const char*. But i have data, just like ...
2
votes
2answers
415 views

How do I use exec 3>myfifo in a script, and not have echo foo>&3 close the pipe?

Why can't I use exec 3>myfifo in the same manner in a bash script as I can in my terminal? I'm using named pipes to turn an awk filter into a simple "server", that should be able to take text input ...
2
votes
1answer
465 views

Insert data into mysql table data from a FIFO pipe in linux continuously

I want to insert data from a fifo pipe into a mysql table, right now for me, this is possible until the fifo pipe process is killed, the command : $>mkfifo /path/to/pipe $>sudo chmod 666 ...
1
vote
2answers
143 views

Proper FIFO client-server connection

I am trying to write simple client and server C programs, communicating with each other in separate terminals. The server has to create a public fifo and wait for the client. Meanwhile the client is ...
1
vote
1answer
62 views

Bash Script Statement

I'm trying to figure out what a line means in a bash script file: mkfifo mypipe nc -l 12345 < mypipe | /home/myprogram > mypipe Here's what I understand: nc -l part creates a server-side like ...
1
vote
1answer
49 views

Why does my program hang when opening a mkfifo-ed pipe?

I use mkfifo to create a named pipe. Then I use the following program to open it. However, the program hangs at the line "fopen". Is there something wrong here? int main(int argc, char** argv) { ...
1
vote
3answers
928 views

python os.mkfifo() for Windows

Short version (if you can answer the short version it does the job for me, the rest is mainly for the benefit of other people with a similar task): In python in Windows, I want to create 2 file ...
0
votes
1answer
80 views

FIFO server program

The above program i have typed in linux. It basically has to connect a client and server in separate terminals. But when i run them in the correct order, i.e Compile server -> run server Compile ...
0
votes
1answer
95 views

how to use a persistent named pipe under linux?

Use named pipe some times very convenient, such as mkfifo file.fifo. but the file.fifo is not persistent, if the computer restarted or the writer process crashed, I can get nothing from the pipe. so, ...
0
votes
2answers
123 views

Is there a function like WaitNamedPipe or a way to realize this on C++/linux? (so the process is not blocking on the pipe for infinite time)

I have a named pipe in my C++ program. A childprocess writes a value in it and the parent process reads it. I created the pipe by mkfifo and all operations are blocking (fifo cannot be opened for ...
0
votes
3answers
111 views

Syntax to Redirect to Input/Output to in C (UNIX)

I am trying to find the syntax that will let me redirect standard input output toward a named pipe after using the mkfifo() function and creating a child process using fork. Which man page should I ...
0
votes
2answers
342 views

Having a trouble with opening FIFO in C

I'm having a trouble in opening FIFOs in C.. first I created them using mkfifo() function with permission : 0777, and when I tried to open them, it succeeded in opening the first FIFO only, then the ...