mem_darwin.go 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. // +build darwin
  2. package mem
  3. import (
  4. "context"
  5. "encoding/binary"
  6. "strconv"
  7. "strings"
  8. "github.com/shirou/gopsutil/internal/common"
  9. "golang.org/x/sys/unix"
  10. )
  11. func getHwMemsize() (uint64, error) {
  12. totalString, err := unix.Sysctl("hw.memsize")
  13. if err != nil {
  14. return 0, err
  15. }
  16. // unix.sysctl() helpfully assumes the result is a null-terminated string and
  17. // removes the last byte of the result if it's 0 :/
  18. totalString += "\x00"
  19. total := uint64(binary.LittleEndian.Uint64([]byte(totalString)))
  20. return total, nil
  21. }
  22. // SwapMemory returns swapinfo.
  23. func SwapMemory() (*SwapMemoryStat, error) {
  24. return SwapMemoryWithContext(context.Background())
  25. }
  26. func SwapMemoryWithContext(ctx context.Context) (*SwapMemoryStat, error) {
  27. var ret *SwapMemoryStat
  28. swapUsage, err := common.DoSysctrlWithContext(ctx, "vm.swapusage")
  29. if err != nil {
  30. return ret, err
  31. }
  32. total := strings.Replace(swapUsage[2], "M", "", 1)
  33. used := strings.Replace(swapUsage[5], "M", "", 1)
  34. free := strings.Replace(swapUsage[8], "M", "", 1)
  35. total_v, err := strconv.ParseFloat(total, 64)
  36. if err != nil {
  37. return nil, err
  38. }
  39. used_v, err := strconv.ParseFloat(used, 64)
  40. if err != nil {
  41. return nil, err
  42. }
  43. free_v, err := strconv.ParseFloat(free, 64)
  44. if err != nil {
  45. return nil, err
  46. }
  47. u := float64(0)
  48. if total_v != 0 {
  49. u = ((total_v - free_v) / total_v) * 100.0
  50. }
  51. // vm.swapusage shows "M", multiply 1024 * 1024 to convert bytes.
  52. ret = &SwapMemoryStat{
  53. Total: uint64(total_v * 1024 * 1024),
  54. Used: uint64(used_v * 1024 * 1024),
  55. Free: uint64(free_v * 1024 * 1024),
  56. UsedPercent: u,
  57. }
  58. return ret, nil
  59. }