@@ -41,11 +41,16 @@ func TemperaturesWithContext(ctx context.Context) ([]TemperatureStat, error) {
41
41
}
42
42
43
43
ta .matching (0xff00 , 5 )
44
- thermalNames := ta .getProductNames ()
45
- thermalValues := ta .getThermalValues ()
44
+ defer ta .cfRelease (uintptr (ta .sensors ))
45
+
46
+ // Create HID system client
47
+ system := ta .ioHIDEventSystemClientCreate (common .KCFAllocatorDefault )
48
+ defer ta .cfRelease (uintptr (system ))
49
+
50
+ thermalNames := ta .getProductNames (system )
51
+ thermalValues := ta .getThermalValues (system )
46
52
result := dumpNameValues (thermalNames , thermalValues )
47
53
48
- ta .cfRelease (uintptr (ta .sensors ))
49
54
return result , nil
50
55
}
51
56
@@ -84,59 +89,57 @@ type temperatureArm struct {
84
89
sensors unsafe.Pointer
85
90
}
86
91
87
- func (ta * temperatureArm ) getProductNames () []string {
92
+ func (ta * temperatureArm ) getProductNames (system unsafe. Pointer ) []string {
88
93
ioHIDServiceClientCopyProperty := common .GetFunc [common.IOHIDServiceClientCopyPropertyFunc ](ta .ioKit , common .IOHIDServiceClientCopyPropertySym )
89
-
90
94
cfStringGetLength := common .GetFunc [common.CFStringGetLengthFunc ](ta .cf , common .CFStringGetLengthSym )
91
95
cfStringGetCString := common .GetFunc [common.CFStringGetCStringFunc ](ta .cf , common .CFStringGetCStringSym )
92
96
93
97
var names []string
94
- system := ta .ioHIDEventSystemClientCreate (common .KCFAllocatorDefault )
95
98
96
99
ta .ioHIDEventSystemClientSetMatching (uintptr (system ), uintptr (ta .sensors ))
97
100
matchingsrvs := ta .ioHIDEventSystemClientCopyServices (uintptr (system ))
98
101
99
102
if matchingsrvs == nil {
100
103
return nil
101
104
}
105
+ defer ta .cfRelease (uintptr (matchingsrvs ))
102
106
103
107
count := ta .cfArrayGetCount (uintptr (matchingsrvs ))
104
108
105
109
var i int32
106
110
str := ta .cfStr ("Product" )
111
+ defer ta .cfRelease (uintptr (str ))
112
+
107
113
for i = 0 ; i < count ; i ++ {
108
114
sc := ta .cfArrayGetValueAtIndex (uintptr (matchingsrvs ), i )
109
115
name := ioHIDServiceClientCopyProperty (uintptr (sc ), uintptr (str ))
110
116
111
117
if name != nil {
112
- length := cfStringGetLength (uintptr (name )) + 1 // null terminator
113
- buf := make ([]byte , length - 1 )
118
+ length := cfStringGetLength (uintptr (name )) + 1 // include null terminator
119
+ buf := make ([]byte , length ) // allocate buffer with full length
114
120
cfStringGetCString (uintptr (name ), & buf [0 ], length , common .KCFStringEncodingUTF8 )
115
121
116
- names = append (names , string (buf ))
122
+ names = append (names , string (buf [: length - 1 ])) // remove null terminator
117
123
ta .cfRelease (uintptr (name ))
118
124
} else {
119
125
names = append (names , "noname" )
120
126
}
121
127
}
122
128
123
- ta .cfRelease (uintptr (matchingsrvs ))
124
- ta .cfRelease (uintptr (str ))
125
129
return names
126
130
}
127
131
128
- func (ta * temperatureArm ) getThermalValues () []float64 {
132
+ func (ta * temperatureArm ) getThermalValues (system unsafe. Pointer ) []float64 {
129
133
ioHIDServiceClientCopyEvent := common .GetFunc [common.IOHIDServiceClientCopyEventFunc ](ta .ioKit , common .IOHIDServiceClientCopyEventSym )
130
134
ioHIDEventGetFloatValue := common .GetFunc [common.IOHIDEventGetFloatValueFunc ](ta .ioKit , common .IOHIDEventGetFloatValueSym )
131
135
132
- system := ta .ioHIDEventSystemClientCreate (common .KCFAllocatorDefault )
133
-
134
136
ta .ioHIDEventSystemClientSetMatching (uintptr (system ), uintptr (ta .sensors ))
135
137
matchingsrvs := ta .ioHIDEventSystemClientCopyServices (uintptr (system ))
136
138
137
139
if matchingsrvs == nil {
138
140
return nil
139
141
}
142
+ defer ta .cfRelease (uintptr (matchingsrvs ))
140
143
141
144
count := ta .cfArrayGetCount (uintptr (matchingsrvs ))
142
145
@@ -155,7 +158,6 @@ func (ta *temperatureArm) getThermalValues() []float64 {
155
158
values = append (values , temp )
156
159
}
157
160
158
- ta .cfRelease (uintptr (matchingsrvs ))
159
161
return values
160
162
}
161
163
0 commit comments