adding logging of sensors
[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 <sys/time.h>
25
26 #include "config.h"
27 #include "log.h"
28 #include "slog.h"
29
30 static FILE *file;
31 static struct timeval stv;
32
33 int slog_init(const char *path, struct psensor **sensors)
34 {
35         file = fopen(path, "a");
36
37         if (!file) {
38                 log_err(_("Cannot open sensor log file: %s"), path);
39                 return 0;
40         }
41
42         if (gettimeofday(&stv, NULL)) {
43                 log_err(_("slog_init: gettimeofday failed."));
44                 return 0;
45         }
46
47         fprintf(file, "I,%ld,%s\n", stv.tv_sec, VERSION);
48
49         while (*sensors) {
50                 fprintf(file, "S,%s\n", (*sensors)->id);
51                 sensors++;
52         }
53
54         fflush(file);
55
56         return 1;
57 }
58
59 void slog_write_sensors(struct psensor **sensors)
60 {
61         struct timeval tv;
62
63         if (!file)
64                 return ;
65
66         if (gettimeofday(&tv, NULL)) {
67                 log_err(_("slog_write_sensors: gettimeofday failed."));
68                 return ;
69         }
70
71         fprintf(file, "M,%ld", tv.tv_sec - stv.tv_sec);
72         while (*sensors) {
73                 fprintf(file, ",%.1f", psensor_get_current_value(*sensors));
74                 sensors++;
75         }
76         fputc('\n', file);
77
78         fflush(file);
79 }
80
81 void slog_close()
82 {
83         if (file)
84                 fclose(file);
85 }