summaryrefslogtreecommitdiff
path: root/src/storage.c
blob: 1924acf266f0648fa8508aea9890a265ea97f746 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include "storage.h"
#include "common.h"

#include <string.h>

const char *display_storage() {
  const char *iszfs = run_command_s("LC_ALL=C zpool list 2>&1");
    if (
      strncmp(
        iszfs,
        "sh: command not found: zpool",
        strlen("sh: command not found: zpool")
      ) == 0 ||
      strncmp(
        iszfs,
        "internal error: failed to initialize ZFS library",
        strlen("internal error: failed to initialize ZFS library")
      ) == 0 ||
      strncmp(iszfs, "sh: zpool: not found", strlen("sh: zpool: not found")) == 0 ||
      strncmp(iszfs, "sh: 1: zpool: not found", strlen("sh: 1: zpool: not found")) == 0
    ) {
        return run_command_s("df -h | "
            "awk '/^\\/dev\\// {printf \"%s: %s / %s, \", $1, $3, $2}' | "
            "awk '{sub(/, $/, \"\"); print}'");
    }

    return run_command_s("zpool list | "
        "awk 'NR>1 {printf \"%s: %s / %s, \", $1, $3, $2}' | "
        "awk '{sub(/, $/, \"\"); print}'");
}