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/pubsub/pubsubd.c

81 lines
2.2 KiB
C
Raw Normal View History

2016-06-05 20:48:13 +02:00
#include "../lib/pubsubd.h"
2016-05-28 19:34:23 +02:00
#include <stdlib.h>
struct workers *my_workers;
2016-09-11 14:37:41 +02:00
2016-05-28 19:34:23 +02:00
void
ohshit(int rvalue, const char* str) {
2016-06-04 20:33:44 +02:00
fprintf(stderr, "%s\n", str);
exit(rvalue);
2016-05-28 19:34:23 +02:00
}
2016-09-08 13:23:07 +02:00
int
2016-06-12 14:41:25 +02:00
main(int argc, char **argv, char **env)
2016-06-04 20:33:44 +02:00
{
2016-06-05 20:48:13 +02:00
struct service srv;
memset (&srv, 0, sizeof (struct service));
2016-06-13 09:47:19 +02:00
srv_init (argc, argv, env, &srv, PUBSUB_SERVICE_NAME, NULL);
printf ("Listening on %s.\n", srv.spath);
2016-05-28 19:34:23 +02:00
2016-06-04 20:33:44 +02:00
// creates the service named pipe, that listens to client applications
if (srv_create (&srv))
2016-06-04 20:33:44 +02:00
ohshit(1, "service_create error");
2016-05-28 19:34:23 +02:00
2016-06-07 11:45:21 +02:00
// init chans list
2016-06-04 20:33:44 +02:00
struct channels chans;
memset (&chans, 0, sizeof (struct channels));
2016-06-04 20:33:44 +02:00
pubsubd_channels_init (&chans);
2016-05-28 19:34:23 +02:00
my_workers = malloc (sizeof (struct workers));
memset (my_workers, 0, sizeof (struct workers));
pubsubd_workers_init (my_workers);
while (1) {
2016-06-07 11:45:21 +02:00
// for each new process
struct app_list_elm ale;
memset (&ale, 0, sizeof (struct app_list_elm));
struct channel *chan = NULL;
2016-09-09 21:52:56 +02:00
pubsubd_get_new_process (srv.spath, &ale, &chans, &chan);
2016-06-07 17:44:18 +02:00
pubsubd_channels_print (&chans);
// end the application
if (ale.action == PUBSUB_QUIT) {
pubsubd_app_list_elm_free (&ale);
break;
2016-06-07 13:49:23 +02:00
}
// thread to handle multiple clients at a time
struct worker *w = NULL;
w = malloc (sizeof (struct worker));
2016-09-14 15:07:08 +02:00
w->thr = malloc (sizeof (pthread_t));
memset (w->thr, 0, sizeof (pthread_t));
w->ale = pubsubd_app_list_elm_copy (&ale);
w->chans = &chans;
w->my_workers = my_workers;
w->chan = chan;
struct worker *wtmp = pubsubd_workers_add (my_workers, w);
pubsubd_worker_free (w);
free (w);
w = wtmp;
2016-06-07 13:49:23 +02:00
2016-09-14 15:07:08 +02:00
pthread_create (w->thr, NULL, pubsubd_worker_thread, w);
pthread_detach (*w->thr);
2016-06-07 11:45:21 +02:00
2016-06-07 17:44:18 +02:00
pubsubd_app_list_elm_free (&ale);
2016-06-04 20:33:44 +02:00
}
2016-05-28 19:34:23 +02:00
printf ("Quitting ...\n");
2016-09-11 14:37:41 +02:00
2016-09-14 15:07:08 +02:00
pubsubd_workers_stop (my_workers);
2016-09-11 14:37:41 +02:00
pubsubd_channels_del_all (&chans);
pubsubd_workers_del_all (my_workers);
free (my_workers);
2016-09-11 14:37:41 +02:00
2016-06-04 20:33:44 +02:00
// the application will shut down, and remove the service named pipe
if (srv_close (&srv))
2016-06-07 13:49:23 +02:00
ohshit (1, "service_close error");
2016-05-28 19:34:23 +02:00
2016-06-04 20:33:44 +02:00
return EXIT_SUCCESS;
2016-05-28 19:34:23 +02:00
}