#ifndef __COMMUNICATION_H__ #define __COMMUNICATION_H__ #include #include #include #include // error numbers #include "msg.h" #include "process.h" #define COMMUNICATION_VERSION 1 #define ER_MEM_ALLOC 100 #define ER_PARAMS 101 #define TMPDIR "/tmp/ipc/" #define PATH_MAX BUFSIZ #define CONNECTION 0 #define APPLICATION 1 #define CON_APP 2 struct service { unsigned int version; unsigned int index; char spath[PATH_MAX]; int service_fd; }; // SERVICE // srv->version and srv->index must be already set // init unix socket + fill srv->spath int srv_init (int argc, char **argv, char **env , struct service *srv, const char *sname); int srv_close (struct service *srv); int srv_close_proc (struct process *p); int srv_accept (struct service *srv, struct process *p); int srv_read (const struct process *, struct msg *m); int srv_write (const struct process *, const struct msg *m); int srv_select (struct array_proc *, struct service *, struct array_proc *); // APPLICATION // Initialize connection with unix socket // send the connection string to $TMP/ // fill srv->spath && srv->service_fd int app_connection (int argc, char **argv, char **env , struct service *, const char *, const char *, size_t); int app_close (struct service *); int app_read (struct service *srv, struct msg *m); int app_write (struct service *, const struct msg *m); #endif