]> git.itanic.dy.fi Git - glucose/blob - main.c
Fixed option handling.
[glucose] / main.c
1 /*
2  * Copyright (C) 2012 Timo Kokkonen <timo.t.kokkonen@iki.fi>
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
17  * USA
18  */
19
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <unistd.h>
23 #include <linux/types.h>
24 #include <sys/types.h>
25 #include <sys/stat.h>
26 #include <fcntl.h>
27 #include <string.h>
28 #include <errno.h>
29
30 #include "hiddev.h"
31 #include "utils.h"
32 #include "options.h"
33 #include "contour-protocol.h"
34
35 char *token(char **str, char sep);
36
37 int main(int argc, char *argv[])
38 {
39         FILE *outf;
40         struct user_options opts = { .usbdev = NULL, .output_path = NULL, .output_format = CLEAN, .trace_level = 0 };
41         struct msg msg;
42         int fd, usage_code, ret, error;
43         int entries = 0;
44
45         if ( read_args(argc, argv, &opts) )
46                 return -1;
47
48         trace_level = opts.trace_level;
49
50         if (opts.output_path) {
51                 outf = fopen(opts.output_path, "w");
52                 if (outf == NULL) {
53                         error = errno;
54                         trace(0, "Failed to open output file %s: %s\n",
55                                 opts.output_path, strerror(error));
56                         return 1;
57                 }
58         } else {
59                 outf = stdout;
60         }
61
62         if (opts.usbdev == NULL)
63                 fd = wait_for_device(CONTOUR_USB_VENDOR_ID,
64                                 CONTOUR_USB_PRODUCT_ID, &usage_code);
65         else
66                 fd = hiddev_open(opts.usbdev, &usage_code);
67         if (fd < 0)
68                 return 1;
69         trace(0, "Initializing\n");
70         contour_initialize(fd, usage_code);
71
72         trace(0, "Done! Reading data\n");
73         if ( opts.output_format == CSV )
74                 fprintf(outf, "#,Time,Type,Value,Unit,Before meal,After meal,Stress,Sick,Dont feel right,Activity,Control test\n");
75
76         while (1) {
77                 ret = contour_read_entry(fd, usage_code, &msg);
78                 if (ret < 45)
79                         break;
80
81                 if ( opts.output_format == CSV ) {
82                         char *tok = (char *) &msg.data;
83                                       token(&tok, '|');  // unknown
84                         char *seq =   token(&tok, '|');
85                         char *type =  token(&tok, '|');
86                         char *val =   token(&tok, '|');
87                         char *unit =  token(&tok, '|');
88                                       token(&tok, '|');  // unknown
89                         char *notes = token(&tok, '|');
90                                       token(&tok, '|');  // unknown
91                         char *time =  token(&tok, '\r');
92                         unit[strlen(unit)-2] = 0;
93                         fprintf(outf, "%s,%.4s-%.2s-%.2s %.2s:%.2s,%s,%s,%s,%s,%s,%s,%s,%s,%s,%s\n",
94                                 seq, &time[0], &time[4], &time[6], &time[8], &time[10], &type[3], val, unit,
95                                 strchr(notes, 'B') ? "X" : "", strchr(notes, 'A') ? "X" : "",
96                                 strchr(notes, 'S') ? "X" : "", strchr(notes, 'I') ? "X" : "",
97                                 strchr(notes, 'D') ? "X" : "", strchr(notes, 'X') ? "X" : "",
98                                 strchr(notes, 'C') ? "X" : ""
99                         );
100                 } else
101                 if ( opts.output_format == CLEAN ) {
102                         sanitize_ascii(msg.data, ret);
103                         fprintf(outf, "%s\n", msg.data);
104                 } else
105                 if ( opts.output_format == RAW ) {
106                         fprintf(outf, "%s", msg.data);
107                 }
108
109                 entries++;
110                 if (outf != stdout) {
111                         trace(0, "\r%d", entries);
112                         fflush(stdout);
113                 }
114         }
115         trace(0, "\n");
116
117         return 0;
118 }
119
120 char *token(char **str, char sep)
121 {
122   char *start = *str;
123   char *cur;
124   for ( cur = start; *cur && (*cur != sep); ++cur ) ;
125   *cur = 0;
126   *str = cur+1;
127   return start;
128 }