disk_unix.go 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. // +build freebsd linux darwin
  2. package disk
  3. import (
  4. "context"
  5. "strconv"
  6. "golang.org/x/sys/unix"
  7. )
  8. // Usage returns a file system usage. path is a filessytem path such
  9. // as "/", not device file path like "/dev/vda1". If you want to use
  10. // a return value of disk.Partitions, use "Mountpoint" not "Device".
  11. func Usage(path string) (*UsageStat, error) {
  12. return UsageWithContext(context.Background(), path)
  13. }
  14. func UsageWithContext(ctx context.Context, path string) (*UsageStat, error) {
  15. stat := unix.Statfs_t{}
  16. err := unix.Statfs(path, &stat)
  17. if err != nil {
  18. return nil, err
  19. }
  20. bsize := stat.Bsize
  21. ret := &UsageStat{
  22. Path: unescapeFstab(path),
  23. Fstype: getFsType(stat),
  24. Total: (uint64(stat.Blocks) * uint64(bsize)),
  25. Free: (uint64(stat.Bavail) * uint64(bsize)),
  26. InodesTotal: (uint64(stat.Files)),
  27. InodesFree: (uint64(stat.Ffree)),
  28. }
  29. // if could not get InodesTotal, return empty
  30. if ret.InodesTotal < ret.InodesFree {
  31. return ret, nil
  32. }
  33. ret.InodesUsed = (ret.InodesTotal - ret.InodesFree)
  34. ret.Used = (uint64(stat.Blocks) - uint64(stat.Bfree)) * uint64(bsize)
  35. if ret.InodesTotal == 0 {
  36. ret.InodesUsedPercent = 0
  37. } else {
  38. ret.InodesUsedPercent = (float64(ret.InodesUsed) / float64(ret.InodesTotal)) * 100.0
  39. }
  40. if (ret.Used + ret.Free) == 0 {
  41. ret.UsedPercent = 0
  42. } else {
  43. // We don't use ret.Total to calculate percent.
  44. // see https://github.com/shirou/gopsutil/issues/562
  45. ret.UsedPercent = (float64(ret.Used) / float64(ret.Used+ret.Free)) * 100.0
  46. }
  47. return ret, nil
  48. }
  49. // Unescape escaped octal chars (like space 040, ampersand 046 and backslash 134) to their real value in fstab fields issue#555
  50. func unescapeFstab(path string) string {
  51. escaped, err := strconv.Unquote(`"` + path + `"`)
  52. if err != nil {
  53. return path
  54. }
  55. return escaped
  56. }