1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-28 13:48:49 +08:00
shirou_gopsutil/sensors/sensors_darwin_cgo.go

53 lines
1.1 KiB
Go
Raw Normal View History

// SPDX-License-Identifier: BSD-3-Clause
2021-12-22 21:54:41 +00:00
//go:build darwin && cgo
2019-12-13 16:03:44 +01:00
package sensors
2019-12-13 16:03:44 +01:00
// #cgo LDFLAGS: -framework IOKit
// #include "smc_darwin.h"
2019-12-13 16:03:44 +01:00
import "C"
2024-06-02 14:22:22 +03:00
import (
"context"
"unsafe"
)
2019-12-13 16:03:44 +01:00
func TemperaturesWithContext(ctx context.Context) ([]TemperatureStat, error) {
2019-12-13 16:03:44 +01:00
temperatureKeys := []string{
C.AMBIENT_AIR_0,
C.AMBIENT_AIR_1,
C.CPU_0_DIODE,
C.CPU_0_HEATSINK,
C.CPU_0_PROXIMITY,
C.ENCLOSURE_BASE_0,
C.ENCLOSURE_BASE_1,
C.ENCLOSURE_BASE_2,
C.ENCLOSURE_BASE_3,
C.GPU_0_DIODE,
C.GPU_0_HEATSINK,
C.GPU_0_PROXIMITY,
C.HARD_DRIVE_BAY,
C.MEMORY_SLOT_0,
C.MEMORY_SLOTS_PROXIMITY,
C.NORTHBRIDGE,
C.NORTHBRIDGE_DIODE,
C.NORTHBRIDGE_PROXIMITY,
C.THUNDERBOLT_0,
C.THUNDERBOLT_1,
C.WIRELESS_MODULE,
}
var temperatures []TemperatureStat
C.gopsutil_v4_open_smc()
defer C.gopsutil_v4_close_smc()
2019-12-13 16:03:44 +01:00
for _, key := range temperatureKeys {
2024-06-02 14:22:22 +03:00
ckey := C.CString(key)
defer C.free(unsafe.Pointer(ckey))
2019-12-13 16:03:44 +01:00
temperatures = append(temperatures, TemperatureStat{
SensorKey: key,
2024-06-02 14:22:22 +03:00
Temperature: float64(C.gopsutil_v4_get_temperature(ckey)),
2019-12-13 16:03:44 +01:00
})
}
return temperatures, nil
}