summaryrefslogtreecommitdiff
path: root/examples/df.c
blob: 27be13715a67310ff9eca5bdf576ae501cb2013b (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
52
53
#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("%-30s %10llu %10llu %10llu %5.1f %10llu %10llu\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 ? buf.blocks : 1.0),
	 buf.read,
	 buf.write
	 );
}


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

  glibtop_init();

  printf("%-30s %10s %10s %10s %5s %10s %10s\n",
	 "Filesystem", "Size", "Used", "Avail", "Use%", "Read", "Write");

  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;
}