7cf2105ac0d5af8262d54f8ac04c674b404310a6
[psensor-pkg-ubuntu.git] / src / lib / cpu.c
1 /*
2  * Copyright (C) 2010-2013 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 glibtop_cpu *cpu;
30 static float last_used;
31 static float last_total;
32
33 struct psensor *create_cpu_usage_sensor(int measures_len)
34 {
35         char *label;
36         int type;
37         char *id;
38         struct psensor *psensor;
39
40         id = strdup("cpu usage");
41         label = strdup("cpu usage");
42         type = SENSOR_TYPE_CPU_USAGE;
43
44         psensor = psensor_create(id, label, strdup("CPU"), type, measures_len);
45
46         return psensor;
47 }
48
49 struct psensor * *
50 cpu_psensor_list_add(struct psensor **sensors, int measures_len)
51 {
52         struct psensor *s;
53
54         s = create_cpu_usage_sensor(measures_len);
55
56         return psensor_list_add(sensors, s);
57 }
58
59 static double get_usage()
60 {
61         unsigned long int used = 0;
62         unsigned long int dt;
63         double cpu_rate = UNKNOWN_DBL_VALUE;
64
65         if (!cpu)
66                 cpu = malloc(sizeof(glibtop_cpu));
67
68         glibtop_get_cpu(cpu);
69
70         used = cpu->user + cpu->nice + cpu->sys;
71
72         dt = cpu->total - last_total;
73
74         if (dt)
75                 cpu_rate = 100 * (used - last_used) / dt;
76
77         last_used = used;
78         last_total = cpu->total;
79
80         return cpu_rate;
81 }
82
83 void cpu_usage_sensor_update(struct psensor *s)
84 {
85         psensor_set_current_value(s, get_usage());
86 }
87
88 void cpu_psensor_list_update(struct psensor **sensors)
89 {
90         struct psensor **ss, *s;
91
92         ss = sensors;
93         while (*ss) {
94                 s = *ss;
95
96                 if (!(s->type & SENSOR_TYPE_REMOTE)
97                     && s->type == SENSOR_TYPE_CPU_USAGE)
98                         cpu_usage_sensor_update(s);
99
100                 ss++;
101         }
102 }
103
104 void cpu_cleanup()
105 {
106         if (cpu)
107                 free(cpu);
108 }