removed useless empty lines
[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 void slog_write_sensors(struct psensor **sensors)
63 {
64         int count, i;
65         double v;
66         struct timeval tv;
67         bool first_call;
68
69         if (!file)
70                 return ;
71
72         if (gettimeofday(&tv, NULL)) {
73                 log_err(_("slog_write_sensors: gettimeofday failed."));
74                 return ;
75         }
76
77         count = psensor_list_size(sensors);
78
79         if (last_values) {
80                 first_call = 0;
81         } else {
82                 first_call = 1;
83                 last_values = malloc(count * sizeof(double));
84         }
85
86         fprintf(file, "%ld", tv.tv_sec - stv.tv_sec);
87         for (i = 0; i < count; i++) {
88                 v = psensor_get_current_value(sensors[i]);
89
90                 if (!first_call && last_values[i] == v)
91                         fputc(',', file);
92                 else
93                         fprintf(file, ",%.1f", v);
94
95                 last_values[i] = v;
96         }
97
98         fputc('\n', file);
99
100         fflush(file);
101 }
102
103 void slog_close()
104 {
105         if (file) {
106                 fclose(file);
107                 file = NULL;
108                 free(last_values);
109                 last_values = NULL;
110         }
111 }