fixe trailing space and empty lines
[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 void sysinfo_update(struct psysinfo *info)
31 {
32         unsigned long int used = 0;
33         unsigned long int dt;
34
35         /* cpu */
36         if (!cpu)
37                 cpu = malloc(sizeof(glibtop_cpu));
38
39         glibtop_get_cpu(cpu);
40
41         used = cpu->user + cpu->nice + cpu->sys;
42
43         dt = cpu->total - last_total;
44
45         if (dt)
46                 info->cpu_rate = (used - last_used) / dt;
47
48         last_used = used;
49         last_total = cpu->total;
50
51         /* memory */
52         sysinfo(&info->sysinfo);
53 }
54
55 void sysinfo_cleanup()
56 {
57         if (cpu)
58                 free(cpu);
59 }