avoid to store unknown values for the sensor
[psensor.git] / src / lib / cpu.c
1 /*
2  * Copyright (C) 2010-2014 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 <string.h>
24
25 #include <glibtop/cpu.h>
26
27 #include "cpu.h"
28
29 static float last_used;
30 static float last_total;
31
32 static const char *PROVIDER_NAME = "gtop2";
33
34 struct psensor *create_cpu_usage_sensor(int measures_len)
35 {
36         char *label, *id;
37         int type;
38         struct psensor *psensor;
39
40         id = g_strdup_printf("%s cpu usage", PROVIDER_NAME);
41         label = strdup(_("CPU usage"));
42         type = SENSOR_TYPE_GTOP | SENSOR_TYPE_CPU_USAGE;
43
44         psensor = psensor_create(id,
45                                  label,
46                                  strdup(_("CPU")),
47                                  type,
48                                  measures_len);
49
50         return psensor;
51 }
52
53 struct psensor * *
54 cpu_psensor_list_add(struct psensor **sensors, int measures_len)
55 {
56         struct psensor *s;
57
58         s = create_cpu_usage_sensor(measures_len);
59
60         return psensor_list_add(sensors, s);
61 }
62
63 static double get_usage()
64 {
65         glibtop_cpu cpu;
66         unsigned long int used;
67         unsigned long int dt;
68         double cpu_rate;
69
70         glibtop_get_cpu(&cpu);
71
72         used = cpu.user + cpu.nice + cpu.sys;
73
74         dt = cpu.total - last_total;
75
76         if (dt)
77                 cpu_rate = 100.0 * (used - last_used) / dt;
78         else
79                 cpu_rate = UNKNOWN_DBL_VALUE;
80
81         last_used = used;
82         last_total = cpu.total;
83
84         return cpu_rate;
85 }
86
87 void cpu_usage_sensor_update(struct psensor *s)
88 {
89         double v;
90
91         v = get_usage();
92
93         if (v != UNKNOWN_DBL_VALUE)
94                 psensor_set_current_value(s, v);
95 }
96
97 void cpu_psensor_list_update(struct psensor **sensors)
98 {
99         struct psensor *s;
100
101         while (*sensors) {
102                 s = *sensors;
103
104                 if (s->type & SENSOR_TYPE_GTOP
105                     && s->type & SENSOR_TYPE_CPU_USAGE)
106                         cpu_usage_sensor_update(s);
107
108                 sensors++;
109         }
110 }