mail: convert to generic object payload
[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-2009 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 #if defined(__FreeBSD__)
80         if (strncmp(s, "/dev/", 5) == 0) {
81                 // supplied a /dev/device arg, so cut off the /dev part
82                 strncpy(device_name, s + 5, text_buffer_size);
83         } else
84 #endif
85         strncpy(device_name, s, text_buffer_size);
86
87         snprintf(stat_name, text_buffer_size, "/dev/%s", device_name);
88
89         if (stat(stat_name, &sb)) {
90                 NORM_ERR("diskio device '%s' does not exist", s);
91         }
92
93         /* lookup existing */
94         while (cur->next) {
95                 cur = cur->next;
96                 if (!strcmp(cur->dev, device_name)) {
97                         return cur;
98                 }
99         }
100
101         /* no existing found, make a new one */
102         cur->next = calloc(1, sizeof(struct diskio_stat));
103         cur = cur->next;
104         cur->dev = strndup(device_name, text_buffer_size);
105         cur->last = UINT_MAX;
106         cur->last_read = UINT_MAX;
107         cur->last_write = UINT_MAX;
108
109         return cur;
110 }
111
112 void parse_diskio_arg(struct text_object *obj, const char *arg)
113 {
114         obj->data.opaque = prepare_diskio_stat(arg);
115 }
116
117 /* dir indicates the direction:
118  * -1: read
119  *  0: read + write
120  *  1: write
121  */
122 void print_diskio(struct text_object *obj, int dir, char *p, int p_max_size)
123 {
124         struct diskio_stat *diskio = obj->data.opaque;
125         double val;
126
127         if (!diskio)
128                 return;
129
130         if (dir < 0)
131                 val = diskio->current_read;
132         if (dir == 0)
133                 val = diskio->current;
134         else
135                 val = diskio->current_write;
136
137         /* TODO: move this correction from kB to kB/s elsewhere
138          * (or get rid of it??) */
139         human_readable((val / update_interval) * 1024LL, p, p_max_size);
140 }
141
142 #ifdef X11
143 void parse_diskiograph_arg(struct text_object *obj, const char *arg)
144 {
145         char *buf = 0;
146         SIZE_DEFAULTS(graph);
147         buf = scan_graph(arg, &obj->a, &obj->b, &obj->c, &obj->d,
148                         &obj->e, &obj->char_a, &obj->char_b);
149
150         obj->data.opaque = prepare_diskio_stat(dev_name(buf));
151         if (buf)
152                 free(buf);
153 }
154
155 void print_diskiograph(struct text_object *obj, int dir, char *p)
156 {
157         struct diskio_stat *diskio = obj->data.opaque;
158         double val;
159
160         if (!diskio)
161                 return;
162
163         if (dir < 0)
164                 val = diskio->current_read;
165         else if (dir == 0)
166                 val = diskio->current;
167         else
168                 val = diskio->current_write;
169
170         new_graph(p, obj->a, obj->b, obj->c, obj->d,
171                         val, obj->e, 1, obj->char_a, obj->char_b);
172 }
173 #endif /* X11 */
174
175 void update_diskio_values(struct diskio_stat *ds,
176                 unsigned int reads, unsigned int writes)
177 {
178         int i;
179         double sum=0, sum_r=0, sum_w=0;
180
181         if (reads < ds->last_read || writes < ds->last_write) {
182                 /* counter overflow or reset - rebase to sane values */
183                 ds->last = reads+writes;
184                 ds->last_read = reads;
185                 ds->last_write = writes;
186         }
187         /* since the values in /proc/diskstats are absolute, we have to substract
188          * our last reading. The numbers stand for "sectors read", and we therefore
189          * have to divide by two to get KB */
190         ds->sample_read[0] = (reads - ds->last_read) / 2;
191         ds->sample_write[0] = (writes - ds->last_write) / 2;
192         ds->sample[0] = ds->sample_read[0] + ds->sample_write[0];
193
194         /* compute averages */
195         for (i = 0; i < (signed) info.diskio_avg_samples; i++) {
196                 sum += ds->sample[i];
197                 sum_r += ds->sample_read[i];
198                 sum_w += ds->sample_write[i];
199         }
200         ds->current = sum / (double) info.diskio_avg_samples;
201         ds->current_read = sum_r / (double) info.diskio_avg_samples;
202         ds->current_write = sum_w / (double) info.diskio_avg_samples;
203
204         /* shift sample history */
205         for (i = info.diskio_avg_samples-1; i > 0; i--) {
206                 ds->sample[i] = ds->sample[i-1];
207                 ds->sample_read[i] = ds->sample_read[i-1];
208                 ds->sample_write[i] = ds->sample_write[i-1];
209         }
210
211         /* save last */
212         ds->last_read = reads;
213         ds->last_write = writes;
214         ds->last = ds->last_read + ds->last_write;
215 }
216