1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-26 13:48:59 +08:00
shirou_gopsutil/mem/mem_darwin.go

75 lines
1.6 KiB
Go
Raw Normal View History

// +build darwin
2014-12-30 22:09:05 +09:00
package mem
import (
2017-12-31 15:25:49 +09:00
"context"
2016-02-22 07:24:07 +01:00
"encoding/binary"
2014-09-20 09:30:14 +09:00
"strconv"
"strings"
2015-10-20 00:04:57 +09:00
"github.com/shirou/gopsutil/internal/common"
"golang.org/x/sys/unix"
)
2016-02-22 07:24:07 +01:00
func getHwMemsize() (uint64, error) {
totalString, err := unix.Sysctl("hw.memsize")
2016-02-22 07:24:07 +01:00
if err != nil {
return 0, err
}
// unix.sysctl() helpfully assumes the result is a null-terminated string and
2016-02-22 07:24:07 +01:00
// removes the last byte of the result if it's 0 :/
totalString += "\x00"
total := uint64(binary.LittleEndian.Uint64([]byte(totalString)))
return total, nil
}
// SwapMemory returns swapinfo.
func SwapMemory() (*SwapMemoryStat, error) {
2017-12-31 15:25:49 +09:00
return SwapMemoryWithContext(context.Background())
}
func SwapMemoryWithContext(ctx context.Context) (*SwapMemoryStat, error) {
var ret *SwapMemoryStat
2018-03-31 21:35:53 +09:00
swapUsage, err := common.DoSysctrlWithContext(ctx, "vm.swapusage")
2014-09-20 09:30:14 +09:00
if err != nil {
return ret, err
}
total := strings.Replace(swapUsage[2], "M", "", 1)
used := strings.Replace(swapUsage[5], "M", "", 1)
free := strings.Replace(swapUsage[8], "M", "", 1)
total_v, err := strconv.ParseFloat(total, 64)
if err != nil {
return nil, err
}
used_v, err := strconv.ParseFloat(used, 64)
if err != nil {
return nil, err
}
free_v, err := strconv.ParseFloat(free, 64)
if err != nil {
return nil, err
}
2015-02-26 16:23:35 +09:00
u := float64(0)
if total_v != 0 {
u = ((total_v - free_v) / total_v) * 100.0
}
// vm.swapusage shows "M", multiply 1024 * 1024 to convert bytes.
ret = &SwapMemoryStat{
Total: uint64(total_v * 1024 * 1024),
Used: uint64(used_v * 1024 * 1024),
Free: uint64(free_v * 1024 * 1024),
2014-09-20 09:30:14 +09:00
UsedPercent: u,
}
return ret, nil
}