Libt2n

Libt2n
Stable release
0.5 / 7 February 2009 (2009-02-07)
Written in C++
Operating system Unix-like
Type Inter-process communication
License LGPL
Website Official libt2n website

libt2n is a free Inter-process communication (IPC) library which offers a simple way for C++ applications to communicate with one another.[1]

Introduction

libt2n is an inter-process communication (IPC) system which is focused on ease of use and a minimum of code-lines needed to export and use methods. This is achieved by reducing the feature-set and relying on the serialization library developed at Boost.[1][2]

The goals of libt2n development are:

The limitations of the current libt2n implementation:

Architecture

libt2n is divided in two parts:

The code generator does not use an Interface description language (IDL), but parses the source code of the server for special tags. It produces the code needed to handle the calls on the server and a ready-to-use library for the client.

If a remote function is called, the client library creates an object describing the call, including all parameters. This object is serialized using the Boost serialization library and transferred to the server. Currently this can be done using Unix domain sockets or TCP. The server deserializes the object and calls the corresponding method. The result (return value or exception) is again serialized and sent back to the client.

Trivia

t2n is an abbreviation for 'talk to neighbor'.

References

  1. 1 2 "libt2n website". Archived from the original on 20 Feb 2012. Retrieved 26 September 2013.
  2. "Novell shareware". Retrieved 26 September 2013.

External links

This article is issued from Wikipedia - version of the 9/9/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.