OLD IMPLEMENTATION. The new one is in Zig and fucking ROCKS: https://git.baguette.netlib.re/Baguette/libipc Inter-Process Communication library based on unix sockets.
 
 
 
 
 
Go to file
Karchnu 62db8ff7fd Add and remove printf. 2020-11-08 06:07:28 +01:00
examples Minor changes in examples. 2020-10-01 03:19:52 +02:00
man libipc v0.7: callbacks for proxies, better memory management. 2020-07-13 14:12:08 +02:00
src Add and remove printf. 2020-11-08 06:07:28 +01:00
tests Test applications up to libipc version 0.7.0. 2020-07-15 16:06:54 +02:00
.gitignore Meaningful error msg, -logging +directory management, indentation. 2020-01-01 12:11:34 +01:00
Makefile v0.7.2: ipcd indicates if it successfully contacted the service. 2020-11-05 14:15:39 +01:00
README.md libipc v0.7: callbacks for proxies, better memory management. 2020-07-13 14:12:08 +02:00
project.zsh v0.7.2: ipcd indicates if it successfully contacted the service. 2020-11-05 14:15:39 +01:00

README.md

libipc

libipc - Simple, easy-to-use IPC library

See the introductory man page.

Compilation

make

logging system

Logs are in one of the following directories: $XDG_DATA_HOME/ipc/ or $HOME/.local/share/ipc/. The log file can be indicated with the IPC_LOGFILE environment variable, too.

To remove logs: make LDFLAGS=-DIPC_WITHOUT_ERRORS

Since 0.7

  • libipc have callbacks to use along with switching capabilities, making easier to implement proxies for different communication protocols

Planning for 0.8

For performance improvements within libipc:

  • libipc shouldn't use realloc for each event (new client, new message, etc.) but by batch of a few thousand elements
  • libipc should use better internal structures, unrequiring the use of loops (over the whole list of messages or connections) for each action

Planning for 0.9

  • libipc should use libevent for performance improvments
  • libipc should be thread-safe

Planning for 1.0

  • libipc may be written in Zig
  • libipc should have usable bindings in several languages

Implementation design

Memory management

  1. Prefer stack over mallocs.
  2. Basic functions (such as usock_) should not handle memory allocation.