mem_darwin_cgo.go 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. // +build darwin
  2. // +build cgo
  3. package mem
  4. /*
  5. #include <mach/mach_host.h>
  6. */
  7. import "C"
  8. import (
  9. "context"
  10. "fmt"
  11. "unsafe"
  12. "golang.org/x/sys/unix"
  13. )
  14. // VirtualMemory returns VirtualmemoryStat.
  15. func VirtualMemory() (*VirtualMemoryStat, error) {
  16. return VirtualMemoryWithContext(context.Background())
  17. }
  18. func VirtualMemoryWithContext(ctx context.Context) (*VirtualMemoryStat, error) {
  19. count := C.mach_msg_type_number_t(C.HOST_VM_INFO_COUNT)
  20. var vmstat C.vm_statistics_data_t
  21. status := C.host_statistics(C.host_t(C.mach_host_self()),
  22. C.HOST_VM_INFO,
  23. C.host_info_t(unsafe.Pointer(&vmstat)),
  24. &count)
  25. if status != C.KERN_SUCCESS {
  26. return nil, fmt.Errorf("host_statistics error=%d", status)
  27. }
  28. pageSize := uint64(unix.Getpagesize())
  29. total, err := getHwMemsize()
  30. if err != nil {
  31. return nil, err
  32. }
  33. totalCount := C.natural_t(total / pageSize)
  34. availableCount := vmstat.inactive_count + vmstat.free_count
  35. usedPercent := 100 * float64(totalCount-availableCount) / float64(totalCount)
  36. usedCount := totalCount - availableCount
  37. return &VirtualMemoryStat{
  38. Total: total,
  39. Available: pageSize * uint64(availableCount),
  40. Used: pageSize * uint64(usedCount),
  41. UsedPercent: usedPercent,
  42. Free: pageSize * uint64(vmstat.free_count),
  43. Active: pageSize * uint64(vmstat.active_count),
  44. Inactive: pageSize * uint64(vmstat.inactive_count),
  45. Wired: pageSize * uint64(vmstat.wire_count),
  46. }, nil
  47. }