Obsolete
/
libipc-old
Archived
3
0
Fork 0
This repository has been archived on 2024-06-18. You can view files and clone it, but cannot push or open issues/pull-requests.
libipc-old/drop/init-connection.c

57 lines
1.4 KiB
C
Raw Normal View History

2016-05-31 23:16:39 +02:00
#include "../lib/communication.h"
2016-05-26 18:27:59 +02:00
#define SERVICE "windowing"
void
ohshit(int rvalue, const char* str) {
fprintf(stderr, "%s\n", str);
exit(rvalue);
}
int main(int argc, char * argv[], char *env[])
2016-05-26 18:27:59 +02:00
{
2018-10-04 00:30:47 +02:00
struct ipc_service srv;
memset (&srv, 0, sizeof (struct ipc_service));
2018-10-03 21:52:11 +02:00
ipc_server_init (argc, argv, env, &srv, SERVICE, NULL);
printf ("Listening on %s.\n", srv.spath);
// creates the service named pipe, that listens to client applications
2018-10-03 21:24:20 +02:00
if (server_create (&srv))
ohshit(1, "service_create error");
/*
* PROCESS
*/
2018-10-04 00:30:47 +02:00
struct ipc_client p;
memset (&p, 0, sizeof (struct ipc_client));
int index = 0; // first time we communication with the service
int version = 1;
printf ("app creation\n");
2018-10-03 21:24:20 +02:00
if (application_create (&p, index, version)) // called by the application
ohshit (1, "application_create");
/*
* some exchanges between App and S
* specific code, talks between applications
* then App wants to end the communication
*/
printf ("destroying app\n");
// the application will shut down, and remove the application named pipes
2018-10-03 21:24:20 +02:00
if (application_destroy (&p))
ohshit (1, "application_destroy");
/*
* /PROCESS
*/
// the application will shut down, and remove the service named pipe
2018-10-03 21:24:20 +02:00
if (server_close (&srv))
ohshit (1, "server_close error");
2016-05-26 18:27:59 +02:00
return EXIT_SUCCESS;
}