active questions tagged ipc - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T13:42:51Zhttp://stackoverflow.com/feeds/tag/ipchttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1887134/can-a-silverlight-client-talk-to-a-c-server0Can a Silverlight client talk to a C++ server?Dimitri C.2009-12-11T10:20:45Z2009-12-11T11:30:36Z
<p>Our company wants to transform our current user interface to a web client. We are considering to use Microsoft's Silverlight for this, but it will need to communicate with our legacy C++ server application (native C++, not C++/CLI). I am wondering whether it would be feasible to write such an IPC library by hand, our otherwise whether there are ready-made IPC protocols available both as a C++ and a .NET library.</p>
<p><b>Update</b>: I emphasize the programming languages used because they determine which libraries can be used. For example, a library written for .NET's intermediate language cannot be used in a native C++ application.</p>
http://stackoverflow.com/questions/1875783/is-mpi-good-for-high-volume-soft-realtime-ipc0Is MPI good for high-volume soft-realtime IPC ? Hassan Syed2009-12-09T18:18:36Z2009-12-09T18:56:23Z
<p>If I had a single server and I had two process types A(Many processes many threads) and B(one process n-threads with n-cpu's), and I wanted to send a LARGE amount of one-way messages from A to B. Is MPI a better implementation for this than a custom implementation using:</p>
<ol>
<li>Unix Domain Sockets</li>
<li>Windows Named Pipes</li>
<li>Shared Memory</li>
</ol>
<p>I was thinking of writing my own library based on 1 and 2, and I am also wondering if 3 is better since the shared memory would require locking.</p>
<p>Process A provides external services so B's resource usage and the message passing in general needs to consume as little resources as possible, and A could be implemented in both blocking or non-blocking when it sends messages. Resource usage of B and the message passing needs to scale linearly with A's usage.</p>
<p>I eventually need broadcasting capability between machines as well. Probably for process B. </p>
<p>My parting question is: is MPI (openMPI in particular) a good library for this, and does it use the most optimal kernel primitives on various operating systems.</p>
http://stackoverflow.com/questions/1862655/erlang-documentation-smp-single-node-and-multi-node-per-machine-or-per-applicati1Erlang Documentation/SMP: single-node and multi-node per machine or per application, and the confusion that may follow.Hassan Syed2009-12-07T20:24:14Z2009-12-09T14:01:39Z
<p>I'm studying Erlang's process model at the moment. I have hit a snag in a <a href="http://www.erlang.org/euc/08/euc%5Fsmp.pdf" rel="nofollow">tech report</a> (section 3, paragraph 2) on Erlang:</p>
<blockquote>
<p>This explains why it in some cases can be more efficient to run <strong>several SMP VM's
with one scheduler each instead on one SMP VM with several schedulers</strong>. Of course
the running of several VM's require that the application can run in many parallel tasks
which has no or very little communication with each other.</p>
</blockquote>
<p>Now this paragraph is confusing me; I can see the uni-process multiple scheduler scenario, but I am failing to see multiple processes with a single scheduler; Presumably each process would have a <strong>different node name</strong>, and this would mean a certain application, without modification, cannot be used with this model; <strong>the virtue of not requiring modification</strong> has been mentioned as a key feature of SMP in the report. <strong>If the multiple processes have the same node names, than performance would be disastrous due to inter-Erlang-process messaging storms -- this assume the use of in-memory amnesia</strong>. Is there some process model that is not introduced in the article and that I am missing here ? </p>
<p>What is the author trying say here ? is he trying to suggest that an application would have to be rewritten (to take multiple unique node-names into account) for the multi-process single-scheduler case ? </p>
<p>-- edit 1: Clarification of Source of Problem --</p>
<p>The question has been answered through discussion; the following is an outline of the trouble I had.</p>
<p>The issue for this question has been that the documentation, as I recall, does not touch on a scenario of running multiple Erlang emulators per physical machine -- it has always been shown that the emulator represents your physical machine (in industrial usage); also, the scenario of having to explicitly partition a program for computational efficiency has never been considered. This sudden introduction has been the source of my woe. </p>
<p>The convention is still biased towards creating LOTS of processes and that the future holds many improvements for the SMP emulator for Erlang, and this means that single node per machine is still a very viable option assuming favourable application design.</p>
http://stackoverflow.com/questions/1596803/how-do-i-do-a-non-blocking-ipc-read-on-windows2How do I do a non-blocking IPC read on Windows?Michael Carman2009-10-20T19:26:56Z2009-12-08T23:38:35Z
<p>I have a Perl script that uses an external tool (cleartool) to gather information about a list of files. I want to use IPC to avoid spawning a new process for each file:</p>
<pre><code>use IPC::Open2;
my ($cin, $cout);
my $child = open2($cout, $cin, 'cleartool');
</code></pre>
<p>Commands that return single-lines work well. e.g.</p>
<pre><code>print $cin "describe -short $file\n";
my $description = <$cout>;
</code></pre>
<p>Commands that return multiple lines have me at a dead end for how to consume the entire response without getting hung up by a blocking read:</p>
<pre><code>print $cin "lshistory $file\n";
# read and process $cout...
</code></pre>
<p>I've tried to set the filehandle for non-blocking reads via <code>fcntl</code>:</p>
<pre><code>use Fcntl;
my $flags = '';
fcntl($cout, F_GETFL, $flags);
$flags |= O_NONBLOCK;
fcntl($cout, F_SETFL, $flags);
</code></pre>
<p>but Fcntl dies with the message "Your vendor has not defined Fcntl macro F_GETFL."</p>
<p>I've tried using IO::Handle to set <code>$cout->blocking(0)</code> but that fails (it returns <code>undef</code> and sets <code>$!</code> to "Unknown error").</p>
<p>I've tried to use <code>select</code> to determine if there's data available before attempting to read:</p>
<pre><code>my $rfd = '';
vec($rfd, fileno($cout), 1) = 1;
while (select($rfd, undef, undef, 0) >= 0) {
my $n = read($cout, $buffer, 1024);
print "Read $n bytes\n";
# do something with $buffer...
}
</code></pre>
<p>but that hangs without ever reading anything. Does anyone know how to make this work (on Windows)?</p>
http://stackoverflow.com/questions/1861242/same-machine-erlang-communication1Same Machine Erlang communicationHassan Syed2009-12-07T16:47:48Z2009-12-08T10:59:39Z
<p>I need an answer to the following question to help understand what approach I should be taking to interface with Erlang. AFAIK Erlang on a SMP UNIX box uses the multi-process approach. In this case it should do same machine IPC.</p>
<ol>
<li>Does Erlang use UNIX domain sockets for UNIX ? </li>
<li><p>Does it use named-pipes for windows ? </p></li>
<li><p>If it does not implement both constructs above -- i.e., no named-pipes for windows; it must have to fallback to sockets, on windows. </p></li>
<li><p>How are the above mentioned principles implemented, do they use message oriented, single-thread per channel, asynchronous constructs or is it something else ? </p></li>
<li><p>If my line of reasoning above is incorrect, does it use a master-child tree and all other processes communicate -- indirectly -- through the master ? </p></li>
</ol>
<p>-- edit 1 --</p>
<p><a href="http://www.erlang.org/doc/man/ei.html" rel="nofollow">Link</a> to the erlang binary format documentation.</p>
<p>The universal concensus is that Unix Domain Sockets outperform <a href="http://stackoverflow.com/questions/257433/postgresql-unix-domain-sockets-vs-tcp-sockets">TCP/IP</a>. I think I will try to extend Erlang to use the better primitives provided. I also strongly suspect that epol and windows IOPC is not used in the TCP/IP event loop -- I will post back once I have audited the code.</p>
<p>Another <a href="http://stackoverflow.com/questions/1478831/erlang-unix-domain-socket-support">SO post</a> that asserts that Erlang indeed, does not support anything other than TCP and UDP.</p>
<p>There are two Erlang libraries for communication <a href="http://www.erlang.org/doc/man/erl%5Fconnect.html" rel="nofollow"><code>Erlang node -> c_node</code></a> and <a href="http://www.erlang.org/doc/man/ei%5Fconnect.html" rel="nofollow"><code>c_node -> Erlang_node</code></a></p>
<p>The Erlang <a href="http://www3.erlang.org/documentation/doc-4.8.1/pdf/sockets-1.0.5.pdf" rel="nofollow">module for sockets</a> allows Unix Dom Sockets to be opened under UNIX.</p>
http://stackoverflow.com/questions/1865361/persistent-qt-local-socket-ipc0Persistent Qt Local Socket IPCHernán2009-12-08T07:53:20Z2009-12-08T07:53:20Z
<p>I'm developing an application that uses IPC between a local server and a client application. There is nothing particular to it, as it's structured like the Qt documentation and examples.</p>
<p>The problem is that the client sends packets frequently and connecting/disconnecting from the server local socket (named pipe on NT) is very slow. So what I'm trying to achieve is a "persistent" connection between the two applications.</p>
<p>The client application connects to the local server (QLocalServer) without any problem:</p>
<pre><code>void IRtsClientImpl::ConnectToServer(const QString& name)
{
connect(_socket, SIGNAL(connected()), this, SIGNAL(connected()));
_blockSize = 0;
_socket->abort();
_socket->connectToServer(name, QIODevice::ReadWrite);
}
</code></pre>
<p>And sends requests also in the traditional Qt manner:</p>
<pre><code>void IRtsClientImpl::SendRequest( quint8 cmd, const QVariant* const param_array,
unsigned int cParams )
{
// Send data through socket
QByteArray hdr(PROTO_BLK_HEADER_PROJ);
QByteArray dataBlock;
QDataStream out(&dataBlock, QIODevice::WriteOnly);
out.setVersion(QDataStream::Qt_4_5);
quint8 command = cmd;
out << blocksize_t(0) // block size
<< hdr // header
<< quint32(PROTO_VERSION_PROJ) // protocol version
<< command // command
<< cParams; // number of valid parameters
for (unsigned int i = 0; i < cParams; ++i)
out << param_array[i];
// Write the current block size
out.device()->seek(0);
out << dataBlock.size() - sizeof(blocksize_t);
_socket->write(dataBlock);
}
</code></pre>
<p>No problem. But the trick resides on the readyRead() signal in the server-side. Here's the current implementation of the readyRead() handling slot:</p>
<pre><code>void IRtsServerImpl::onReadyRead()
{
QDataStream in(_lsock);
in.setVersion(QDataStream::Qt_4_5);
if (_blocksize == 0)
{
qDebug("Bytes Available on socket: %d", _lsock->bytesAvailable());
if (_lsock->bytesAvailable() < sizeof(blocksize_t))
return;
in >> _blocksize;
}
// We need more data?
if (_lsock->bytesAvailable() < _blocksize)
return;
ReadRequest(in);
// Reset
_blocksize = 0;
}
</code></pre>
<p>Without setting <code>_blocksize</code> to zero I could not receive more data, only the first block group (I would expect an entire block to arrive without segmentation since this is through a pipe, but it does not, go figure). I expect that behavior, sure, since the _blocksize does not represent the current stream flow anymore. All right, resetting _blocksize does the trick, but I can't resend another packet from the client without getting an increasing array of bytes on the socket. What I want is to process the request in ReadRequest and receive the next data blocks without resorting to connecting/reconnecting the applications involved.</p>
<p>Maybe I should 'regulate' the rate of the incoming data?</p>
<p>Thank you very much.</p>
http://stackoverflow.com/questions/1848585/what-is-the-best-way-for-two-programs-on-the-same-machine-to-communicate-with-eac1What is the best way for two programs on the same machine to communicate with each otherfbinder2009-12-04T17:53:31Z2009-12-06T11:30:37Z
<p>I need to pass some data (integers) from one (C++) program to another (C#). What is the fastest way to do this?</p>
<p>P.S.: OS: Windows XP</p>
http://stackoverflow.com/questions/1850940/should-i-use-msgsnd-or-mqsend0Should I use msgsnd or mq_send?Steven2009-12-05T02:37:31Z2009-12-05T02:53:50Z
<p>I'm learning Unix IPC, and my book only talks about the msg* family of functions. However while browsing the man pages I learned about the mq_ equivalents. <a href="http://techpubs.sgi.com/library/tpl/cgi-bin/getdoc.cgi/0650/bks/SGI%5FDeveloper/books/T%5FIRIX%5FProg/sgi%5Fhtml/ch06.html" rel="nofollow">http://techpubs.sgi.com/library/tpl/cgi-bin/getdoc.cgi/0650/bks/SGI%5FDeveloper/books/T%5FIRIX%5FProg/sgi%5Fhtml/ch06.html</a> describes some differences between the two, but I'm not sure how much of that is implementation-specific. Are there any compelling reasons to use one family over the other? Is either one "better" than the other?</p>
http://stackoverflow.com/questions/1746075/sockets-vs-named-pipes-for-local-ipc-on-windows0Sockets vs named pipes for local IPC on Windows?sold2009-11-17T01:43:09Z2009-12-04T04:47:38Z
<p>Are there any reasons for favoring named pipes over sockets for local IPC (both using win-api), effectiveness-wize, resource-wize or otherwise, since both behave very much alike (and likely to be abstracted by a similiar interface anyway), in an application that is likely to already use sockets for network purposes anyway?</p>
<p>I can name at least the addressing issue: port numbers for sockets against filenames for pipes. Also, named pipes (AFAIK) won't alert the firewall (block/unblock dialog), although blocked applications can still communicate via sockets locally. Anything else to take into account?</p>
<p>In the case of using sockets, are there any winsock settings/flags that are recomended when using sockets locally?</p>
http://stackoverflow.com/questions/1827205/is-there-any-opensource-high-performance-ipc-like-msg-bus-library-in-c3Is there any opensource high-performance IPC-like msg bus library in c++?ccfenix2009-12-01T16:13:20Z2009-12-03T16:59:21Z
<p>In my current project, I have a slightly distributed architecture, i.e., several executables collaborate with each other to get things done. To make things easier, i hope i could have a reliable 'backbone' message bus: when an executable hooks up to the msg bus, it can receive callback when new msg arrives. Similarly, it can publish new message to the bus.</p>
<p>I know some companies provide off-the-shelf solutions like this, however, is there any free ones in the OSS?</p>
http://stackoverflow.com/questions/486797/what-is-an-analog-for-win32-file-locking-in-boostinterprocess2What is an analog for win32 file locking in boost::interprocess?chester892009-01-28T07:46:51Z2009-12-02T17:05:16Z
<p>What sync mechanism should I use to give exclusive access to the text file in boost?
The file will likely be accessed by threads from only one process. </p>
http://stackoverflow.com/questions/1803015/checking-the-status-of-my-php-beanstalkd-background-processes0Checking the status of my PHP beanstalkd background processesSander Marechal2009-11-26T10:57:34Z2009-11-30T22:50:56Z
<p>I have a website written in PHP (CakePHP) where certain resource intensive tasks are handled by a background process. This is done through the Beanstalkd message queue. I need some way to retrieve the status of that background process so I can monitor it with Monit.</p>
<p>The background process is a CakePHP Shell (just a PHP CLI script) that communicates with Beanstalkd. It simply does a reserve() on Benastalkd and waits for a new message. When it gets a message, it processes it. I want some way of monitoring this process with <a href="http://mmonit.com/monit/" rel="nofollow">Monit</a> so that it can restart the background process if something has gone wrong.</p>
<p>What I have been thinking about so far is writing a PHP CLI script that drops a message in Beanstalkd. The background process picks up the message and somehow communicates it's internal status back to the CLI script. But how? Sockets? Shared memory? Some other IPC method?</p>
<p>Or am I perhaps being too complicated here and is there a much easier way to monitor such a process with Monit?</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1822449/how-do-i-send-and-receive-real-time-signals-sigqueue-in-python1How do I send and receive real-time signals `sigqueue()` in Python?joeforker2009-11-30T21:16:23Z2009-11-30T22:20:09Z
<p>Python provides a <code>signals</code> module and <code>os.kill</code>; does it have a facility for <code>sigqueue()</code> (real-time signals with attached data)? What are the alternatives?</p>
http://stackoverflow.com/questions/1802475/what-is-the-easiest-way-to-do-inter-process-communication-in-c1What is the easiest way to do inter process communication in C#?genesys2009-11-26T09:10:14Z2009-11-29T04:24:43Z
<p>I have two C# applications and I want one of them send two integers to the other one (this doesn't have to be fast since it's invoked only once every few seconds).</p>
<p>What's the easiest way to do this? (It doesn't have to be the most elegant one.)</p>
http://stackoverflow.com/questions/1806339/is-it-better-to-use-tthreads-synchronize-or-use-window-messages-for-ipc-betwee6Is it better to use TThread's "Synchronize" or use Window Messages for IPC between main and child thread?Mick2009-11-27T01:03:33Z2009-11-27T22:27:39Z
<p>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 form (simply posting strings to a grid). None of the child threads ever talk to each-other.</p>
<p>My initial design involved calling <a href="http://www.eonclash.com/Tutorials/Multithreading/MartinHarvey1.1/Ch3.html#The%20Delphi%20solution%3A%20TThread.Synchronize." rel="nofollow">TThread's "Synchronize"</a> to update the grid control form within the currently running thread. However, I understand that calling Synchronize essentially executes as if it is the main thread when called. With up to 16 threads running at once (and most of the child thread's processing takes from < 1 second to ~10 seconds) would Window Messages be a better design?</p>
<p>I've gotten it working at this point where the child thread posts a windows message (consisting of a record of several strings) and the main thread has a listener and simply updates the grid when a message is received.</p>
<p>Any opinions on the best method for IPC in this situation? Window messages or 'Synchronize'?</p>
<p>If I use window messages, do you suggest wrapping the code where I post to the grid in a TCriticalSection (enter and leave) block? Or will I not need to worry about thread safety since I'm writing to the grid in the main thread (although within the window message handler's function)?</p>
http://stackoverflow.com/questions/1042705/how-can-i-send-a-command-to-a-running-java-program1How can I send a command to a running Java program?DR2009-06-25T08:02:53Z2009-11-26T13:42:39Z
<p>I have a Java program and I want to send a command from my Win32 application. Normally I'd use <code>WM_COPYDATA</code> but what options do I have with Java?</p>
http://stackoverflow.com/questions/1800881/android-sdk-throw-a-custom-exception-from-a-service-to-an-activity0[Android SDK] Throw a custom exception from a service to an activitydasilvj2009-11-26T00:19:19Z2009-11-26T00:40:13Z
<p>Hi,</p>
<p>I'm currently working on an XMPP app' on Android and I'm pondering about the best way to throw a different type of Exception than a RemoteException to my activity from my service.</p>
<p>As it seems impossible to throw another thing than a RemoteException using IPC (you can't declare to throw anything in your .aidl), I just see two solutions:</p>
<ul>
<li><p>Create a listener for my activity to listen on my custom XMPP exception, which in fact will not be thrown but just sent as a usual object implementing the Parcelable protocol.</p></li>
<li><p>Catch my XMPPException and throw a RemoteException (with a content updated with my XMPPException) - But in that case, how could I know on my activity if it's an XMPP or a real RemoteException ? By tagging the name of the exception and parsing it on my activity ? It would be really gore.</p></li>
</ul>
<p>Do you have any idea ? Did I miss something from the SDK documentation ?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1650763/call-unmanged-code-from-c-returning-a-struct-with-arrays5Call unmanged Code from C# - returning a struct with arraysrdoubleui2009-10-30T16:10:22Z2009-11-24T15:29:01Z
<p>[EDIT] I changed the source as suggested by Stephen Martin (highlighted in bold). And added the C++ source code as well.</p>
<p>Hi, </p>
<p>I'd like to call an unmanaged function in a self-written C++ dll. This library reads the machine's shared memory for status information of a third party software. Since there are a couple of values, I'd like to return the values in a struct. However, within the struct there are <code>char []</code> (Arrays of char with a fixed size). I now try to receive that struct from the dll call like this:</p>
<pre><code>[StructLayout(LayoutKind.Sequential)]
public struct SYSTEM_OUTPUT
{
UInt16 ReadyForConnect;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 128)]
String VersionStr;
[MarshalAs(UnmanagedType.ByValTStr, SizeConst = 1024)]
String NameOfFile;
// actually more of those
}
public partial class Form1 : Form
{
public SYSTEM_OUTPUT output;
[DllImport("testeshm.dll", EntryPoint="getStatus")]
public extern static int getStatus(out SYSTEM_OUTPUT output);
public Form1()
{
InitializeComponent();
}
private void ReadSharedMem_Click(object sender, EventArgs e)
{
try
{
label1.Text = getStatus(out output).ToString();
}
catch (AccessViolationException ave)
{
label1.Text = ave.Message;
}
}
}
</code></pre>
<p>I will post code from the c++ dll as well, I'm sure there's more to hunt down. The original struct <code>STATUS_DATA</code> has an array of four instances of the struct <code>SYSTEM_CHARACTERISTICS</code> and within that struct there are <code>char[]</code>s, that are not being filled (yet), resulting in a bad pointer. That's why I'm trying to extract a subset of the first <code>SYSTEM_CHARACTERISTICS</code> item in <code>STATUS_DATA</code>.</p>
<pre><code>#include <windows.h>
#include <stdio.h>
#include <conio.h>
#include <tchar.h>
#include <iostream>
#if defined(_MSC_VER)
#include <windows.h>
#define DLL extern "C" __declspec(dllexport)
#else
#define DLL
#endif
using namespace std;
enum { SYSID_LEN = 1024, VERS_LEN = 128, SCENE_LEN = 1024 };
enum { MAX_ENGINES = 4 };
struct SYSTEM_CHARACTERISTICS
{
unsigned short ReadyForConnect;
char VizVersionStr[VERS_LEN];
char NameOfFile[SCENE_LEN];
char Unimplemented[SCENE_LEN]; // not implemented yet, resulting to bad pointer, which I want to exclude (reason to have SYSTEM_OUTPUT)
};
struct SYSTEM_OUTPUT
{
unsigned short ReadyForConnect;
char VizVersionStr[VERS_LEN];
char NameOfFile[SCENE_LEN];
};
struct STATUS_DATA
{
SYSTEM_CHARACTERISTICS engine[MAX_ENGINES];
};
TCHAR szName[]=TEXT("E_STATUS");
DLL int getStatus(SYSTEM_OUTPUT* output)
{
HANDLE hMapFile;
STATUS_DATA* pBuf;
hMapFile = OpenFileMapping(
FILE_MAP_READ, // read access
FALSE, // do not inherit the name
szName); // name of mapping object
if (hMapFile == NULL)
{
_tprintf(TEXT("Could not open file mapping object (%d).\n"),
GetLastError());
return -2;
}
pBuf = (STATUS_DATA*) MapViewOfFile(hMapFile, FILE_MAP_READ, 0, 0, 0);
if (pBuf == NULL)
{
_tprintf(TEXT("Could not map view of file (%d).\n"),
GetLastError());
CloseHandle(hMapFile);
return -1;
}
output->ReadyForConnect = pBuf->engine[0].ReadyForConnect;
memcpy(output->VizVersionStr, pBuf->engine[0].VizVersionStr, sizeof(pBuf->engine[0].VizVersionStr));
memcpy(output->NameOfFile, pBuf->engine[0].NameOfFile, sizeof(pBuf->engine[0].NameOfFile));
CloseHandle(hMapFile);
UnmapViewOfFile(pBuf);
return 0;
}
</code></pre>
<p>Now I'm getting an empty <code>output</code> struct and the return value ist not 0 as intended. It is rather a changing number with seven digits, which leaves me puzzled... Have I messed up in the dll? If I make the unmanaged code executable and debug it, I can see, that <code>output</code> is being filled with the appropriate values.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1774942/how-can-i-connect-to-a-remote-machine-via-tcp-and-udp-with-perl1How can I connect to a remote machine via TCP and UDP with Perl?Night Walker 2009-11-21T08:36:12Z2009-11-22T04:06:56Z
<p>I have a script that runs on a server and I want it now to send messages to my PC. I want to send TCP or UDP messages to some port.</p>
<p>What is the best way to do this (a tutorial will be great)? </p>
<p>And is there some client program that I can run on my PC that will listen to a local port for the messages?</p>
http://stackoverflow.com/questions/1774073/what-ipc-method-should-i-use-between-firefox-extension-and-c-code-running-on-the1What IPC method should I use between Firefox extension and C# code running on the same machine?Rory2009-11-21T00:33:15Z2009-11-21T21:57:21Z
<p>I have a question about how to structure communication between a (new) Firefox extension and existing C# code. </p>
<p>The firefox extension will use configuration data and will produce other data, so needs to get the config data from somewhere and save it's output somewhere. The data is produced/consumed by existing C# code, so I need to decide how the extension should interact with the C# code. </p>
<p>Some pertinent factors: </p>
<ul>
<li>It's only running on windows, in a relatively controlled corporate environment.</li>
<li>I have a windows service running on the machine, built in C#.</li>
<li>Storing the data in a local datastore (like sqlite) would be useful for other reasons.</li>
<li>The volume of data is low, e.g. 10kb of uncompressed xml every few minutes, and isn't very 'chatty'.</li>
<li>The data exchange can be asynchronous for the most part if not completely.</li>
<li>As with all projects, I have limited resources so want an option that's relatively easy.</li>
<li>It doesn't have to be ultra-high performance, but shouldn't add significant overhead.</li>
<li>I'm planning on building the extension in javascript (although could be convinced otherwise if really necessary)</li>
</ul>
<p>Some options I'm considering: </p>
<ol>
<li>use an XPCOM to .NET/COM bridge</li>
<li>use a sqlite db: the extension would read from and save to it. The c# code would run in the service, populating the db and then processing data created by the service.</li>
<li>use TCP sockets to communicate between the extension and the service. Let the service manage a local data store.</li>
</ol>
<p>My problem with (1) is I think this will be tricky and not so easy. But I could be completely wrong? The main problem I see with (2) is the locking of sqlite: only a single process can write data at a time so there'd be some blocking. However, it would be nice generally to have a local datastore so this is an attractive option if the performance impact isn't too great. I don't know whether (3) would be particularly easy or hard ... or what approach to take on the protocol: something custom or http.</p>
<p>Any comments on these ideas or other suggestions?</p>
<p>UPDATE: I was planning on building the extension in javascript rather than c++</p>
http://stackoverflow.com/questions/1773078/posixipc-python-package-equivalent-for-windows0posix_ipc python package equivalent for Windows?Yuvi2009-11-20T20:33:11Z2009-11-20T22:03:47Z
<p>Inter process communication primitives (Semaphores, Shared Memory) in python on windows? posix_ipc works great on linux, anything similar for windows?</p>
http://stackoverflow.com/questions/1759097/passing-events-from-erlang-to-clojure5passing events from erlang to ClojureArthur Ulfeldt2009-11-18T21:07:15Z2009-11-18T23:09:29Z
<p>I'm looking for a way to pass events back and forth between Clojure and erlang.</p>
<ul>
<li>has someone done this before?</li>
<li>how should I encode the (immutable) messages in a flaxable general way?</li>
<li>Should IPC be used for this? what sort?</li>
<li>where has this gone wrong for you in the past?</li>
</ul>
http://stackoverflow.com/questions/1743934/transparent-process-creation-for-cocoa-components0transparent process creation for cocoa componentsgf2009-11-16T18:21:52Z2009-11-17T14:01:59Z
<p>I have an application <em>A</em> which may or may not need to spawn an application <em>B</em> and will communicate with it using remote messaging (via <em>NSConnection</em>s etc.).</p>
<p>While i know how to do this if <em>B</em> is started first, i wonder:<br>
What is a clean cocoa-based approach of transparently starting <em>B</em> on demand?</p>
<p><em>(For those familiar with COM, i am effectively looking for a <code>CoCreateInstance()</code> equivalent)</em></p>
http://stackoverflow.com/questions/1706372/shared-posix-objects-cleanup-on-process-end-death1Shared POSIX objects cleanup on process end / death.Roman Nikitchenko2009-11-10T08:26:28Z2009-11-17T12:16:51Z
<p>Hi,</p>
<p>Is there any way to perform POSIX shared synchronization objects cleanup especially on process crash? Locked POSIX semaphores unblock is most desired thing but automatically 'collected' queues / shared memory region would be nice too. Another thing to keep eye on is we can't in general use signal handlers because of SIGKILL which cannot be caught.</p>
<p>I see only one alternative: some external daemon which accepts subscriptions and 'keep-alive' requests working as watchdog so not having notifications about some object it could close / unlock object in accordance to registered policy.</p>
<p>Has anyone better alternative / proposition? I never worked seriously with POSIX shared objects before (sockets were enough for all my needs and are much more useful by my opinion) and I did not found any applicable article. I'd gladly use sockets here but can't because of historical reasons.</p>
http://stackoverflow.com/questions/1746207/how-to-ipc-between-php-clients-and-a-c-daemon-server3How to IPC between PHP clients and a C Daemon Server?Alex2009-11-17T02:23:02Z2009-11-17T04:49:09Z
<p>Hi all, and thanks for taking a look at the question.</p>
<p><strong>The background</strong><br>
I have several machines that continuously spawn multiple (up to 300) PHP console scripts in a very short time frame. These scripts run quickly (less than a second) and then exit. All of these scripts need read only access to a large <a href="http://en.wikipedia.org/wiki/Trie" rel="nofollow">trie</a> structure which would be very expensive to load into memory each time each one of the scripts runs. The server runs Linux.</p>
<p><strong>My solution</strong><br>
Create a C daemon that keeps the trie structure in memory and receives requests from the PHP clients. It would receive a request from every one of the PHP clients, perform the lookup on the memory structure and respond with the answer, saving the PHP scripts from doing that work. Both requests and responses are short strings (no longer than 20 characters)</p>
<p><strong>My problem</strong><br>
I am very new to C daemons and inter process communication. After much research, I have narrowed the choices down to Message Queues and Unix domain sockets. Message Queues seem adequate because I think (I may be wrong) that they queue up all of the requests for the daemon to answer them serially. Unix domain sockets seem to be easier to use, though. However, I have various questions I have not been able to find answers to:</p>
<ol>
<li>How can a PHP script send and receive messages or use a UNIX socket to communicate with the daemon? Conversely how does the C daemon keep track of which PHP process it has to send a reply to? </li>
<li>Most examples of daemons I have seen use an infinite while loop with a sleep condition inside. My daemon needs to service many connections that can come at any time, and response latency is critical. How would the daemon react if the PHP script sends a request while it is sleeping? I have read about poll and epoll, would this be the correct way to wait for a received message? </li>
<li>Each PHP process will always send one request, and then will wait to receive a response. I need to make sure that if the daemon is down / unavailable, the PHP process will wait for a response for a set maximum time, and if no answer is received will continue regardless instead of hanging. Can this be done?</li>
</ol>
<p>The actual lookup of the data structure is very fast, I don't need any complex multi-threading or similar solution, as I believe handling the requests in a FIFO manner will be enough. I also need to keep it simple stupid, as this is a mission critical service, and I am fairly new to this type of program. (I know, but I really have no way around this, and the learning experience will be great)</p>
<p>I would really appreciate code snippets that shine some light into the specific questions that I have. Links to guides and pointers that will further my understanding into this murky world of low level IPC are also welcome.</p>
<p>Thanks for your help!</p>
http://stackoverflow.com/questions/866101/re-shared-memory-and-semaphores0Re: Shared Memory and SemaphoresAnonymous2009-05-14T22:06:38Z2009-11-16T22:00:02Z
<p>Is an IPC mechanism using shared memory and semaphores for synchronization simplex like pipes or duplex like message queues?</p>
http://stackoverflow.com/questions/680763/using-shared-memory-with-php-and-c2using shared memory with php and c?JDustin2009-03-25T09:04:38Z2009-11-16T21:01:05Z
<p>Can you use shared memory to communicate between php scripts and c program in windows?</p>
<p>The c program runs all the time and uses memory mapped files ie: </p>
<pre><code>handle1 = CreateFileMapping(
(HANDLE)0xFFFFFFFF, NULL, PAGE_READWRITE, 0, sizeof(byte)*BUFFER_SIZE, "my_foo" );
hView = (LPINT) MapViewOfFile(handle1, FILE_MAP_ALL_ACCESS, 0, 0, 0);
</code></pre>
<p>For the PHP scripts can I just use the below code to open the memory mapped file created by the c program?</p>
<pre><code>$shmkey = @shmop_open(ftok("my_foo", 'R'), "a", 0644, $buffer_size);
</code></pre>
<p>or are c memory mapped files and php shared memory different things?</p>
http://stackoverflow.com/questions/200225/easy-ipc-on-windows-mobile3Easy IPC on Windows Mobile?Steven2008-10-14T07:10:39Z2009-11-16T08:14:17Z
<p>In a C++ project (i.e. no .NET) on Windows Mobile, I am looking for a way to easily communicate between two independently running applications. Application A would run a service, whereas application B would provide the user some functionality - for which B has to call some of A's functions. I would rather not go through implementing anything in COM. </p>
<p>In fact, I would prefer not to do any kind of serialization or similar (i.e. this would exclude using sockets/pipes/files), but rather have B pass all parameters and pointers over to A, just like if A were part of B. Also, apps C, D and E should be able to do the same with only one instance of A running.</p>
<p>I should add that B sometimes is supposed to return an array (or std::vector or std::map) to A where the size is not previously known. </p>
<p>Is this possible on Windows Mobile and possibly other platforms?</p>
http://stackoverflow.com/questions/1258187/communication-between-two-flex-apps3communication between two flex appsQ-rius2009-08-11T02:19:20Z2009-11-15T16:17:47Z
<p>I have 2 flex apps on the same page. I want them to be able to call each other's public functions. I am thinking of using either externalInterface calls or FaBridge to do so.
Is there a better way to do it?</p>
http://stackoverflow.com/questions/1734932/linux-pipes-as-input-and-output0Linux Pipes as Input and OutputNeville Bamshoe2009-11-14T17:25:41Z2009-11-14T19:45:15Z
<p>I would like to do the following inside a C program on a Linux os:</p>
<ul>
<li>Create a PIPE using a syscall (or 2)</li>
<li>Execute a new process using exec()</li>
<li>Connect the process's STDIN to to the previously created pipe.</li>
<li>Connect the process's output to another PIPE.</li>
</ul>
<p>The idea is to circumvent any drive access for performance purposes. </p>
<p>I know that the creation of pipes is quite simple using the PIPE system call
and that I could just use popen for creating a pipe for input OR output purposes.</p>
<p>But how would you go about doing this for both input and output?</p>