diff options
| author | Thomas Ulmer <thomasmulmer02@gmail.com> | 2025-12-08 11:10:35 -0800 |
|---|---|---|
| committer | Thomas Ulmer <thomasmulmer02@gmail.com> | 2025-12-08 11:10:35 -0800 |
| commit | a82a073043c1475b46e1e6963c7078df24399745 (patch) | |
| tree | af903573e80c41401fd73e7a3b15b003b56aa7bc /slstatus/slstatus-1.1/components/disk.c | |
| parent | 78f1d733b5a24bba9cd36c0fde335e14407d12f7 (diff) | |
slstatus patch to git
Diffstat (limited to 'slstatus/slstatus-1.1/components/disk.c')
| -rw-r--r-- | slstatus/slstatus-1.1/components/disk.c | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/slstatus/slstatus-1.1/components/disk.c b/slstatus/slstatus-1.1/components/disk.c new file mode 100644 index 0000000..e19a693 --- /dev/null +++ b/slstatus/slstatus-1.1/components/disk.c @@ -0,0 +1,59 @@ +/* See LICENSE file for copyright and license details. */ +#include <stdio.h> +#include <sys/statvfs.h> + +#include "../slstatus.h" +#include "../util.h" + +const char * +disk_free(const char *path) +{ + struct statvfs fs; + + if (statvfs(path, &fs) < 0) { + warn("statvfs '%s':", path); + return NULL; + } + + return fmt_human(fs.f_frsize * fs.f_bavail, 1024); +} + +const char * +disk_perc(const char *path) +{ + struct statvfs fs; + + if (statvfs(path, &fs) < 0) { + warn("statvfs '%s':", path); + return NULL; + } + + return bprintf("%d", (int)(100 * + (1 - ((double)fs.f_bavail / (double)fs.f_blocks)))); +} + +const char * +disk_total(const char *path) +{ + struct statvfs fs; + + if (statvfs(path, &fs) < 0) { + warn("statvfs '%s':", path); + return NULL; + } + + return fmt_human(fs.f_frsize * fs.f_blocks, 1024); +} + +const char * +disk_used(const char *path) +{ + struct statvfs fs; + + if (statvfs(path, &fs) < 0) { + warn("statvfs '%s':", path); + return NULL; + } + + return fmt_human(fs.f_frsize * (fs.f_blocks - fs.f_bfree), 1024); +} |
