2016-06-05 20:48:13 +02:00
|
|
|
#include "../lib/pubsubd.h"
|
2016-05-28 19:34:23 +02:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
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-06-04 20:33:44 +02:00
|
|
|
int
|
|
|
|
main(int argc, char* argv[])
|
|
|
|
{
|
2016-06-05 20:48:13 +02:00
|
|
|
struct service srv;
|
|
|
|
srv_init (&srv, PUBSUB_SERVICE_NAME);
|
|
|
|
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
|
2016-06-05 20:48:13 +02:00
|
|
|
if (service_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-04 20:33:44 +02:00
|
|
|
struct channels chans;
|
|
|
|
pubsubd_channels_init (&chans);
|
2016-05-28 19:34:23 +02:00
|
|
|
|
2016-06-04 20:33:44 +02:00
|
|
|
for (;;) {
|
|
|
|
struct process proc;
|
|
|
|
int proc_count, i;
|
2016-05-28 19:34:23 +02:00
|
|
|
|
2016-06-05 20:48:13 +02:00
|
|
|
service_get_new_process (&proc, &srv);
|
2016-05-28 19:34:23 +02:00
|
|
|
|
2016-06-04 20:33:44 +02:00
|
|
|
printf("> %i proc\n", proc_count);
|
2016-05-28 19:34:23 +02:00
|
|
|
|
2016-06-04 20:33:44 +02:00
|
|
|
for (i = 0; i < proc_count; i++) {
|
|
|
|
size_t message_size = BUFSIZ;
|
|
|
|
char buffer[BUFSIZ];
|
2016-05-28 19:34:23 +02:00
|
|
|
|
2016-06-04 20:33:44 +02:00
|
|
|
process_print(proc + i);
|
2016-05-28 19:34:23 +02:00
|
|
|
|
2016-06-04 20:33:44 +02:00
|
|
|
if (process_read (&proc[i], &buffer, &message_size))
|
|
|
|
ohshit(1, "process_read error");
|
2016-05-28 19:34:23 +02:00
|
|
|
|
2016-06-04 20:33:44 +02:00
|
|
|
printf(": %s\n", buffer);
|
2016-05-28 19:34:23 +02:00
|
|
|
|
|
|
|
|
2016-06-04 20:33:44 +02:00
|
|
|
}
|
2016-05-28 19:34:23 +02:00
|
|
|
|
2016-06-04 20:33:44 +02:00
|
|
|
service_free_processes(&proc, proc_count);
|
|
|
|
}
|
2016-05-28 19:34:23 +02:00
|
|
|
|
2016-06-04 20:33:44 +02:00
|
|
|
// the application will shut down, and remove the service named pipe
|
|
|
|
if (service_close (s_path))
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2016-06-04 20:33:44 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* main loop
|
|
|
|
*
|
|
|
|
* opens the application pipes,
|
|
|
|
* reads then writes the same message,
|
|
|
|
* then closes the pipes
|
|
|
|
*/
|
|
|
|
|
2016-06-05 20:48:13 +02:00
|
|
|
void main_loop (const struct service *srv)
|
2016-06-04 20:33:44 +02:00
|
|
|
{
|
|
|
|
int ret;
|
|
|
|
struct process proc;
|
|
|
|
|
|
|
|
int cnt = 10;
|
|
|
|
|
|
|
|
while (cnt--) {
|
|
|
|
// -1 : error, 0 = no new process, 1 = new process
|
2016-06-05 20:48:13 +02:00
|
|
|
ret = srv_get_new_process (&proc, srv);
|
2016-06-04 20:33:44 +02:00
|
|
|
if (ret == -1) {
|
|
|
|
fprintf (stderr, "error service_get_new_process\n");
|
|
|
|
continue;
|
|
|
|
} else if (ret == 0) { // that should not happen
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// printf ("before print\n");
|
|
|
|
process_print (&proc);
|
|
|
|
// printf ("after print\n");
|
|
|
|
|
|
|
|
// about the message
|
|
|
|
size_t msize = BUFSIZ;
|
|
|
|
char buf[BUFSIZ];
|
|
|
|
bzero(buf, BUFSIZ);
|
|
|
|
|
|
|
|
// printf ("before read\n");
|
2016-06-05 12:45:45 +02:00
|
|
|
if ((ret = srv_read (&proc, &buf, &msize))) {
|
2016-06-04 20:33:44 +02:00
|
|
|
fprintf(stdout, "error service_read %d\n", ret);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
// printf ("after read\n");
|
|
|
|
printf ("read, size %ld : %s\n", msize, buf);
|
|
|
|
|
|
|
|
// printf ("before proc write\n");
|
2016-06-05 12:45:45 +02:00
|
|
|
if ((ret = srv_write (&proc, &buf, msize))) {
|
2016-06-04 20:33:44 +02:00
|
|
|
fprintf(stdout, "error service_write %d\n", ret);
|
|
|
|
continue;
|
|
|
|
}
|
2016-06-05 12:45:45 +02:00
|
|
|
|
2016-06-04 20:33:44 +02:00
|
|
|
// printf ("after proc write\n");
|
|
|
|
printf ("\033[32mStill \033[31m%d\033[32m applications to serve\n",cnt);
|
|
|
|
}
|
|
|
|
}
|