shirou_gopsutil/disk/disk_unix.go

63 lines
1.5 KiB
Go
Raw Normal View History

2021-12-23 05:54:41 +08:00
//go:build freebsd || linux || darwin
// +build freebsd linux darwin
2014-04-18 15:34:47 +08:00
2014-12-30 21:09:05 +08:00
package disk
2014-04-18 15:34:47 +08:00
2017-12-31 14:25:49 +08:00
import (
"context"
"strconv"
2017-12-31 14:25:49 +08:00
"golang.org/x/sys/unix"
)
2014-04-18 15:34:47 +08:00
2017-12-31 14:25:49 +08:00
func UsageWithContext(ctx context.Context, path string) (*UsageStat, error) {
stat := unix.Statfs_t{}
err := unix.Statfs(path, &stat)
2014-04-18 15:34:47 +08:00
if err != nil {
return nil, err
2014-04-18 15:34:47 +08:00
}
2014-10-10 16:09:36 +08:00
bsize := stat.Bsize
2014-04-18 15:34:47 +08:00
ret := &UsageStat{
Path: unescapeFstab(path),
Fstype: getFsType(stat),
2014-10-10 16:09:36 +08:00
Total: (uint64(stat.Blocks) * uint64(bsize)),
Free: (uint64(stat.Bavail) * uint64(bsize)),
2014-08-26 16:38:52 +08:00
InodesTotal: (uint64(stat.Files)),
2014-08-26 21:17:35 +08:00
InodesFree: (uint64(stat.Ffree)),
2014-04-18 15:34:47 +08:00
}
// if could not get InodesTotal, return empty
if ret.InodesTotal < ret.InodesFree {
return ret, nil
2017-02-02 07:05:29 +08:00
}
2014-08-26 16:38:52 +08:00
ret.InodesUsed = (ret.InodesTotal - ret.InodesFree)
2015-01-28 21:25:25 +08:00
ret.Used = (uint64(stat.Blocks) - uint64(stat.Bfree)) * uint64(bsize)
2017-02-02 07:05:29 +08:00
if ret.InodesTotal == 0 {
ret.InodesUsedPercent = 0
} else {
ret.InodesUsedPercent = (float64(ret.InodesUsed) / float64(ret.InodesTotal)) * 100.0
}
2014-04-18 15:34:47 +08:00
if (ret.Used + ret.Free) == 0 {
ret.UsedPercent = 0
} else {
2018-08-01 13:39:43 +08:00
// We don't use ret.Total to calculate percent.
// see https://github.com/shirou/gopsutil/issues/562
ret.UsedPercent = (float64(ret.Used) / float64(ret.Used+ret.Free)) * 100.0
}
2017-02-02 07:05:29 +08:00
2014-04-18 15:34:47 +08:00
return ret, nil
}
// Unescape escaped octal chars (like space 040, ampersand 046 and backslash 134) to their real value in fstab fields issue#555
func unescapeFstab(path string) string {
escaped, err := strconv.Unquote(`"` + path + `"`)
if err != nil {
return path
}
return escaped
}