Timeout IO poll at desired intervals
[khatus.git] / x5 / khatus.c
CommitLineData
77c76070 1#include <sys/select.h>
bec93767 2#include <sys/stat.h>
4d66492f 3
9b5ebc12
SK
4#include <assert.h>
5#include <ctype.h>
77c76070 6#include <errno.h>
c5d1af8c 7#include <fcntl.h>
9b5ebc12
SK
8#include <stdio.h>
9#include <stdlib.h>
10#include <string.h>
b7487ec5 11#include <time.h>
c5d1af8c
SK
12#include <unistd.h>
13
14#include <X11/Xlib.h>
9b5ebc12 15
b7487ec5 16#include "bsdtimespec.h"
17a27e48
SK
17#include "khatus_lib_log.h"
18#include "khatus_lib_time.h"
b7487ec5 19
17a27e48 20#define usage(...) {print_usage(); fprintf(stderr, "Error:\n " __VA_ARGS__); exit(EXIT_FAILURE);}
e6c523cd
SK
21#define ERRMSG "ERROR"
22
23static const char errmsg[] = ERRMSG;
24static const int errlen = sizeof(ERRMSG) - 1;
25
4d66492f 26char *argv0;
9b5ebc12 27
1872c5c1
SK
28/* TODO: Convert fifo list to fifo array. */
29typedef struct Fifo Fifo;
30struct Fifo {
4d66492f
SK
31 char *name;
32 int fd;
9b5ebc12 33 int width;
0a01172a
SK
34 struct timespec last_read;
35 struct timespec ttl;
efa97b71
SK
36 int pos_init; /* Initial position on the output buffer. */
37 int pos_curr; /* Current position on the output buffer. */
38 int pos_final; /* Final position on the output buffer. */
1872c5c1 39 Fifo *next;
9b5ebc12
SK
40};
41
4d66492f
SK
42typedef struct Config Config;
43struct Config {
348d5f36 44 double interval;
4d66492f 45 char * separator;
1872c5c1
SK
46 Fifo * fifos;
47 int fifo_count;
4d66492f 48 int total_width;
fabb8771 49 int output_to_x_root_window;
4d66492f 50} defaults = {
348d5f36 51 .interval = 1.0,
4d66492f 52 .separator = "|",
1872c5c1
SK
53 .fifos = NULL,
54 .fifo_count = 0,
4d66492f 55 .total_width = 0,
fabb8771 56 .output_to_x_root_window = 0,
9b5ebc12
SK
57};
58
efa97b71 59enum read_status {
e6441710
SK
60 END_OF_FILE,
61 END_OF_MESSAGE,
62 RETRY,
63 FAILURE
efa97b71
SK
64};
65
77c76070 66void
17a27e48 67fifo_print_one(Fifo *f)
77c76070 68{
a6b13fa2
SK
69 info("Fifo "
70 "{"
71 " name = %s,"
72 " fd = %d,"
73 " width = %d,"
0a01172a
SK
74 " last_read = {tv_sec = %ld, tv_nsec = %ld}"
75 " ttl = {tv_sec = %ld, tv_nsec = %ld},"
efa97b71
SK
76 " pos_init = %d,"
77 " pos_curr = %d,"
78 " pos_final = %d,"
a6b13fa2
SK
79 " next = %p,"
80 " }\n",
81 f->name,
82 f->fd,
83 f->width,
0a01172a
SK
84 f->last_read.tv_sec,
85 f->last_read.tv_nsec,
86 f->ttl.tv_sec,
87 f->ttl.tv_nsec,
efa97b71
SK
88 f->pos_init,
89 f->pos_curr,
90 f->pos_final,
a6b13fa2 91 f->next
77c76070
SK
92 );
93}
94
95void
17a27e48 96fifo_print_all(Fifo *head)
77c76070 97{
1872c5c1 98 for (Fifo *f = head; f; f = f->next) {
17a27e48 99 fifo_print_one(f);
77c76070
SK
100 }
101}
102
103void
b6316e94 104config_print(Config *cfg)
77c76070 105{
b6316e94 106 info(
a6b13fa2
SK
107 "Config "
108 "{"
348d5f36 109 " interval = %f,"
a6b13fa2
SK
110 " separator = %s,"
111 " fifo_count = %d,"
112 " total_width = %d,"
a6b13fa2
SK
113 " fifos = ..."
114 " }\n",
115 cfg->interval,
116 cfg->separator,
117 cfg->fifo_count,
17a27e48 118 cfg->total_width
77c76070 119 );
17a27e48 120 fifo_print_all(cfg->fifos);
77c76070 121}
9b5ebc12
SK
122
123int
124is_pos_num(char *s)
125{
126 while (*s != '\0')
127 if (!isdigit(*(s++)))
128 return 0;
129 return 1;
130}
131
348d5f36
SK
132int
133is_decimal(char *s)
134{
135 char c;
136 int seen = 0;
137
138 while ((c = *(s++)) != '\0')
139 if (!isdigit(c)) {
140 if (c == '.' && !seen++)
141 continue;
142 else
143 return 0;
144 }
145 return 1;
146}
147
9b5ebc12
SK
148void
149print_usage()
150{
4d66492f 151 assert(argv0);
9b5ebc12 152 fprintf(
a6b13fa2
SK
153 stderr,
154 "\n"
155 "Usage: %s [OPTION ...] SPEC [SPEC ...]\n"
156 "\n"
157 " SPEC = FILE_PATH DATA_WIDTH DATA_TTL\n"
158 " FILE_PATH = string\n"
159 " DATA_WIDTH = int (* (positive) number of characters *)\n"
0a01172a 160 " DATA_TTL = float (* (positive) number of seconds *)\n"
a6b13fa2
SK
161 " OPTION = -i INTERVAL\n"
162 " | -s SEPARATOR\n"
163 " | -x (* Output to X root window *)\n"
164 " | -l LOG_LEVEL\n"
165 " SEPARATOR = string\n"
0a01172a 166 " INTERVAL = float (* (positive) number of seconds *)\n"
a6b13fa2
SK
167 " LOG_LEVEL = int (* %d through %d *)\n"
168 "\n",
169 argv0,
170 Nothing,
171 Debug
9b5ebc12
SK
172 );
173 fprintf(
a6b13fa2
SK
174 stderr,
175 "Example: %s -i 1 /dev/shm/khatus/khatus_sensor_x 4 10\n"
176 "\n",
177 argv0
9b5ebc12
SK
178 );
179}
180
4d66492f 181void opts_parse_any(Config *, int, char *[], int); /* For mutually-recursive calls. */
9b5ebc12
SK
182
183void
4d66492f 184parse_opts_opt_i(Config *cfg, int argc, char *argv[], int i)
9b5ebc12 185{
4c438cef
SK
186 char *param;
187
188 if (i >= argc)
9b5ebc12 189 usage("Option -i parameter is missing.\n");
4c438cef 190 param = argv[i++];
348d5f36 191 if (!is_decimal(param))
4c438cef 192 usage("Option -i parameter is invalid: \"%s\"\n", param);
348d5f36 193 cfg->interval = atof(param);
4c438cef 194 opts_parse_any(cfg, argc, argv, i);
9b5ebc12
SK
195}
196
197void
4d66492f
SK
198parse_opts_opt_s(Config *cfg, int argc, char *argv[], int i)
199{
4c438cef 200 if (i >= argc)
4d66492f 201 usage("Option -s parameter is missing.\n");
4c438cef
SK
202 cfg->separator = calloc((strlen(argv[i]) + 1), sizeof(char));
203 strcpy(cfg->separator, argv[i]);
204 opts_parse_any(cfg, argc, argv, ++i);
4d66492f
SK
205}
206
b6316e94
SK
207void
208parse_opts_opt_l(Config *cfg, int argc, char *argv[], int i)
209{
4c438cef 210 char *param;
b6316e94
SK
211 int log_level;
212
4c438cef 213 if (i >= argc)
b6316e94 214 usage("Option -l parameter is missing.\n");
4c438cef
SK
215 param = argv[i++];
216 if (!is_pos_num(param))
217 usage("Option -l parameter is invalid: \"%s\"\n", param);
218 log_level = atoi(param);
219 if (log_level > Debug)
220 usage("Option -l value (%d) exceeds maximum (%d)\n", log_level, Debug);
17a27e48 221 _khatus_lib_log_level = log_level;
4c438cef 222 opts_parse_any(cfg, argc, argv, i);
b6316e94
SK
223}
224
4d66492f
SK
225void
226parse_opts_opt(Config *cfg, int argc, char *argv[], int i)
9b5ebc12
SK
227{
228 switch (argv[i][1]) {
ce552549
SK
229 case 'i':
230 /* TODO: Generic set_int */
231 parse_opts_opt_i(cfg, argc, argv, ++i);
232 break;
233 case 's':
234 /* TODO: Generic set_str */
235 parse_opts_opt_s(cfg, argc, argv, ++i);
236 break;
237 case 'x':
238 cfg->output_to_x_root_window = 1;
239 opts_parse_any(cfg, argc, argv, ++i);
240 break;
241 case 'l':
242 /* TODO: Generic set_int */
243 parse_opts_opt_l(cfg, argc, argv, ++i);
244 break;
245 default :
246 usage("Option \"%s\" is invalid\n", argv[i]);
9b5ebc12
SK
247 }
248}
249
250void
4d66492f 251parse_opts_spec(Config *cfg, int argc, char *argv[], int i)
9b5ebc12
SK
252{
253 if ((i + 3) > argc)
1872c5c1 254 usage("[spec] Parameter(s) missing for fifo \"%s\".\n", argv[i]);
9b5ebc12
SK
255
256 char *n = argv[i++];
257 char *w = argv[i++];
258 char *t = argv[i++];
259
0a01172a
SK
260 struct timespec last_read;
261
9b5ebc12 262 if (!is_pos_num(w))
1872c5c1 263 usage("[spec] Invalid width: \"%s\", for fifo \"%s\"\n", w, n);
0a01172a 264 if (!is_decimal(t))
1872c5c1 265 usage("[spec] Invalid TTL: \"%s\", for fifo \"%s\"\n", t, n);
0a01172a
SK
266 last_read.tv_sec = 0;
267 last_read.tv_nsec = 0;
1872c5c1 268 Fifo *f = calloc(1, sizeof(struct Fifo));
9b5ebc12 269 if (f) {
4d66492f
SK
270 f->name = n;
271 f->fd = -1;
272 f->width = atoi(w);
0a01172a
SK
273 f->ttl = timespec_of_float(atof(t));
274 f->last_read = last_read;
efa97b71
SK
275 f->pos_init = cfg->total_width;
276 f->pos_curr = f->pos_init;
277 f->pos_final = f->pos_init + f->width - 1;
1872c5c1 278 f->next = cfg->fifos;
4d66492f 279
1872c5c1 280 cfg->fifos = f;
4d66492f 281 cfg->total_width += f->width;
1872c5c1 282 cfg->fifo_count++;
9b5ebc12 283 } else {
4d66492f 284 fatal("[memory] Allocation failure.");
9b5ebc12 285 }
4d66492f 286 opts_parse_any(cfg, argc, argv, i);
9b5ebc12
SK
287}
288
289void
4d66492f 290opts_parse_any(Config *cfg, int argc, char *argv[], int i)
9b5ebc12
SK
291{
292 if (i < argc) {
293 switch (argv[i][0]) {
ce552549
SK
294 case '-':
295 parse_opts_opt(cfg, argc, argv, i);
296 break;
297 default :
298 parse_opts_spec(cfg, argc, argv, i);
4d66492f
SK
299 }
300 }
301}
302
303void
5400b86f 304opts_parse(Config *cfg, int argc, char *argv[])
4d66492f
SK
305{
306 opts_parse_any(cfg, argc, argv, 1);
307
1872c5c1
SK
308 Fifo *last = cfg->fifos;
309 cfg->fifos = NULL;
310 for (Fifo *f = last; f; ) {
311 Fifo *next = f->next;
312 f->next = cfg->fifos;
313 cfg->fifos = f;
4d66492f
SK
314 f = next;
315 }
316}
317
0a01172a
SK
318void
319fifo_expire_one(Fifo *f, struct timespec t, char *buf)
320{
321 struct timespec td;
322
323 timespecsub(&t, &(f->last_read), &td);
324 if (timespeccmp(&td, &(f->ttl), >=)) {
325 /* TODO: Maybe configurable expiry character. */
326 memset(buf + f->pos_init, '_', f->pos_final - f->pos_init);
327 warn("Data source expired: \"%s\"\n", f->name);
328 }
329}
330
331void
332fifo_expire_all(Config *cfg, struct timespec t, char *buf)
333{
334 Fifo *f;
335
336 for (f = cfg->fifos; f; f = f->next)
337 fifo_expire_one(f, t, buf);
338}
339
e6c523cd 340void
69b75a40 341fifo_read_error(Fifo *f, char *buf)
e6c523cd
SK
342{
343 char *b;
344 int i;
345
efa97b71 346 b = buf + f->pos_init;
e6c523cd 347 /* Copy as much of the error message as possible.
17e4ecd5 348 * EXCLUDING the terminating \0. */
e6c523cd
SK
349 for (i = 0; i < errlen && i < f->width; i++)
350 b[i] = errmsg[i];
351 /* Any remaining slots: */
352 for (; i < f->width; i++)
353 b[i] = '_';
354}
355
efa97b71 356enum read_status
0a01172a 357fifo_read_one(Fifo *f, struct timespec t, char *buf)
77c76070 358{
03ed0008
SK
359 char c; /* Character read. */
360 int r; /* Remaining unused slots in buffer range. */
77c76070 361
efa97b71 362 for (;;) {
03ed0008 363 switch (read(f->fd, &c, 1)) {
efa97b71
SK
364 case -1:
365 error("Failed to read: \"%s\". errno: %d, msg: %s\n",
366 f->name, errno, strerror(errno));
e6441710 367 switch (errno) {
8ce5d971 368 case EINTR:
e6441710
SK
369 case EAGAIN:
370 return RETRY;
371 default:
372 return FAILURE;
373 }
efa97b71
SK
374 case 0:
375 debug("%s: End of FILE\n", f->name);
376 f->pos_curr = f->pos_init;
377 return END_OF_FILE;
378 case 1:
379 /* TODO: Consider making msg term char a CLI option */
380 if (c == '\n' || c == '\0') {
381 r = f->pos_final - f->pos_curr;
382 if (r > 0)
383 memset(buf + f->pos_curr, ' ', r);
384 f->pos_curr = f->pos_init;
0a01172a 385 f->last_read = t;
efa97b71
SK
386 return END_OF_MESSAGE;
387 } else {
388 if (f->pos_curr <= f->pos_final)
389 buf[f->pos_curr++] = c;
390 /* Drop beyond available range. */
391 }
392 break;
393 default:
394 assert(0);
395 }
574a4bff 396 }
77c76070
SK
397}
398
a415999c 399void
eb6dbe7a 400fifo_read_all(Config *cfg, struct timespec *ti, char *buf)
4d66492f 401{
77c76070 402 fd_set fds;
bfab34f8 403 int maxfd = -1;
a415999c 404 int ready = 0;
bec93767 405 struct stat st;
0741fd04 406 struct timespec t;
77c76070
SK
407
408 FD_ZERO(&fds);
1872c5c1 409 for (Fifo *f = cfg->fifos; f; f = f->next) {
bec93767 410 /* TODO: Create the FIFO if it doesn't already exist. */
e6c523cd
SK
411 if (lstat(f->name, &st) < 0) {
412 error("Cannot stat \"%s\". Error: %s\n", f->name, strerror(errno));
69b75a40 413 fifo_read_error(f, buf);
e6c523cd
SK
414 continue;
415 }
416 if (!(st.st_mode & S_IFIFO)) {
417 error("\"%s\" is not a FIFO\n", f->name);
69b75a40 418 fifo_read_error(f, buf);
e6c523cd
SK
419 continue;
420 }
efa97b71
SK
421 if (f->fd < 0) {
422 debug("%s: closed. opening. fd: %d\n", f->name, f->fd);
77c76070 423 f->fd = open(f->name, O_RDONLY | O_NONBLOCK);
efa97b71
SK
424 } else {
425 debug("%s: already openned. fd: %d\n", f->name, f->fd);
426 }
e6c523cd 427 if (f->fd == -1) {
1872c5c1 428 /* TODO: Consider backing off retries for failed fifos. */
e6c523cd 429 error("Failed to open \"%s\"\n", f->name);
69b75a40 430 fifo_read_error(f, buf);
e6c523cd
SK
431 continue;
432 }
efa97b71 433 debug("%s: open. fd: %d\n", f->name, f->fd);
77c76070
SK
434 if (f->fd > maxfd)
435 maxfd = f->fd;
436 FD_SET(f->fd, &fds);
437 }
438 debug("selecting...\n");
eb6dbe7a 439 ready = pselect(maxfd + 1, &fds, NULL, NULL, ti, NULL);
77c76070 440 debug("ready: %d\n", ready);
eb6dbe7a 441 assert(ready >= 0);
0741fd04 442 clock_gettime(CLOCK_MONOTONIC, &t);
a415999c
SK
443 while (ready) {
444 for (Fifo *f = cfg->fifos; f; f = f->next) {
445 if (FD_ISSET(f->fd, &fds)) {
446 debug("reading: %s\n", f->name);
0a01172a 447 switch (fifo_read_one(f, t, buf)) {
a415999c
SK
448 /*
449 * ### MESSAGE LOSS ###
450 * is introduced by closing at EOM in addition
451 * to EOF, since there may be unread messages
452 * remaining in the pipe. However,
453 *
454 * ### INTER-MESSAGE PUSHBACK ###
455 * is also gained, since pipes block at the
456 * "open" call.
457 *
458 * This is an acceptable trade-off because we
459 * are a stateless reporter of a _most-recent_
460 * status, not a stateful accumulator.
461 */
462 case END_OF_MESSAGE:
463 case END_OF_FILE:
464 case FAILURE:
465 close(f->fd);
466 f->fd = -1;
467 ready--;
468 break;
469 case RETRY:
470 break;
471 default:
472 assert(0);
473 }
efa97b71 474 }
b7487ec5
SK
475 }
476 }
a415999c 477 assert(ready == 0);
b7487ec5
SK
478}
479
9b5ebc12 480int
4d66492f 481main(int argc, char *argv[])
9b5ebc12 482{
f277f405 483 int width = 0;
1872c5c1 484 int nfifos = 0;
f277f405 485 int seplen = 0;
4d66492f 486 int prefix = 0;
e6c523cd 487 int errors = 0;
4d66492f 488 char *buf;
a6d4c9c3
SK
489 Config cfg0 = defaults;
490 Config *cfg = &cfg0;
bfab34f8 491 Display *display = NULL;
e6c523cd 492 struct stat st;
b7487ec5
SK
493 struct timespec
494 t0, /* time stamp. before reading fifos */
495 t1, /* time stamp. after reading fifos */
496 ti, /* time interval desired (t1 - t0) */
497 td, /* time interval measured (t1 - t0) */
498 tc; /* time interval correction (ti - td) when td < ti */
4d66492f
SK
499
500 argv0 = argv[0];
501
5400b86f 502 opts_parse(cfg, argc, argv);
4d66492f 503 debug("argv0 = %s\n", argv0);
77c76070 504 config_print(cfg);
b7487ec5 505
348d5f36 506 ti = timespec_of_float(cfg->interval);
b7487ec5 507
1872c5c1
SK
508 if (cfg->fifos == NULL)
509 usage("No fifo specs were given!\n");
4d66492f 510
e6c523cd
SK
511 /* 1st pass to check file existence and type */
512 for (Fifo *f = cfg->fifos; f; f = f->next) {
513 if (lstat(f->name, &st) < 0) {
514 error("Cannot stat \"%s\". Error: %s\n", f->name, strerror(errno));
515 errors++;
516 continue;
517 }
518 if (!(st.st_mode & S_IFIFO)) {
519 error("\"%s\" is not a FIFO\n", f->name);
520 errors++;
521 continue;
522 }
523 }
524 if (errors)
525 fatal("Encountered errors with the given file paths. See log.\n");
526
4d66492f
SK
527 width = cfg->total_width;
528 seplen = strlen(cfg->separator);
529
e6c523cd 530 /* 2nd pass to make space for separators */
1872c5c1 531 for (Fifo *f = cfg->fifos; f; f = f->next) {
efa97b71
SK
532 f->pos_init += prefix;
533 f->pos_final += prefix;
534 f->pos_curr = f->pos_init;
4d66492f 535 prefix += seplen;
1872c5c1 536 nfifos++;
4d66492f 537 }
1872c5c1 538 width += (seplen * (nfifos - 1));
3c836bfd 539 buf = calloc(1, width + 1);
4d66492f
SK
540 if (buf == NULL)
541 fatal("[memory] Failed to allocate buffer of %d bytes", width);
542 memset(buf, ' ', width);
543 buf[width] = '\0';
e6c523cd 544 /* 3rd pass to set the separators */
1872c5c1 545 for (Fifo *f = cfg->fifos; f; f = f->next) {
efa97b71 546 if (f->pos_init) { /* Skip the first, left-most */
77c76070 547 /* Copying only seplen ensures we omit the '\0' byte. */
efa97b71 548 strncpy(buf + (f->pos_init - seplen), cfg->separator, seplen);
4d66492f
SK
549 }
550 }
551
fabb8771
SK
552 if (cfg->output_to_x_root_window && !(display = XOpenDisplay(NULL)))
553 fatal("XOpenDisplay failed with: %p\n", display);
805f0d22 554 /* TODO: Handle signals */
4d66492f 555 for (;;) {
b7487ec5 556 clock_gettime(CLOCK_MONOTONIC, &t0); // FIXME: check errors
eb6dbe7a 557 fifo_read_all(cfg, &ti, buf);
fabb8771
SK
558 if (cfg->output_to_x_root_window) {
559 if (XStoreName(display, DefaultRootWindow(display), buf) < 0)
560 fatal("XStoreName failed.\n");
561 XFlush(display);
562 } else {
563 puts(buf);
564 fflush(stdout);
565 }
0a01172a
SK
566
567 /*
568 * This is a good place for expiry check, since we're about to
569 * sleep anyway and the time taken by the check will be
570 * subtracted from the sleep period.
571 */
572 fifo_expire_all(cfg, t0, buf);
573
b7487ec5
SK
574 clock_gettime(CLOCK_MONOTONIC, &t1); // FIXME: check errors
575 timespecsub(&t1, &t0, &td);
576 debug("td {tv_sec = %ld, tv_nsec = %ld}\n", td.tv_sec, td.tv_nsec);
a415999c 577 if (timespeccmp(&td, &ti, <)) {
b7487ec5
SK
578 /* Pushback on data producers by refusing to read the
579 * pipe more frequently than the interval.
580 */
581 timespecsub(&ti, &td, &tc);
582 debug("snooze YES\n");
17a27e48 583 snooze(&tc);
574a4bff 584 } else {
b7487ec5 585 debug("snooze NO\n");
574a4bff 586 }
4d66492f 587 }
3d7e82a8
SK
588
589 return EXIT_SUCCESS;
9b5ebc12 590}
This page took 0.137787 seconds and 4 git commands to generate.