switched from wpitchoune@gmail.com to jeanfi@gmail.com (my usual email)
[psensor.git] / src / server / sysinfo.c
1 /*
2     Copyright (C) 2010-2011 jeanfi@gmail.com
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU 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
20 #include <stdlib.h>
21 #include <glibtop/cpu.h>
22 #include <sys/sysinfo.h>
23
24 #include "sysinfo.h"
25
26 static glibtop_cpu *cpu;
27 static float last_used;
28 static float last_total;
29
30
31 void sysinfo_update(struct psysinfo *info)
32 {
33         unsigned long int used = 0;
34         unsigned long int dt;
35
36         /* cpu */
37         if (!cpu)
38                 cpu = malloc(sizeof(glibtop_cpu));
39
40         glibtop_get_cpu(cpu);
41
42         used = cpu->user + cpu->nice + cpu->sys;
43
44         dt = cpu->total - last_total;
45
46         if (dt)
47                 info->cpu_rate = (used - last_used) / dt;
48
49         last_used = used;
50         last_total = cpu->total;
51
52         /* memory */
53         sysinfo(&info->sysinfo);
54 }
55
56 void sysinfo_cleanup()
57 {
58         if (cpu)
59                 free(cpu);
60 }