specials: convert stippled_hr object to new style
[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         buf = scan_graph(obj, arg);
147
148         obj->data.opaque = prepare_diskio_stat(dev_name(buf));
149         if (buf)
150                 free(buf);
151 }
152
153 void print_diskiograph(struct text_object *obj, int dir, char *p)
154 {
155         struct diskio_stat *diskio = obj->data.opaque;
156         double val;
157
158         if (!diskio)
159                 return;
160
161         if (dir < 0)
162                 val = diskio->current_read;
163         else if (dir == 0)
164                 val = diskio->current;
165         else
166                 val = diskio->current_write;
167
168         new_graph(obj, p, val);
169 }
170 #endif /* X11 */
171
172 void update_diskio_values(struct diskio_stat *ds,
173                 unsigned int reads, unsigned int writes)
174 {
175         int i;
176         double sum=0, sum_r=0, sum_w=0;
177
178         if (reads < ds->last_read || writes < ds->last_write) {
179                 /* counter overflow or reset - rebase to sane values */
180                 ds->last = reads+writes;
181                 ds->last_read = reads;
182                 ds->last_write = writes;
183         }
184         /* since the values in /proc/diskstats are absolute, we have to substract
185          * our last reading. The numbers stand for "sectors read", and we therefore
186          * have to divide by two to get KB */
187         ds->sample_read[0] = (reads - ds->last_read) / 2;
188         ds->sample_write[0] = (writes - ds->last_write) / 2;
189         ds->sample[0] = ds->sample_read[0] + ds->sample_write[0];
190
191         /* compute averages */
192         for (i = 0; i < (signed) info.diskio_avg_samples; i++) {
193                 sum += ds->sample[i];
194                 sum_r += ds->sample_read[i];
195                 sum_w += ds->sample_write[i];
196         }
197         ds->current = sum / (double) info.diskio_avg_samples;
198         ds->current_read = sum_r / (double) info.diskio_avg_samples;
199         ds->current_write = sum_w / (double) info.diskio_avg_samples;
200
201         /* shift sample history */
202         for (i = info.diskio_avg_samples-1; i > 0; i--) {
203                 ds->sample[i] = ds->sample[i-1];
204                 ds->sample_read[i] = ds->sample_read[i-1];
205                 ds->sample_write[i] = ds->sample_write[i-1];
206         }
207
208         /* save last */
209         ds->last_read = reads;
210         ds->last_write = writes;
211         ds->last = ds->last_read + ds->last_write;
212 }
213