summaryrefslogtreecommitdiff
path: root/examples/df.c
blob: 60e94e829986f90aed6490d360e8e7ac265f4a34 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#ifdef HAVE_CONFIG_H
#  include <config.h>
#endif
#include <glibtop.h>

#include <glibtop/fsusage.h>
#include <glibtop/mountlist.h>

#include <stdio.h>


static void print_fsusage(const char *mountpoint)
{
  glibtop_fsusage buf;

  glibtop_get_fsusage(&buf, mountpoint);

  printf("%-20s %-10llu %-10llu %-10llu %.1f\n",
	 mountpoint,
	 buf.blocks * buf.block_size >> 20,
	 (buf.blocks - buf.bavail) * buf.block_size >> 20,
	 buf.bavail * buf.block_size >> 20,
	 (buf.blocks - buf.bavail) * 100.0 / buf.blocks
	 );
}


int main()
{
  glibtop_mountlist buf;
  glibtop_mountentry *entries;
  size_t i;

  glibtop_init();

  printf("%-20s %-10s %-10s %-10s %-10s\n",
	 "Filesystem", "Size", "Used", "Avail", "Use%");

  entries = glibtop_get_mountlist(&buf, TRUE);

  for(i = 0; i < buf.number; ++i)
    {
      print_fsusage(entries[i].mountdir);
    }

  g_free(entries);

  glibtop_close();

  return 0;
}