add averaging
[trinked.git] / main.c
diff --git a/main.c b/main.c
index 3b689d8..7c48a37 100644 (file)
--- a/main.c
+++ b/main.c
@@ -7,10 +7,10 @@
  * modification, are permitted provided that the following conditions
  * are met:
  * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer.
+ *       notice, this list of conditions and the following disclaimer.
  * 2. Redistributions in binary form must reproduce the above copyright
- *    notice, this list of conditions and the following disclaimer in the
- *    documentation and/or other materials provided with the distribution.
+ *       notice, this list of conditions and the following disclaimer in the
+ *       documentation and/or other materials provided with the distribution.
  *
  * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 #include <trinket.h>
 
 static char*   dbdir = NULL;
-static int             period = (300); /* in seconds */
+static int             period = 300; /* in seconds */
+static int             tics = 1;
 static char*   pidfile = NULL;
 static char*   logfile = NULL;
 static bool            daemonize = false;
+static bool            workaround = false;
 static char            tfile[MAXPATHLEN],
                                ofile[MAXPATHLEN];
 
@@ -51,7 +53,7 @@ static void
 usage(const char *errmsg) {
        puts("trinketd - collecting info from AtomPro");
        puts("Copyright (c) 2016, Teodor Sigaev <teodor@sigaev.ru>");
-       puts("trinketd [-d] [-l logfile] [-p pidfile] [-P period] [-D datadir]");
+       puts("trinketd [-d] [-l logfile] [-p pidfile] [-P period] [-D datadir] [-i tics] [-w]");
 
        if (errmsg) {
                puts("");
@@ -63,11 +65,19 @@ usage(const char *errmsg) {
 
 static void
 main_loop() {
-       double  prevDose,
+       double  *prevDose,
                        curDose;
+       int             i;
+       int             collected;
+
+       prevDose = malloc(sizeof(*prevDose) * (tics + 1));
+       if (!prevDose) {
+               fprintf(stderr, "could not allocate array, exiting...\n");
+               return;
+       }
 
 restart:
-       prevDose = -1;
+       collected = 0;
 
        if (trinketOpen() != ERR_OK) {
                fprintf(stderr, "trinketOpen fails\n");
@@ -76,6 +86,10 @@ restart:
        }
 
        while(42) {
+
+               if (workaround)
+                       trinketPing();
+
                if (trinketGetCumDose(&curDose) != ERR_OK) {
                        fprintf(stderr, "trinketGetCumDose fails\n");
                        trinketClose();
@@ -83,9 +97,18 @@ restart:
                        goto restart;
                }
 
-               if (prevDose >= 0.0) {
-                       double  counts = curDose - prevDose;
-                       double  radlevel = 1e6 * coefficient * counts * 3600.0 / (double)period;
+               if (collected <= tics) {
+                       prevDose[collected++] = curDose;
+               } else {
+                       for (i=1; i<=tics; i++)
+                               prevDose[i - 1] = prevDose[i];
+                       prevDose[tics] = curDose;
+               }
+
+               if (collected > 1) {
+                       double  counts = curDose - prevDose[0];
+                       double  radlevel = 1e6 * coefficient * counts * 3600.0 /
+                                                               (double)(period * (collected - 1));
                        FILE    *fh = stdout;
                        bool    successOpen = true;
 
@@ -99,6 +122,7 @@ restart:
                        if (successOpen) {
                                fprintf(fh, "total: %lld\n", (long long)curDose);
                                fprintf(fh, "counts: %lld\n", (long long)counts);
+                               fprintf(fh, "tics: %d\n", collected - 1);
                                fprintf(fh, "radlevel: %.02f\n", radlevel);
                        }
 
@@ -109,7 +133,6 @@ restart:
                        }
                }
 
-               prevDose = curDose;
                sleep(period);
        }
 
@@ -127,7 +150,7 @@ main(int argn, char* argv[]) {
                logfd;
 
        opterr = 0;
-       while((i=getopt(argn,argv,"dD:p:P:h")) != EOF) {
+       while((i=getopt(argn,argv,"dD:i:l:p:P:wh")) != EOF) {
                switch(i) {
                        case 'd':
                                daemonize = true;
@@ -135,12 +158,21 @@ main(int argn, char* argv[]) {
                        case 'D':
                                dbdir = strdup(optarg);
                                break;
+                       case 'i':
+                               tics = atoi(optarg);
+                               break;
+                       case 'l':
+                               logfile = strdup(optarg);
+                               break;
                        case 'p':
                                pidfile = strdup(optarg);
                                break;
                        case 'P':
                                period = atoi(optarg);
                                break;
+                       case 'w':
+                               workaround = true;
+                               break;
                        case 'h':
                        default:
                                usage(NULL);
@@ -153,6 +185,9 @@ main(int argn, char* argv[]) {
        if (period <= 0)
                usage("Collecting period could not be zero nor negative");
 
+       if (tics <= 0)
+               usage("Number of tics could not be zero nor negative");
+
        if (daemonize && !dbdir)
                usage("trinketd: it is useless to use -d without -D");