Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
1answer
906 views

Python: why does a read-only open of a named pipe block?

This is purely an academic question rather than one which is blocking any coding effort on my part. I've noticed a couple of oddities when dealing with named pipes (FIFOs) under various flavors of ...
9
votes
5answers
7k views

Most elegant way to implement a circular list (FIFO)

What is the most elegant and simple way to implement a circular list, FIFO style? I'm looking for a solution that doesn't resort to hacks like catching exceptions. No, this is not for homework. For ...
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 ...
7
votes
6answers
3k views

Which STL container should I use for a FIFO?

Which STL container would fit my needs best? I basically have a 10 elements wide container in which I continually push_back new elements while pop_front ing the oldest element (about a million time). ...
7
votes
1answer
8k views

How do I perform a non-blocking fopen on a named pipe (mkfifo)?

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 ...
6
votes
2answers
193 views

Prevent FIFO from closing / reuse closed FIFO

Consider the following scenario: a FIFO named test is created. In one terminal window (A) I run cat <test and in another (B) cat >test. It is now possible to write in window B and get the ...
6
votes
11answers
4k views

Efficient data transfer from Java to C++ on windows

I'm looking to stream lots of data (up to ~1 Gbit) from Java to a C++ application (both on the same machine). I'm currently using a FIFO on Linux but need a Windows solution too. The most ...
5
votes
2answers
144 views

Unix FIFO in go?

Is there any way to create a unix FIFO with Go language? There is no Mkfifo, nor Mknod in os package, though I expected named FIFOs are largely used in posix OS's. In fact, there is a function for ...
5
votes
2answers
1k views

forcing a program to flush its standard output when redirected

i have a closed source program that prints output to standard output. i need to parse the output. so i redirect the output to a fifo (from which i can read in the parent process that forks and execs ...
4
votes
5answers
507 views

Linux non-blocking fifo (on demand logging)

I like to log a programs output 'on demand'. Eg. the output is logged to the terminal, but another process can hook on the current output at any time. The classic way would be: myprogram ...
4
votes
1answer
164 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 : >>> ...
4
votes
3answers
236 views

a text file circular buffer in python

I need a python script implementing a circular buffer for rows in a text file limited to N rows like this: row 1 -> pop row 2 row 3 | | push -> row N ...
4
votes
3answers
367 views

What's the most efficient way of implementing a fixed-size non-blocking queue in Java?

I am trying to find (or write) a Java class that represents a fixed-size, non-blocking, auto-discarding FIFO queue. (e.g. if the queue has a capacity of 100, putting item 101 removes item 1 then ...
4
votes
3answers
1k views

optimistic lock-free FIFO queues impl?

is there any C++ implementation (source codes) of "optmistic approach to lock-free FIFO queues" algorithm?
4
votes
5answers
852 views

FIFO list (moving elements) [C++]

Good evening, people! I'm trying to solve a rather simple problem, but.. well, it seems that I can't. :) The idea is that I have a FIFO list (FIFO queue) with n elements and it's given a value, k (k ...
3
votes
4answers
88 views

C: How to redirect named pipe to stdin/out of child process

Basically I want to do in C (and without buffering) the same as this bash-script: #!/bin/sh cat ./fifo_in | myprogram > ./fifo_out In other words I want to exec "myprogram" and redirect its ...
3
votes
4answers
129 views

Detect when a fifo is opened from a program

I have a situation where I need to check if the other side of a fifo has opened it, however I can't use a open because otherwise the program will start doing stuff. Why I have to do this: I have a ...
3
votes
2answers
159 views

Haskell: FIFO monad

Is there a standard (or at least commonly used) package with a monad for FIFO queues? I read about this one in a paper a while ago, and I've used it a couple times, but I'd like to stop ...
3
votes
3answers
415 views

How do you design FIFO queue with variable data size?

I'm just working on the FIFO queue (the simple one, just what's pushed first, pops at first) with the variable data size but I'm not sure with the way I'm designing it. The data types I will store ...
3
votes
2answers
444 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
5answers
655 views

FIFO implementation

While implementing a FIFO I have used the following structure: struct Node { T info_; Node* link_; Node(T info, Node* link=0): info_(info), link_(link) {} }; I think this a well ...
3
votes
3answers
645 views

Fober et al Lock-Free FIFO Queue: multiple consumers and producers?

I was wondering if the fifo queue presented in Fober et al's paper http://nedko.arnaudov.name/soft/L17_Fober.pdf was a multiple consumer and produce fifo queue. If not, which is the best documented ...
3
votes
2answers
863 views

Python (Twisted) - reading from fifo and sending read data to multiple protocols

Im trying to write some kind of multi protocol bot (jabber/irc) that would read messages from fifo file (one liners mostly) and then send them to irc channel and jabber contacts. So far, I managed to ...
3
votes
5answers
918 views

Can't write to FIFO file mouted via NFS

I'm trying to write to FIFO file locate on NFS mount and it blocks. What could be the problem? My /etc/export: /tmp/test/ 10.0.0.0/24(rw,no_root_squash,async) ls /tmp/test on NFS server and client ...
2
votes
2answers
90 views

Java FIFO Queue with spill-over to disk

I'm working/preparing an application that is based on a producer/consumer model. In my case there will be one producer which generates several million (non-trivial) tasks, and there will be a ...
2
votes
3answers
205 views

Is there a FIFO stream in Scala?

I'm looking for a FIFO stream in Scala, i.e., something that provides the functionality of immutable.Stream (a stream that can be finite and memorizes the elements that have already been read) ...
2
votes
1answer
102 views

php include directive from fifo (named pipe) files

I was looking to find a way to use "include" statement using a fifo (named pipe) file created with posix_mkfifo. As my expectations were high I got very depressed to see the page blocked, waiting for ...
2
votes
3answers
196 views

O_ASYNC stops generating SIGIO

This is a little long... For starters I'm on Linux 2.6.33, gcc 4.4.4. I've written a small program, which creates a named pipe and reads it, until it sees a certain string, whereupon it gets rid of ...
2
votes
3answers
393 views

How can I make a Java PriorityBlockingQueue that preserves FIFO behavior?

I'm trying to create a Priority Blocking Queue in Java that maintains FIFO order for elements with the same priority. The Oracle doc provides some help with that, but I'm still very tangled up. I ...
2
votes
1answer
482 views

Nonblocking/asynchronous fifo/named pipe in shell/filesystem?

Is there a way to create non blocking/asynchronous named pipe or something similar in shell? So that programs could place lines in it, those lines would stay in ram, and when some program could read ...
2
votes
3answers
112 views

Combining sorted files with fifos

I have some sorted, gzipped files in a directory. How do I combine some of them into another sorted, gzipped file? Right now I'm using explicit fifos. Is there a way to do it in bash without? I'm a ...
2
votes
1answer
107 views

Cyclic buffer with readers

I need a cyclic buffer implementation that supports seekable readers. My use case: In my code, I collect log messages. Eventually, the user might visit a page which shows them nicely formatted. To ...
2
votes
1answer
657 views

Read/Write struct to fifo in C

I'm trying to pass structs between processes using named pipes. I got stuck at trying to open the pipe non-blocking mode. Here's my code for writing to the fifo: void writeUpdate() { // Create ...
2
votes
2answers
55 views

System.Collections best choice for my scenario

I want a collection for storing two types: string and DateTime. The string should be the key of my collection and the DateTime is the insertion time of it into the collection. I want to remove items ...
2
votes
1answer
343 views

How to guarantee FIFO execution order in a ThreadPoolExecutor

I create a ThreadPoolExecutor with this line of code : private ExecutorService executor = new ThreadPoolExecutor(5, 10, 120, TimeUnit.SECONDS, new ArrayBlockingQueue<Runnable>(20, true)); ...
2
votes
1answer
125 views

Strategy for Caching Previous Searches (ASP.NET)

I have an ASP.NET MVC 2 Web Application (.NET 4, C#), where user's can search for locations. The page is implemented with an auto-complete box, similar to many websites. (Google, YouTube, etc) Now, ...
2
votes
2answers
298 views

How to implement a FIFO queue that supports namespaces

I'm using the following approach to handle a FIFO queue based on Google App Engine db.Model (see this question). from google.appengine.ext import db from google.appengine.ext import webapp from ...
2
votes
3answers
756 views

Implementing a FIFO queue in C (not C++ nor C#)

For an embedded application, I am trying to implement a first-in, first-out (FIFO) queue of structs using ANSI C. The most straightforward way to do this seems to be by implementing a linked-list, so ...
2
votes
3answers
504 views

Can a C# blocking FIFO queue leak messages?

I'm working on an academic open source project and now I need to create a fast blocking FIFO queue in C#. My first implementation simply wrapped a synchronized queue (w/dynamic expansion) within a ...
2
votes
2answers
324 views

I Have a problem with 2 FIFO for read and write in each

The attached code should allow the communication between 2 terminals. The communication is made through 2 FIFO, which are created in the current directory. The program has to open the 2 fifos and the ...
2
votes
2answers
945 views

How can I manage a FIFO-queue in an database with SQL?

I have two tables in my database, one for In and one for Out. They have two columns, Quantity and Price. How can I write a SQL-query that selects the correct price? In example: If I have 3 items in ...
2
votes
5answers
233 views

FIFOs implementation

Consider the following code: writer.c mkfifo("/tmp/myfifo", 0660); int fd = open("/tmp/myfifo", O_WRONLY); char *foo, *bar; ... write(fd, foo, strlen(foo)*sizeof(char)); write(fd, bar, ...
2
votes
7answers
848 views

Data in linux FIFO seems lost

I have a bash script which wants to do some work in parallel, I did this by putting each job in an subshell which is run in the background. While the number of jobs running simultaneously should ...
2
votes
1answer
568 views

How to read/write from erlang to a named pipe?

I need my erlang application to read and write through a named pipe. Opening the named pipe as a file will fail with eisdir. I wrote the following module, but it is fragile and feels wrong in many ...
2
votes
1answer
85 views

*nix: “echo 'start working' > /etc/.example” : how is this implemented?

Say someone executes the following in a terminal: echo 'start working' > /etc/.example and when this is executed, the example program would "start working." On UNIX(-like) systems, how would ...
2
votes
1answer
181 views

Writing .Ts file 'on demand' (inotify ?…)

I have a mediaplayer that can only read samba shared files. I would like to play http stream (from my dreambox for instance). My idea is to share a folder on my linux. In this share, I will put a ...
2
votes
0answers
679 views

Can Sql Server BULK INSERT read from a named pipe/fifo?

Is it possible for BULK INSERT/bcp to read from a named pipe, fifo-style? That is, rather than reading from a real text file, can BULK INSERT/bcp be made to read from a named pipe which is on the ...
2
votes
2answers
664 views

threadsafe single-consumer, single-producer FIFO on embedded system

I have a TI DSP (TMS320F28235 if anyone cares) that I need to implement a FIFO for queueing information between main-loop code and an interrupt. High-speed execution for this queue is very critical ...
2
votes
2answers
120 views

Capturing program output

i am making a small library that will basically capture the standard outputs of a program (such as printf()) into a separate process/thread...this process should then perform certain tasks (lets say ...
2
votes
5answers
443 views

What is the correct term for a fixed sized FIFO queue?

What is the correct name for the following data structure? It is: A queue of fixed size New elements are added to the start Whenever the queue gets above a certain size a number of elements are ...

1 2 3