chiark / gitweb /
log copy feature - not yet tested
[trains.git] / hostside / daemons.h
1 /*
2  * declarations common to
3  *  - realtime daemon
4  *  - multiplexer daemon
5  */
6
7 #ifndef DAEMONS_H
8 #define DAEMONS_H
9
10 #include <oop.h>
11 #include <oop-read.h>
12
13 #include "common.h"
14
15 typedef struct CommandInput CommandInput;
16
17 /*---------- from obc.c ----------*/
18
19 typedef struct OutBuffer OutBuffer;
20 typedef struct OutBufferChain OutBufferChain;
21 typedef void OutBufferError(OutBufferChain*, const char *e1, const char *e2
22                             /* on error: both e1 and e2 non-0. say `$e1: $e2'
23                              * on eof: both e1 and e2 =0. */);
24
25 struct OutBufferChain {
26   /* set by user: */
27   char *desc;
28   int fd;
29   FILE *logcopy;
30   int limit; /* 0 means obc_init will set a default */
31   OutBufferError *error;
32   /* set/used by obc_..., oprintf, etc., only */
33   int done_of_head, total;
34   struct { OutBuffer *head, *tail; } obs;
35 };
36
37 void obc_init(OutBufferChain *ch);
38 void obc_init_core(OutBufferChain *ch); /* doesn't mess with fd */
39 int obc_tryflush(OutBufferChain *ch);
40  /* returns 0 for all flushed or errno, including particularly EWOULDBLOCK */
41
42 void ovprintf(OutBufferChain *ch, const char *fmt, va_list al)
43      __attribute__((format(printf,2,0)));
44 void oprintf(OutBufferChain *ch, const char *msg, ...)
45      __attribute__((format(printf,2,3)));
46 void owrite(OutBufferChain *ch, const char *data, int l);
47 void voerror(OutBufferChain *ch, const char *fmt, va_list al)
48      __attribute__((format(printf,2,0)));
49
50 /*---------- from cmdinput.c ----------*/
51
52 extern oop_source *events;
53
54 typedef void CommandInputCallback(ParseState *ps, CommandInput *cmdi);
55
56 struct CommandInput {
57   OutBufferChain out;
58   CommandInputCallback *doline;
59   oop_read *rd;
60 };
61
62 void cmdin_new(CommandInput *cmdi, int readfd);
63   /* fill in cmdi->out's `set by user' fields before calling cmdin_new,
64    * as cmdin_new will call obc_init and will use cmdi->out->fd. */
65
66 #endif /*DAEMONS_H*/