]> git.sur5r.net Git - i3/i3status/blob - src/print_disk_info.c
e5e3ab17587acdc52333adc8e604c581b6b90f7f
[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__) || defined(__APPLE__)
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__) || defined(__APPLE__)
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__) || defined(__APPLE__)
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         /* If statvfs errors, e.g., due to the path not existing,
129          * we use the format for a not mounted device. */
130         format = format_not_mounted;
131     } else if (format_not_mounted != NULL) {
132         FILE *mntentfile = setmntent("/etc/mtab", "r");
133         struct mntent *m;
134         bool found = false;
135
136         while ((m = getmntent(mntentfile)) != NULL) {
137             if (strcmp(m->mnt_dir, path) == 0) {
138                 found = true;
139                 break;
140             }
141         }
142         endmntent(mntentfile);
143
144         if (!found) {
145             format = format_not_mounted;
146         }
147     }
148 #endif
149
150     if (low_threshold > 0 && below_threshold(buf, prefix_type, threshold_type, low_threshold)) {
151         START_COLOR("color_bad");
152         colorful_output = true;
153     }
154
155     for (walk = format; *walk != '\0'; walk++) {
156         if (*walk != '%') {
157             *(outwalk++) = *walk;
158             continue;
159         }
160
161         if (BEGINS_WITH(walk + 1, "free")) {
162             outwalk += print_bytes_human(outwalk, (uint64_t)buf.f_bsize * (uint64_t)buf.f_bfree, prefix_type);
163             walk += strlen("free");
164         }
165
166         if (BEGINS_WITH(walk + 1, "used")) {
167             outwalk += print_bytes_human(outwalk, (uint64_t)buf.f_bsize * ((uint64_t)buf.f_blocks - (uint64_t)buf.f_bfree), prefix_type);
168             walk += strlen("used");
169         }
170
171         if (BEGINS_WITH(walk + 1, "total")) {
172             outwalk += print_bytes_human(outwalk, (uint64_t)buf.f_bsize * (uint64_t)buf.f_blocks, prefix_type);
173             walk += strlen("total");
174         }
175
176         if (BEGINS_WITH(walk + 1, "avail")) {
177             outwalk += print_bytes_human(outwalk, (uint64_t)buf.f_bsize * (uint64_t)buf.f_bavail, prefix_type);
178             walk += strlen("avail");
179         }
180
181         if (BEGINS_WITH(walk + 1, "percentage_free")) {
182             outwalk += sprintf(outwalk, "%.01f%%", 100.0 * (double)buf.f_bfree / (double)buf.f_blocks);
183             walk += strlen("percentage_free");
184         }
185
186         if (BEGINS_WITH(walk + 1, "percentage_used_of_avail")) {
187             outwalk += sprintf(outwalk, "%.01f%%", 100.0 * (double)(buf.f_blocks - buf.f_bavail) / (double)buf.f_blocks);
188             walk += strlen("percentage_used_of_avail");
189         }
190
191         if (BEGINS_WITH(walk + 1, "percentage_used")) {
192             outwalk += sprintf(outwalk, "%.01f%%", 100.0 * (double)(buf.f_blocks - buf.f_bfree) / (double)buf.f_blocks);
193             walk += strlen("percentage_used");
194         }
195
196         if (BEGINS_WITH(walk + 1, "percentage_avail")) {
197             outwalk += sprintf(outwalk, "%.01f%%", 100.0 * (double)buf.f_bavail / (double)buf.f_blocks);
198             walk += strlen("percentage_avail");
199         }
200     }
201
202     if (colorful_output)
203         END_COLOR;
204
205     *outwalk = '\0';
206     OUTPUT_FULL_TEXT(buffer);
207 }