]> git.sur5r.net Git - i3/i3status/blob - src/print_disk_info.c
print_cpu_usage: Fix warnings on non linux
[i3/i3status] / src / print_disk_info.c
1 // vim:ts=4:sw=4:expandtab
2 #include <stdio.h>
3 #include <stdlib.h>
4 #include <string.h>
5 #include <ctype.h>
6 #include <stdint.h>
7 #include <sys/stat.h>
8 #include <sys/statvfs.h>
9 #include <sys/types.h>
10 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || (__OpenBSD__) || defined(__DragonFly__)
11 #include <sys/param.h>
12 #include <sys/mount.h>
13 #else
14 #include <mntent.h>
15 #endif
16 #include <yajl/yajl_gen.h>
17 #include <yajl/yajl_version.h>
18
19 #include "i3status.h"
20
21 #define BINARY_BASE UINT64_C(1024)
22 #define DECIMAL_BASE UINT64_C(1000)
23
24 #define MAX_EXPONENT 4
25
26 static const char *const iec_symbols[MAX_EXPONENT + 1] = {"", "Ki", "Mi", "Gi", "Ti"};
27 static const char *const si_symbols[MAX_EXPONENT + 1] = {"", "k", "M", "G", "T"};
28 static const char *const custom_symbols[MAX_EXPONENT + 1] = {"", "K", "M", "G", "T"};
29
30 /*
31  * Formats bytes according to the given base and set of symbols.
32  *
33  */
34 static int format_bytes(char *outwalk, uint64_t bytes, uint64_t base, const char *const symbols[]) {
35     double size = bytes;
36     int exponent = 0;
37     while (size >= base && exponent < MAX_EXPONENT) {
38         size /= base;
39         exponent += 1;
40     }
41     return sprintf(outwalk, "%.1f %sB", size, symbols[exponent]);
42 }
43
44 /*
45  * Prints the given amount of bytes in a human readable manner.
46  *
47  */
48 static int print_bytes_human(char *outwalk, uint64_t bytes, const char *prefix_type) {
49     if (strcasecmp(prefix_type, "decimal") == 0) {
50         return format_bytes(outwalk, bytes, DECIMAL_BASE, si_symbols);
51     } else if (strcasecmp(prefix_type, "custom") == 0) {
52         return format_bytes(outwalk, bytes, BINARY_BASE, custom_symbols);
53     } else {
54         return format_bytes(outwalk, bytes, BINARY_BASE, iec_symbols);
55     }
56 }
57
58 /*
59  * Determines whether remaining bytes are below given threshold.
60  *
61  */
62 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__OpenBSD__) || defined(__DragonFly__)
63 static bool below_threshold(struct statfs buf, const char *prefix_type, const char *threshold_type, const double low_threshold) {
64 #else
65 static bool below_threshold(struct statvfs buf, const char *prefix_type, const char *threshold_type, const double low_threshold) {
66 #endif
67     if (strcasecmp(threshold_type, "percentage_free") == 0) {
68         return 100.0 * (double)buf.f_bfree / (double)buf.f_blocks < low_threshold;
69     } else if (strcasecmp(threshold_type, "percentage_avail") == 0) {
70         return 100.0 * (double)buf.f_bavail / (double)buf.f_blocks < low_threshold;
71     } else if (strcasecmp(threshold_type, "bytes_free") == 0) {
72         return (double)buf.f_bsize * (double)buf.f_bfree < low_threshold;
73     } else if (strcasecmp(threshold_type, "bytes_avail") == 0) {
74         return (double)buf.f_bsize * (double)buf.f_bavail < low_threshold;
75     } else if (threshold_type[0] != '\0' && strncasecmp(threshold_type + 1, "bytes_", strlen("bytes_")) == 0) {
76         uint64_t base = strcasecmp(prefix_type, "decimal") == 0 ? DECIMAL_BASE : BINARY_BASE;
77         double factor = 1;
78
79         switch (threshold_type[0]) {
80             case 'T':
81             case 't':
82                 factor *= base;
83             case 'G':
84             case 'g':
85                 factor *= base;
86             case 'M':
87             case 'm':
88                 factor *= base;
89             case 'K':
90             case 'k':
91                 factor *= base;
92                 break;
93             default:
94                 return false;
95         }
96
97         if (strcasecmp(threshold_type + 1, "bytes_free") == 0) {
98             return (double)buf.f_bsize * (double)buf.f_bfree < low_threshold * factor;
99         } else if (strcasecmp(threshold_type + 1, "bytes_avail") == 0) {
100             return (double)buf.f_bsize * (double)buf.f_bavail < low_threshold * factor;
101         }
102     }
103
104     return false;
105 }
106
107 /*
108  * Does a statvfs and prints either free, used or total amounts of bytes in a
109  * human readable manner.
110  *
111  */
112 void print_disk_info(yajl_gen json_gen, char *buffer, const char *path, const char *format, const char *format_not_mounted, const char *prefix_type, const char *threshold_type, const double low_threshold) {
113     const char *walk;
114     char *outwalk = buffer;
115     bool colorful_output = false;
116
117     INSTANCE(path);
118
119 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__OpenBSD__) || defined(__DragonFly__)
120     struct statfs buf;
121
122     if (statfs(path, &buf) == -1)
123         return;
124 #else
125     struct statvfs buf;
126
127     if (statvfs(path, &buf) == -1)
128         return;
129
130     if (format_not_mounted != NULL) {
131         FILE *mntentfile = setmntent("/etc/mtab", "r");
132         struct mntent *m;
133         bool found = false;
134
135         while ((m = getmntent(mntentfile)) != NULL) {
136             if (strcmp(m->mnt_dir, path) == 0) {
137                 found = true;
138                 break;
139             }
140         }
141         endmntent(mntentfile);
142
143         if (!found) {
144             format = format_not_mounted;
145         }
146     }
147 #endif
148
149     if (low_threshold > 0 && below_threshold(buf, prefix_type, threshold_type, low_threshold)) {
150         START_COLOR("color_bad");
151         colorful_output = true;
152     }
153
154     for (walk = format; *walk != '\0'; walk++) {
155         if (*walk != '%') {
156             *(outwalk++) = *walk;
157             continue;
158         }
159
160         if (BEGINS_WITH(walk + 1, "free")) {
161             outwalk += print_bytes_human(outwalk, (uint64_t)buf.f_bsize * (uint64_t)buf.f_bfree, prefix_type);
162             walk += strlen("free");
163         }
164
165         if (BEGINS_WITH(walk + 1, "used")) {
166             outwalk += print_bytes_human(outwalk, (uint64_t)buf.f_bsize * ((uint64_t)buf.f_blocks - (uint64_t)buf.f_bfree), prefix_type);
167             walk += strlen("used");
168         }
169
170         if (BEGINS_WITH(walk + 1, "total")) {
171             outwalk += print_bytes_human(outwalk, (uint64_t)buf.f_bsize * (uint64_t)buf.f_blocks, prefix_type);
172             walk += strlen("total");
173         }
174
175         if (BEGINS_WITH(walk + 1, "avail")) {
176             outwalk += print_bytes_human(outwalk, (uint64_t)buf.f_bsize * (uint64_t)buf.f_bavail, prefix_type);
177             walk += strlen("avail");
178         }
179
180         if (BEGINS_WITH(walk + 1, "percentage_free")) {
181             outwalk += sprintf(outwalk, "%.01f%%", 100.0 * (double)buf.f_bfree / (double)buf.f_blocks);
182             walk += strlen("percentage_free");
183         }
184
185         if (BEGINS_WITH(walk + 1, "percentage_used_of_avail")) {
186             outwalk += sprintf(outwalk, "%.01f%%", 100.0 * (double)(buf.f_blocks - buf.f_bavail) / (double)buf.f_blocks);
187             walk += strlen("percentage_used_of_avail");
188         }
189
190         if (BEGINS_WITH(walk + 1, "percentage_used")) {
191             outwalk += sprintf(outwalk, "%.01f%%", 100.0 * (double)(buf.f_blocks - buf.f_bfree) / (double)buf.f_blocks);
192             walk += strlen("percentage_used");
193         }
194
195         if (BEGINS_WITH(walk + 1, "percentage_avail")) {
196             outwalk += sprintf(outwalk, "%.01f%%", 100.0 * (double)buf.f_bavail / (double)buf.f_blocks);
197             walk += strlen("percentage_avail");
198         }
199     }
200
201     if (colorful_output)
202         END_COLOR;
203
204     *outwalk = '\0';
205     OUTPUT_FULL_TEXT(buffer);
206 }