normalize message
[psensor.git] / src / lib / slog.c
1 /*
2  * Copyright (C) 2010-2012 jeanfi@gmail.com
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., 51 Franklin Street, Fifth Floor, Boston, MA
17  * 02110-1301 USA
18  */
19 #include <locale.h>
20 #include <libintl.h>
21 #define _(str) gettext(str)
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <sys/time.h>
26
27 #include "bool.h"
28 #include "config.h"
29 #include "log.h"
30 #include "slog.h"
31
32 static FILE *file;
33 static struct timeval stv;
34 static double *last_values;
35
36 int slog_init(const char *path, struct psensor **sensors)
37 {
38         file = fopen(path, "a");
39
40         if (!file) {
41                 log_err(_("slog_init: cannot open sensor log file: %s"), path);
42                 return 0;
43         }
44
45         if (gettimeofday(&stv, NULL)) {
46                 log_err(_("slog_init: gettimeofday failed."));
47                 return 0;
48         }
49
50         fprintf(file, "I,%ld,%s\n", stv.tv_sec, VERSION);
51
52         while (*sensors) {
53                 fprintf(file, "S,%s,%x\n", (*sensors)->id,  (*sensors)->type);
54                 sensors++;
55         }
56
57         fflush(file);
58
59         return 1;
60 }
61
62
63
64 void slog_write_sensors(struct psensor **sensors)
65 {
66         int count, i;
67         double v;
68         struct timeval tv;
69         bool first_call;
70
71         if (!file)
72                 return ;
73
74         if (gettimeofday(&tv, NULL)) {
75                 log_err(_("slog_write_sensors: gettimeofday failed."));
76                 return ;
77         }
78
79         count = psensor_list_size(sensors);
80
81         if (last_values) {
82                 first_call = 0;
83         } else {
84                 first_call = 1;
85                 last_values = malloc(count * sizeof(double));
86         }
87
88         fprintf(file, "%ld", tv.tv_sec - stv.tv_sec);
89         for (i = 0; i < count; i++) {
90                 v = psensor_get_current_value(sensors[i]);
91
92                 if (!first_call && last_values[i] == v)
93                         fputc(',', file);
94                 else
95                         fprintf(file, ",%.1f", v);
96
97                 last_values[i] = v;
98         }
99
100         fputc('\n', file);
101
102         fflush(file);
103 }
104
105 void slog_close()
106 {
107         if (file) {
108                 fclose(file);
109                 file = NULL;
110                 free(last_values);
111                 last_values = NULL;
112         }
113 }