cross platform IPC - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T04:18:08Zhttp://stackoverflow.com/feeds/question/60649http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/60649/cross-platform-ipc9cross platform IPCThomi2008-09-13T16:10:34Z2008-12-08T22:55:24Z
<p>Hi,</p>
<p>I'm looking for suggestions on possible IPC mechanisms that are:</p>
<ul>
<li><strong>cross platform</strong> (WIN32 and Linux at least)</li>
<li>Simple to implement in <strong>C++</strong> as well as the <strong>most common scripting languages</strong> (perl, ruby python etc).</li>
<li>Finally, <strong>simple to use</strong> from a programming point of view!</li>
</ul>
<p>What are my options? I'm programming under Linux, but I'd like what I write to be portable to other OSes in the future. I've thought about using sockets, named pipes, or something like DBus.</p>
<p>Does anyone have any advice?</p>
http://stackoverflow.com/questions/60649/cross-platform-ipc/60660#606604Answer by Brian R. Bondy for cross platform IPCBrian R. Bondy2008-09-13T16:19:10Z2008-09-13T18:18:59Z<p>For C++, check out <a href="http://www.boost.org/doc/libs/1_36_0/doc/html/interprocess.html" rel="nofollow">Boost IPC</a>.<br />
You can probably create or find some bindings for the scripting languages as well. </p>
<p>Otherwise if it's really important to be able to interface with scripting languages your best bet is simply to use files, pipes or sockets or even a higher level abstraction like HTTP. </p>
http://stackoverflow.com/questions/60649/cross-platform-ipc/60662#606623Answer by Swaroop C H for cross platform IPCSwaroop C H2008-09-13T16:21:24Z2008-09-13T16:21:24Z<p>How about <a href="http://incubator.apache.org/thrift/" rel="nofollow">Facebook's Thrift</a>?</p>
<blockquote>
<p>Thrift is a software framework for scalable cross-language services development. It combines a software stack with a code generation engine to build services that work efficiently and seamlessly between C++, Java, Python, PHP, Ruby, Erlang, Perl, Haskell, C#, Cocoa, Smalltalk, and OCaml.</p>
</blockquote>
http://stackoverflow.com/questions/60649/cross-platform-ipc/60668#606684Answer by Maximilian for cross platform IPCMaximilian2008-09-13T16:27:20Z2008-09-14T11:04:30Z<p>It doesn't get more simple than using pipes, which are supported on every OS I know of, and can be accessed in pretty much every language.</p>
<p>Check out <a href="http://www.utdallas.edu/~kcooper/teaching/3375/Tutorial6a/tutorial6.htm" rel="nofollow">this</a> tutorial.</p>
http://stackoverflow.com/questions/60649/cross-platform-ipc/60692#606920Answer by Rich B for cross platform IPCRich B2008-09-13T17:03:28Z2008-09-13T17:03:28Z<p>TCP sockets to localhost FTW.</p>
http://stackoverflow.com/questions/60649/cross-platform-ipc/60702#607025Answer by Douglas Leeder for cross platform IPCDouglas Leeder2008-09-13T17:17:20Z2008-09-13T17:17:20Z<p>I think you'll want something based on sockets. </p>
<p>If you want RPC rather than just IPC I would suggest something like XML-RPC/SOAP which runs over HTTP, and can be used from any language.</p>
http://stackoverflow.com/questions/60649/cross-platform-ipc/65924#659244Answer by Douglas Mayle for cross platform IPCDouglas Mayle2008-09-15T19:22:37Z2008-09-15T19:22:37Z<p>In terms of speed, the best cross-platform IPC mechanism will be pipes. That assumes, however, that you want cross-platform IPC on the same machine. If you want to be able to talk to processes on remote machines, you'll want to look at using sockets instead. Luckily, if you're talking about TCP at least, sockets and pipes behave pretty much the same behavior. While the APIs for setting them up and connecting them are different, they both just act like streams of data.</p>
<p>The difficult part, however, is not the communication channel, but the messages you pass over it. You really want to look at something that will perform verification and parsing for you. I recommend looking at Google's <a href="http://code.google.com/apis/protocolbuffers/docs/overview.html" rel="nofollow">Protocol Buffers</a>. You basically create a spec file that describes the object you want to pass between processes, and there is a compiler that generates code in a number of different languages for reading and writing objects that match the spec. It's much easier (and less bug prone) than trying to come up with a messaging protocol and parser yourself.</p>
http://stackoverflow.com/questions/60649/cross-platform-ipc/66069#660692Answer by Jason Etheridge for cross platform IPCJason Etheridge2008-09-15T19:39:28Z2008-09-15T19:39:28Z<p>If you're willing to try something a little different, there's the <a href="http://zeroc.com/ice.html" rel="nofollow">ICE</a> platform from <a href="http://zeroc.com" rel="nofollow">ZeroC</a>. It's open source, and is supported on pretty much every OS you can think of, as well as having language support for C++, C#, Java, Ruby, Python and PHP. Finally, it's very easy to drive (the language mappings are tailored to fit naturally into each language). It's also fast and efficient. There's even a cut-down version for devices.</p>
http://stackoverflow.com/questions/60649/cross-platform-ipc/67532#675323Answer by bronek.k for cross platform IPCbronek.k2008-09-15T22:11:03Z2008-09-15T22:11:03Z<p>You might want to try <a href="http://www.msobczak.com/prog/yami/" rel="nofollow" title="YAMI">YAMI</a> , it's very simple yet functional, portable and comes with binding to few languages</p>
http://stackoverflow.com/questions/60649/cross-platform-ipc/74590#745903Answer by apenwarr for cross platform IPCapenwarr2008-09-16T17:04:46Z2008-09-16T17:04:46Z<p>Why not D-Bus? It's a very simple message passing system that runs on almost all platforms and is designed for robustness. It's supported by pretty much every scripting language at this point.</p>
<p><a href="http://freedesktop.org/wiki/Software/dbus" rel="nofollow">http://freedesktop.org/wiki/Software/dbus</a></p>
http://stackoverflow.com/questions/60649/cross-platform-ipc/74615#746151Answer by Adam Rosenfield for cross platform IPCAdam Rosenfield2008-09-16T17:07:42Z2008-09-16T17:07:42Z<p>Python has a pretty good IPC library: see <a href="http://docs.python.org/lib/ipc.html" rel="nofollow">http://docs.python.org/lib/ipc.html</a></p>
http://stackoverflow.com/questions/60649/cross-platform-ipc/351256#3512562Answer by lothar for cross platform IPClothar2008-12-08T22:55:24Z2008-12-08T22:55:24Z<p>Distributed computing is usually complex and you are well advised to use existing libraries or frameworks instead of reinventing the wheel. Previous poster have already enumerated a couple of these libraries and frameworks. Depending on your needs you can pick either a very low level (like sockets) or high level framework (like CORBA). There can not be a generic "use this" answer. You need to educate yourself about distributed programming and then will find it much easier to pick the right library or framework for the job.</p>
<p>There exists a wildly used C++ framework for distributed computing called ACE and the CORBA ORB TAO (which is buildt upon ACE). There exist very good books about ACE <a href="http://www.cs.wustl.edu/~schmidt/ACE/" rel="nofollow">http://www.cs.wustl.edu/~schmidt/ACE/</a> so you might take a look. Take care!</p>