Tagged Questions
IPC stands for Inter-process Communication and represents a set of methods for exchanging data and messages between threads and processes.
26
votes
9answers
14k views
What is the best choice for .net inter-process communication?
Should I use Named Pipes, or .NET Remoting to communicate with a running process on my machine?
22
votes
7answers
23k views
Interprocess communication for Windows in C# (.NET 2.0)
I've never had to do IPC on Windows before. Currently I'm developing a pair of programs, a standard GUI/CLI app and a windows service. The app has to tell the service what to do. So, assuming the ...
20
votes
13answers
6k views
cross platform IPC
I'm looking for suggestions on possible IPC mechanisms that are:
cross platform (WIN32 and Linux at least)
Simple to implement in C++ as well as the most common scripting languages (perl, ruby ...
19
votes
4answers
657 views
How to transfer files between Android applications running on the same device?
I am writing an Android application that interfaces with a RESTful service. This web service essentially fronts a file system, and provides metadata as well CRUD access to the files. My application ...
18
votes
6answers
15k views
IPC performance: Named Pipe vs Socket
Everywhere seems to say named pipes are fast whereas sockets are slow for ipc. How much greater is the speed advantage of named pipes vs local sockets on linux? I would prefer to use sockets because ...
17
votes
3answers
4k views
On localhost, how to pick a free port number?
I try to play with inter process communication and since I could not figure out how to use named pipes under Windows I thought I'll use network sockets. Everything happens locally, server is able to ...
17
votes
7answers
17k views
IPC Mechanisms in C# - Usage and Best Practices
I have used IPC in win32 code a while ago. [Critical sections, events & semaphores]
How is the scene in .NET enviroment?
Are there any tutorial explaining all available options and when to use ...
14
votes
8answers
4k views
fastest (low latency) method for Inter Process Communication between Java and C/C++
I have a Java app, connecting through TCP socket to a "server" developed in C/C++.
both app & server are running on the same machine, a Solaris box (but we're considering migrating to Linux ...
14
votes
6answers
2k views
Fast Cross Platform Inter Process Communication in C++
I'm looking for a way to get two programs to efficiently transmit a large amount of data to each other, which needs to work on Linux and Windows, in C++. The context here is a P2P network program that ...
13
votes
4answers
10k views
Comparing Unix/Linux IPC
Lots of IPCs are offered by unix/linux : Pipes/sockets/shared memory/dbus/message-queues.
I would like to know what are the respective most suitable applications , e.g. what are the places where ...
12
votes
1answer
542 views
Android ContentProvider Performance
I'm curious if anyone has done any performance testing on querying a ContentProvider via ContentResolver vs querying a SQLiteDatabase object in the same process. I'm guessing that a ContentResolver ...
12
votes
5answers
4k views
Which Linux IPC technique to use?
We are still in the design-phase of our project but we are thinking of having three separate processes on an embedded Linux kernel. One of the processes with be a communications module which handles ...
11
votes
2answers
123 views
Killing forked child kills parent?
I am into this weird behaviour where I have my main program and a forked child. They are piped like this(the numbers are file descriptors):
___parent___
| | ...
11
votes
4answers
900 views
How to share data between python processes without writing to disk
Helllo,
I would like to share small amounts of data (< 1K) between python and processes. The data is physical pc/104 IO data which changes rapidly and often (24x7x365). There will be a single ...
11
votes
4answers
3k views
How to IPC between PHP clients and a C Daemon Server?
and thanks for taking a look at the question.
The background
I have several machines that continuously spawn multiple (up to 300) PHP console scripts in a very short time frame. These scripts run ...
10
votes
6answers
342 views
How to make a process aware of other processes of the same program
I must write a program that must be aware of another instance of itself running on that machine, and communicate with it, then die. I want to know if there is a canonical way of doing that in Linux.
...
10
votes
13answers
977 views
Designing this algorithm a better way?
I am working a much more complex version of this (with vehicle moving in both X and Y directions)
I made this example to get ideas on better ways to accomplish this.
I have a vehicle moving in the ...
10
votes
5answers
2k views
fast-ish python/jython IPC?
All I want to do is make some RPC calls over sockets. I have a server that does backendish stuff running jython 2.5. I need to make some calls from a frontend server running Django on CPython. I've ...
9
votes
3answers
1k views
Best way to do interprocess communication on Mac OS X
I'm looking at building a Cocoa application on the Mac with a back-end daemon process (really just a mostly-headless Cocoa app, probably), along with 0 or more "client" applications running locally ...
8
votes
2answers
79 views
Why is it possible to write a boolean array to a parcel but not a boolean?
In the documentation for the Parcel it states a method exists
public final void writeBooleanArray (boolean[] val)
But there is no method for writeBoolean(boolean val)
There also exists:
public ...
8
votes
2answers
107 views
Configuring SELinux permissions on (SVS-V) IPC Semaphores
I have a bunch of programs which use IPC Semaphores to interact (semget).
One of the programs is an Apache module, which runs in (some sort of) restricted SELinux context (which I don't understand ...
8
votes
5answers
301 views
register callback in one application to be retrieved in another
gcc 4.6.0 c89
I have type of client server application. The server some code in an event loop that will wait for an event from the client.
This is not a client server that will be using UDP/TCP ...
8
votes
3answers
880 views
Is Boost IPC any good?
My default choice for cross-platform IPC would be boost, but I saw it criticised in two different forums when I asked about it and this concerned me. Perhaps this was simply a coincidence, so what are ...
8
votes
2answers
974 views
Portable C++ library for IPC (processes and shared memory), Boost vs ACE vs Poco?
I need a portable C++ library for doing IPC. I used fork() and SysV shared memory until now but this limits me to Linux/Unix. I found out that there are 3 major C++ libraries that offer a portable ...
8
votes
4answers
521 views
can a python script know that another instance of the same script is running… and then talk to it?
I'd like to prevent multiple instances of the same long-running python command-line script from running at the same time, and I'd like the new instance to be able to send data to the original instance ...
8
votes
5answers
5k views
Best way for interprocess communication in C++
I have two processes one will query other for data.There will be huge amount of queries in a limited time (10000 per second) and data (>100 mb) will be transferred per second.Type of data will be an ...
8
votes
4answers
5k views
Sleep a thread until an event is attended in another thread
I have two threads in an Android application, one is the view thread, and the other a worker thread. What i want to do is to sleep the worker thread until the view thread terminates the handling of ...
7
votes
4answers
716 views
Java TCP/IP Socket Latency - stuck at 50 μs (microseconds)? (used for Java IPC)
We have been profiling and profiling our application to get reduce latency as much as possible. Our application consists of 3 separate Java processes, all running on the same server, which are ...
7
votes
3answers
351 views
When messages get bigger, IpcChannel Remoting gets slower
I'm evaluating various interprocess communication methods for a couple of .NET 2.0 processes residing on the same machine. Naturally, .Net Remoting is a candidate, and theoretically the fastest ...
7
votes
9answers
792 views
Inter-process communication
I have two applications: X and Y. X is the main application and it handles a lot of XML files. It has a history of more than 10 years and half a dozen techniques have been used to store, process and ...
7
votes
3answers
2k views
Is it better to use TThread's “Synchronize” or use Window Messages for IPC between main and child thread?
I have a rather simple multi-threaded VCL gui application written with Delphi 2007. I do some processing in multiple child threads (up to 16 concurrent) that need to update a grid control on my main ...
7
votes
8answers
8k views
How do I run a Perl script from within a Perl script?
I've got a Perl script that needs to execute another Perl script. This second script can be executed directly on the command line, but I need to execute it from within my first program. I'll need to ...
7
votes
5answers
7k views
What is the best approach for IPC between Java and C++?
I would like to implement a robust IPC solution between a single JVM app (one process, potentially multiple threads) and a native C++ application that is linked to a C++ dll. The dll may or may not ...
6
votes
1answer
71 views
Isolating and multiply instantiating a C library in-process
We have a C library (.lib windows & .a linux) that only allows creation of a singleton and that also doesn't shut down properly (memory leaked and threads left alive) having been once ...
6
votes
6answers
355 views
Simple IPC between C++ and Python (cross platform)
I have a C++ process running in the background that will be generating 'events' infrequently that a Python process running on the same box will need to pick up.
The code on the C side needs to be as ...
6
votes
2answers
275 views
In Node.js, how do I make one server call a function on another server?
Let's say I have 2 web servers. Both of them just installed Node.js and is running a website (using Express). Pretty basic stuff.
How can Server-A tell Server-B to execute a function? (inside ...
6
votes
2answers
269 views
How to implement a distributed semaphore?
I have a limited set of resources that I want to share between multiple processes than run on multiple servers. I guess what I need could be called a distributed semaphore.
I have found an old Perl ...
6
votes
1answer
616 views
Can't get ZeroMQ python bindings to receive messages over IPC
I'm trying to achieve PUB/SUB over IPC. If I changed the code below so that the subscriber binds to "tcp://*:5000" and the publisher connects to "tcp://localhost:5000" it works, but I can't get it to ...
6
votes
1answer
2k views
how can I notify a running activity from a broadcast receiver?
I have an activity, it needs to response to a broadcast event.
Since an activity can not be a broadcast receiver at the same time,
I made a broadcast receiver.
My question is: how can I notify the ...
6
votes
2answers
651 views
Does Parallel::ForkManager() module support synchronization on global variables?
I'm very new to this Parallel::ForkManager module in Perl and it has a lot of credits, so I think it support what I need and I just haven't figured out yet.
What i need to do is in each child ...
6
votes
5answers
913 views
6
votes
4answers
2k views
System V shared memory in Python?
How can I make use of the shmat(), shmdt(), shmctl(), shmget() calls from Python? Are they hidden somewhere in the standard library?
Update0
I'm after System V bindings that can be found in the ...
6
votes
7answers
2k views
Call unmanged Code from C# - returning a struct with arrays
[EDIT] I changed the source as suggested by Stephen Martin (highlighted in bold). And added the C++ source code as well.
Hi,
I'd like to call an unmanaged function in a self-written C++ dll. This ...
6
votes
3answers
2k views
Are message queues obsolete in linux?
I've been playing with message queues (System V, but POSIX should be ok too) in Linux recently and they seem perfect for my application, but after reading The Art of Unix Programming I'm not sure if ...
6
votes
8answers
1k views
Cross-platform, cross-language messaging system?
I'm developing a set of applications that work together to create a system for processing metering data. There's several reasons I want to have them loosely coupled and the system should be extensible ...
6
votes
6answers
5k views
How can I launch an instance of an application using Python?
I am creating a Python script where it does a bunch of tasks and one of those tasks is to launch and open an instance of Excel. What is the ideal way of accomplishing that in my script?
6
votes
1answer
1k views
Why are pipes considered dangerous to use in Windows/unix/linux?
Why are pipes considered dangerous to use? What can be done to avoid these security issues?
I'm mostly interested in Windows, but if you have other OS information, please provide.
6
votes
3answers
2k views
How do you communicate between Windows Vista Session 0 and Desktop?
In prior versions of Windows before Vista you could have a Windows Service interact with the current logged in desktop user to easy display information on the screen from the service. In Windows Vista ...
5
votes
2answers
162 views
what are the ipc libs to communicate between a python and an haskell process?
I am considering the general architecture of my next project. For the back-end, haskell looks like a very good fit, but not for the front-end, where python would be better and likely easier to code. ...
5
votes
1answer
139 views
Lowest latency notification method between process under Linux
I'm looking for the lowest latency IPC that allow to put one process to sleep and allow other process to wake it.
I'm looking for the lowest latency method. Some possible methods so far:
Writing a ...