2017-09-17 18:45:03 +03:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
2018-03-28 20:46:27 +03:00
|
|
|
#include <errno.h>
|
2017-09-17 17:18:17 +03:00
|
|
|
#include <stdio.h>
|
2018-03-28 20:46:27 +03:00
|
|
|
#include <string.h>
|
2017-09-17 17:18:17 +03:00
|
|
|
#include <sys/statvfs.h>
|
|
|
|
|
2017-09-24 16:33:01 +03:00
|
|
|
#include "../util.h"
|
2017-09-17 17:18:17 +03:00
|
|
|
|
|
|
|
const char *
|
|
|
|
disk_free(const char *mnt)
|
|
|
|
{
|
|
|
|
struct statvfs fs;
|
|
|
|
|
|
|
|
if (statvfs(mnt, &fs) < 0) {
|
2018-03-28 20:46:27 +03:00
|
|
|
fprintf(stderr, "statvfs '%s': %s\n", mnt, strerror(errno));
|
2017-09-17 17:18:17 +03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-05-06 23:28:56 +03:00
|
|
|
return bprintf("%f",
|
2018-05-17 13:43:21 +03:00
|
|
|
(float)fs.f_frsize * (float)fs.f_bavail / 1024 / 1024 / 1024);
|
2017-09-17 17:18:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
disk_perc(const char *mnt)
|
|
|
|
{
|
|
|
|
struct statvfs fs;
|
|
|
|
|
|
|
|
if (statvfs(mnt, &fs) < 0) {
|
2018-03-28 20:46:27 +03:00
|
|
|
fprintf(stderr, "statvfs '%s': %s\n", mnt, strerror(errno));
|
2017-09-17 17:18:17 +03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-05-07 13:14:46 +03:00
|
|
|
return bprintf("%d", (int)(100 *
|
2018-05-17 13:43:21 +03:00
|
|
|
(1.0f - ((float)fs.f_bavail / (float)fs.f_blocks))));
|
2017-09-17 17:18:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
disk_total(const char *mnt)
|
|
|
|
{
|
|
|
|
struct statvfs fs;
|
|
|
|
|
|
|
|
if (statvfs(mnt, &fs) < 0) {
|
2018-03-28 20:46:27 +03:00
|
|
|
fprintf(stderr, "statvfs '%s': %s\n", mnt, strerror(errno));
|
2017-09-17 17:18:17 +03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-05-06 23:28:56 +03:00
|
|
|
return bprintf("%f",
|
2018-05-17 13:43:21 +03:00
|
|
|
(float)fs.f_frsize * (float)fs.f_blocks / 1024 / 1024 / 1024);
|
2017-09-17 17:18:17 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *
|
|
|
|
disk_used(const char *mnt)
|
|
|
|
{
|
|
|
|
struct statvfs fs;
|
|
|
|
|
|
|
|
if (statvfs(mnt, &fs) < 0) {
|
2018-03-28 20:46:27 +03:00
|
|
|
fprintf(stderr, "statvfs '%s': %s\n", mnt, strerror(errno));
|
2017-09-17 17:18:17 +03:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-05-06 23:28:56 +03:00
|
|
|
return bprintf("%f",
|
2018-05-17 13:43:21 +03:00
|
|
|
(float)fs.f_frsize * ((float)fs.f_blocks -
|
2018-05-06 23:28:56 +03:00
|
|
|
(float)fs.f_bfree) / 1024 / 1024 / 1024);
|
2017-09-17 17:18:17 +03:00
|
|
|
}
|