fix typo
[trinked.git] / main.c
1 /*-------------------------------------------------------------------------
2  * main.c
3  *
4  * Copyright (c) 2016, Teodor Sigaev <teodor@sigaev.ru>
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *        notice, this list of conditions and the following disclaimer.
11  * 2. Redistributions in binary form must reproduce the above copyright
12  *        notice, this list of conditions and the following disclaimer in the
13  *        documentation and/or other materials provided with the distribution.
14  *
15  * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
19  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  *-------------------------------------------------------------------------
27  */
28
29 #include <errno.h>
30 #include <fcntl.h>
31 #include <stdbool.h>
32 #include <stdio.h>
33 #include <stdlib.h>
34 #include <string.h>
35 #include <unistd.h>
36 #include <hidapi/hidapi.h>
37 #include <sys/param.h>
38
39 #include <tlog.h>
40 #include <trinket.h>
41
42 static char*    dbdir = NULL;
43 static int              period = 300; /* in seconds */
44 static int              tics = 1;
45 static char*    pidfile = NULL;
46 static bool             daemonize = false;
47 static char             tfile[MAXPATHLEN],
48                                 ofile[MAXPATHLEN];
49
50 static const double coefficient = (248e-6 / 2637.0);
51
52 static void
53 usage(const char *errmsg) {
54         puts("trinketd - collecting info from AtomPro");
55         puts("Copyright (c) 2016, Teodor Sigaev <teodor@sigaev.ru>");
56         puts("trinketd [-d] [-p pidfile] [-P period] [-D datadir] [-i tics] [-l logfile");
57
58         if (errmsg) {
59                 puts("");
60                 puts(errmsg);
61         }
62
63         exit(1);
64 }
65
66 static void
67 main_loop() {
68         double  *prevDose,
69                         curDose;
70         int             i;
71         int             collected = 0;
72
73         prevDose = malloc(sizeof(*prevDose) * (tics + 1));
74         if (!prevDose) {
75                 tlog(TL_CRIT, "could not allocate array, exiting...");
76                 return;
77         }
78
79         while(42) {
80
81                 if (trinketOpen() != ERR_OK) {
82                         tlog(TL_ALARM, "trinketOpen fails");
83                         sleep(1);
84                         continue;
85                 }
86
87                 if (trinketGetCumDose(&curDose) != ERR_OK) {
88                         tlog(TL_ALARM, "trinketGetCumDose fails");
89                         trinketClose();
90                         sleep(1);
91                         continue;
92                 }
93
94                 trinketClose();
95
96                 if (collected <= tics) {
97                         prevDose[collected++] = curDose;
98                 } else {
99                         for (i=1; i<=tics; i++)
100                                 prevDose[i - 1] = prevDose[i];
101                         prevDose[tics] = curDose;
102                 }
103
104                 if (collected > 1) {
105                         double  counts = curDose - prevDose[0];
106                         double  radlevel = 1e6 * coefficient * counts * 3600.0 /
107                                                                 (double)(period * (collected - 1));
108                         FILE    *fh = stdout;
109                         bool    successOpen = true;
110
111                         if (daemonize) {
112                                 if ((fh = fopen(tfile, "w")) == NULL) {
113                                         tlog(TL_ALARM, "fopen fails: %s", strerror(errno));
114                                         successOpen = false;
115                                 }
116                         }
117
118                         if (successOpen) {
119                                 fprintf(fh, "total: %lld\n", (long long)curDose);
120                                 fprintf(fh, "counts: %lld\n", (long long)counts);
121                                 fprintf(fh, "tics: %d\n", collected - 1);
122                                 fprintf(fh, "radlevel: %.02f\n", radlevel);
123                         }
124
125                         if (fh && fh != stdout) {
126                                 fflush(fh);
127                                 fclose(fh);
128                                 rename(tfile, ofile);
129                         }
130                 }
131
132                 sleep(period);
133         }
134 }
135
136
137 extern char *optarg;
138 extern int opterr, optind;
139
140 int
141 main(int argn, char* argv[]) {
142         int             i;
143         int             pidfd;
144         char    *logfile = NULL;
145
146         opterr = 0;
147         while((i=getopt(argn,argv,"dD:i:l:p:P:h")) != EOF) {
148                 switch(i) {
149                         case 'd':
150                                 daemonize = true;
151                                 break;
152                         case 'D':
153                                 dbdir = strdup(optarg);
154                                 break;
155                         case 'i':
156                                 tics = atoi(optarg);
157                                 break;
158                         case 'l':
159                                 logfile = strdup(optarg);
160                                 break;
161                         case 'p':
162                                 pidfile = strdup(optarg);
163                                 break;
164                         case 'P':
165                                 period = atoi(optarg);
166                                 break;
167                         case 'h':
168                         default:
169                                 usage(NULL);
170                 }
171         }
172
173         if (opterr || optind != argn)
174                 usage("argument err");
175
176         if (period <= 0)
177                 usage("Collecting period could not be zero nor negative");
178
179         if (tics <= 0)
180                 usage("Number of tics could not be zero nor negative");
181
182         if (daemonize && !dbdir)
183                 usage("trinketd: it is useless to use -d without -D");
184
185         if (dbdir && strlen(dbdir) > MAXPATHLEN - 32)
186                 usage("datadir is too long");
187
188         if (pidfile) {
189                 pidfd = open(pidfile, O_CREAT | O_WRONLY | O_TRUNC, 0666);
190                 if (pidfd < 0)
191                         usage("could not write pidfile");
192         }
193
194         if (daemonize) {
195                 opentlog((logfile == NULL) ? TL_OPEN_SYSLOG : TL_OPEN_FILE,
196                                  TL_INFO, logfile);
197
198                 if (daemon(0, 0) == -1)
199                         tlog(TL_CRIT | TL_EXIT, "could not daemonize");
200         } else {
201                 opentlog(TL_OPEN_STDERR | TL_OPEN_FILE, TL_INFO, logfile);
202         }
203
204
205
206         if (pidfile) {
207                 char pid[64];
208
209                 snprintf(pid, sizeof(pid), "%lld", (long long)getpid());
210                 if (write(pidfd, pid, strlen(pid)) != strlen(pid))
211                         tlog(TL_CRIT | TL_EXIT, "could not write pid");
212                 close(pidfd);
213         }
214
215         tlog(TL_CRIT, "trinketd started, pid: %lld", (long long)getpid());
216
217         if (hid_init() < 0)
218                 tlog(TL_CRIT | TL_EXIT, "hid_init fails");
219
220         if (dbdir) {
221                 snprintf(tfile, MAXPATHLEN, "%s/trinket.tmp", dbdir);
222                 snprintf(ofile, MAXPATHLEN, "%s/trinket.dat", dbdir);
223         }
224
225         main_loop();
226
227         hid_exit();
228         return 0;
229 }