Fix device name parsing for diskio variables.
[monky] / src / diskio.c
1 /* -*- mode: c; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: t -*-
2  * vim: ts=4 sw=4 noet ai cindent syntax=c
3  *
4  * Conky, a system monitor, based on torsmo
5  *
6  * Any original torsmo code is licensed under the BSD license
7  *
8  * All code written since the fork of torsmo is licensed under the GPL
9  *
10  * Please see COPYING for details
11  *
12  * Copyright (c) 2004, Hannu Saransaari and Lauri Hakkarainen
13  * Copyright (c) 2005-2010 Brenden Matthews, Philip Kovacs, et. al.
14  * (see AUTHORS)
15  * All rights reserved.
16  *
17  * This program is free software: you can redistribute it and/or modify
18  * it under the terms of the GNU General Public License as published by
19  * the Free Software Foundation, either version 3 of the License, or
20  * (at your option) any later version.
21  *
22  * This program is distributed in the hope that it will be useful,
23  * but WITHOUT ANY WARRANTY; without even the implied warranty of
24  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
25  * GNU General Public License for more details.
26  * You should have received a copy of the GNU General Public License
27  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
28  *
29  */
30
31 #include "config.h"
32 #include "conky.h"      /* text_buffer_size */
33 #include "core.h"
34 #include "logging.h"
35 #include "diskio.h"
36 #include "common.h"
37 #include "specials.h"
38 #include "text_object.h"
39 #include <stdlib.h>
40 #include <limits.h>
41 #include <sys/stat.h>
42
43 /* this is the root of all per disk stats,
44  * also containing the totals. */
45 struct diskio_stat stats = {
46         .next = NULL,
47         .sample = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
48         .sample_read = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
49         .sample_write = {0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
50         .current = 0,
51         .current_read = 0,
52         .current_write = 0,
53         .last = UINT_MAX,
54         .last_read = UINT_MAX,
55         .last_write = UINT_MAX,
56 };
57
58 void clear_diskio_stats(void)
59 {
60         struct diskio_stat *cur;
61         while (stats.next) {
62                 cur = stats.next;
63                 stats.next = stats.next->next;
64                 if (cur->dev)
65                         free(cur->dev);
66                 free(cur);
67         }
68 }
69
70 struct diskio_stat *prepare_diskio_stat(const char *s)
71 {
72         struct stat sb;
73         char stat_name[text_buffer_size], device_name[text_buffer_size];
74         struct diskio_stat *cur = &stats;
75
76         if (!s)
77                 return &stats;
78
79         strncpy(device_name, s, text_buffer_size);
80
81         snprintf(stat_name, text_buffer_size, "/dev/%s", device_name);
82
83         if (stat(stat_name, &sb)) {
84                 NORM_ERR("diskio device '%s' does not exist", s);
85         }
86
87         /* lookup existing */
88         while (cur->next) {
89                 cur = cur->next;
90                 if (!strcmp(cur->dev, device_name)) {
91                         return cur;
92                 }
93         }
94
95         /* no existing found, make a new one */
96         cur->next = calloc(1, sizeof(struct diskio_stat));
97         cur = cur->next;
98         cur->dev = strndup(device_name, text_buffer_size);
99         cur->last = UINT_MAX;
100         cur->last_read = UINT_MAX;
101         cur->last_write = UINT_MAX;
102
103         return cur;
104 }
105
106 void parse_diskio_arg(struct text_object *obj, const char *arg)
107 {
108         obj->data.opaque = prepare_diskio_stat(arg);
109 }
110
111 /* dir indicates the direction:
112  * -1: read
113  *  0: read + write
114  *  1: write
115  */
116 static void print_diskio_dir(struct text_object *obj, int dir, char *p, int p_max_size)
117 {
118         struct diskio_stat *diskio = obj->data.opaque;
119         double val;
120
121         if (!diskio)
122                 return;
123
124         if (dir < 0)
125                 val = diskio->current_read;
126         else if (dir == 0)
127                 val = diskio->current;
128         else
129                 val = diskio->current_write;
130
131         /* TODO: move this correction from kB to kB/s elsewhere
132          * (or get rid of it??) */
133         human_readable((val / update_interval) * 1024LL, p, p_max_size);
134 }
135
136 void print_diskio(struct text_object *obj, char *p, int p_max_size)
137 {
138         print_diskio_dir(obj, 0, p, p_max_size);
139 }
140
141 void print_diskio_read(struct text_object *obj, char *p, int p_max_size)
142 {
143         print_diskio_dir(obj, -1, p, p_max_size);
144 }
145
146 void print_diskio_write(struct text_object *obj, char *p, int p_max_size)
147 {
148         print_diskio_dir(obj, 1, p, p_max_size);
149 }
150
151 #ifdef X11
152 void parse_diskiograph_arg(struct text_object *obj, const char *arg)
153 {
154         char *buf = 0;
155         buf = scan_graph(obj, arg, 0);
156
157         obj->data.opaque = prepare_diskio_stat(dev_name(buf));
158         if (buf)
159                 free(buf);
160 }
161
162 static void print_diskiograph_dir(struct text_object *obj, int dir, char *p, int p_max_size)
163 {
164         struct diskio_stat *diskio = obj->data.opaque;
165         double val;
166
167         if (!diskio)
168                 return;
169
170         if (!p_max_size)
171                 return;
172
173         if (dir < 0)
174                 val = diskio->current_read;
175         else if (dir == 0)
176                 val = diskio->current;
177         else
178                 val = diskio->current_write;
179
180         new_graph(obj, p, p_max_size, val);
181 }
182
183 void print_diskiograph(struct text_object *obj, char *p, int p_max_size)
184 {
185         print_diskiograph_dir(obj, 0, p, p_max_size);
186 }
187
188 void print_diskiograph_read(struct text_object *obj, char *p, int p_max_size)
189 {
190         print_diskiograph_dir(obj, -1, p, p_max_size);
191 }
192
193 void print_diskiograph_write(struct text_object *obj, char *p, int p_max_size)
194 {
195         print_diskiograph_dir(obj, 1, p, p_max_size);
196 }
197 #endif /* X11 */
198
199 void update_diskio_values(struct diskio_stat *ds,
200                 unsigned int reads, unsigned int writes)
201 {
202         int i;
203         double sum=0, sum_r=0, sum_w=0;
204
205         if (reads < ds->last_read || writes < ds->last_write) {
206                 /* counter overflow or reset - rebase to sane values */
207                 ds->last = reads+writes;
208                 ds->last_read = reads;
209                 ds->last_write = writes;
210         }
211         /* since the values in /proc/diskstats are absolute, we have to subtract
212          * our last reading. The numbers stand for "sectors read", and we therefore
213          * have to divide by two to get KB */
214         ds->sample_read[0] = (reads - ds->last_read) / 2;
215         ds->sample_write[0] = (writes - ds->last_write) / 2;
216         ds->sample[0] = ds->sample_read[0] + ds->sample_write[0];
217
218         /* compute averages */
219         for (i = 0; i < (signed) info.diskio_avg_samples; i++) {
220                 sum += ds->sample[i];
221                 sum_r += ds->sample_read[i];
222                 sum_w += ds->sample_write[i];
223         }
224         ds->current = sum / (double) info.diskio_avg_samples;
225         ds->current_read = sum_r / (double) info.diskio_avg_samples;
226         ds->current_write = sum_w / (double) info.diskio_avg_samples;
227
228         /* shift sample history */
229         for (i = info.diskio_avg_samples-1; i > 0; i--) {
230                 ds->sample[i] = ds->sample[i-1];
231                 ds->sample_read[i] = ds->sample_read[i-1];
232                 ds->sample_write[i] = ds->sample_write[i-1];
233         }
234
235         /* save last */
236         ds->last_read = reads;
237         ds->last_write = writes;
238         ds->last = ds->last_read + ds->last_write;
239 }
240