added support of free memory.
[psensor.git] / src / lib / pmem.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 <glibtop/mem.h>
24
25 #include <pmem.h>
26
27 static const char *ID_MEM_FREE = "sys memory free";
28
29 void mem_psensor_list_update(struct psensor **sensors)
30 {
31         struct psensor *s;
32         glibtop_mem mem;
33         double v;
34
35         while (*sensors) {
36                 s = *sensors;
37
38                 if (!strcmp(s->id, ID_MEM_FREE)) {
39                         glibtop_get_mem(&mem);
40                         v = mem.free * 100 / mem.total;
41
42                         psensor_set_current_value(s, v);
43                 }
44
45                 sensors++;
46         }
47 }
48
49 void mem_psensor_list_add(struct psensor ***sensors, int values_max_len)
50 {
51         struct psensor *s;
52
53         s = psensor_create(strdup(ID_MEM_FREE),
54                            _("free memory"),
55                            _("memory"),
56                            SENSOR_TYPE_MEMORY | SENSOR_TYPE_PERCENT,
57                            values_max_len);
58
59         psensor_list_append(sensors, s);
60 }