]> git.itanic.dy.fi Git - rrdd/blob - parser.c
Add support for reading swap usage from meminfo
[rrdd] / parser.c
1 #include <stdlib.h>
2 #include <stdio.h>
3 #include <string.h>
4 #include <error.h>
5
6 #include "parser.h"
7 #include "process.h"
8 #include "string.h"
9 #include "debug.h"
10
11 #define STATFILE "/proc/stat"
12
13 int cpu_parser(char *data)
14 {
15         char buf[1024];
16         char *str = buf;
17         FILE *file = fopen(STATFILE, "r");
18         int user, nice, sys, idle, wait, irq, softirq;
19
20         if (file == NULL) {
21                 pr_err("Failed to open file %s\n", STATFILE);
22                 return -1;
23         }
24
25         if (!fgets(buf, 1024, file)) {
26                 pr_err("Failed to read file %s\n", STATFILE);
27                 fclose(file);
28                 return -1;
29         }
30
31         user    = dec_to_int(str, &str);
32         nice    = dec_to_int(str, &str);
33         sys     = dec_to_int(str, &str);
34         idle    = dec_to_int(str, &str);
35         wait    = dec_to_int(str, &str);
36         irq     = dec_to_int(str, &str);
37         softirq = dec_to_int(str, &str);
38
39         sprintf(data, "%d:%d:%d:%d:%d:%d:%d",
40                 user, nice, sys, idle, wait, irq, softirq);
41
42         fclose(file);
43         return 0;
44 }
45
46 #define MEMFILE "/proc/meminfo"
47
48 int mem_parser(char *data)
49 {
50         char buf[1024], word[1024];
51         int free = 0, buffered = 0, cache = 0, active = 0, inactive = 0,
52                 swapfree = 0, anon = 0, slab = 0, tables = 0, swaptotal = 0;
53         FILE *file = fopen(MEMFILE, "r");
54
55         if (file == NULL) {
56                 pr_err("Failed to open file %s\n", MEMFILE);
57                 return -1;
58         }
59
60         while (fgets(buf, 1024, file)) {
61                 get_word(buf, 0, word, 1024);
62                 
63                 if (!strcmp(word, "MemFree:")) {
64                         free = dec_to_int(buf, 0);
65                 } else if (!strcmp(word, "Buffers:")) {
66                         buffered = dec_to_int(buf, 0);
67                 } else if (!strcmp(word, "Cached:")) {
68                         cache = dec_to_int(buf, 0);
69                 } else if (!strcmp(word, "Active:")) {
70                         active = dec_to_int(buf, 0);
71                 } else if (!strcmp(word, "Inactive:")) {
72                         inactive = dec_to_int(buf, 0);
73                 } else if (!strcmp(word, "SwapFree:")) {
74                         swapfree = dec_to_int(buf, 0);
75                 } else if (!strcmp(word, "AnonPages:")) {
76                                 anon = dec_to_int(buf, 0);
77                 } else if (!strcmp(word, "Slab:")) {
78                         slab = dec_to_int(buf, 0);
79                 } else if (!strcmp(word, "PageTables:")) {
80                         tables = dec_to_int(buf, 0);
81                 } else if (!strcmp(word, "SwapTotal:")) {
82                         swaptotal = dec_to_int(buf, 0);
83                 }
84         }
85         fclose(file);
86
87         sprintf(data, "%f:%f:%f:%f:%f:%f:%f:%f:%f:%f",
88                 free / 1024.0,
89                 buffered / 1024.0,
90                 cache / 1024.0,
91                 active / 1024.0,
92                 inactive / 1024.0,
93                 swapfree / 1024.0,
94                 anon / 1024.0,
95                 slab / 1024.0,
96                 tables / 1024.0,
97                 (swaptotal - swapfree) / 1024.0);
98
99         return 0;
100 }
101
102 int cpu_mem_parser(char *data)
103 {
104         char cpu[1024], mem[1024];
105
106         cpu_parser(cpu);
107         mem_parser(mem);
108         sprintf(data, "%s:%s", cpu, mem);
109
110         return 0;
111 }
112
113 int digitemp_parser(char *data)
114 {
115         const char digitemp_cmd[] = "/usr/bin/digitemp";
116         char *const digitemp_args[] = { "", "-o2", "-a", "-q", 0 };
117         FILE *readf;
118         int pid, ret, error;
119         float t1 = 0, t2 = 0, t3 = 0;
120         char buf[1024];
121
122         pid = run_piped_stream(digitemp_cmd, digitemp_args, 0, &readf, 0);
123         if (pid < 0) {
124                 pr_err("Failed to parse digitemp\n");
125                 sprintf(data, "U:U");
126                 return -1;
127         }
128
129         ret = fscanf(readf, "%f %f %f", &t1, &t2, &t3);
130
131         if (ret != 3) {
132                 error = errno;
133                 pr_err("Failed to parse digitemp output: %s\n",
134                        strerror(error));
135                 sprintf(data, "U:U");
136                 return 1;
137         }
138
139         t2 += 2.16;
140         t3 += -0.44;
141
142         /* Read whatever the process might be still printing out */
143         while (fgets(buf, 1024, readf));
144
145         harvest_zombies(pid);
146         sprintf(data, "%.2f:%.2f", t3, t2);
147         return 0;
148 }
149
150 int digitemp_parser_mod(char *data)
151 {
152         char buf[1024];
153         int ret;
154
155         ret = digitemp_parser(buf);
156         sprintf(data, "U:%s", buf);
157
158         return ret;
159 }