@@ -75,7 +75,7 @@ type VirtualMachine struct {
75
75
76
76
* pointer
77
77
dispatchQueue unsafe.Pointer
78
- stateHandle cgo. Handle
78
+ stateHandle * machineState
79
79
80
80
finalizeOnce sync.Once
81
81
}
@@ -103,18 +103,19 @@ func NewVirtualMachine(config *VirtualMachineConfiguration) (*VirtualMachine, er
103
103
cs := (* char )(objc .GetUUID ())
104
104
dispatchQueue := C .makeDispatchQueue (cs .CString ())
105
105
106
- stateHandle := cgo . NewHandle ( & machineState {
106
+ stateHandle := & machineState {
107
107
state : VirtualMachineState (0 ),
108
108
stateNotify : infinity .NewChannel [VirtualMachineState ](),
109
- })
109
+ }
110
110
111
+ stateHandlePtr := cgo .NewHandle (stateHandle )
111
112
v := & VirtualMachine {
112
113
id : cs .String (),
113
114
pointer : objc .NewPointer (
114
115
C .newVZVirtualMachineWithDispatchQueue (
115
116
objc .Ptr (config ),
116
117
dispatchQueue ,
117
- unsafe .Pointer (& stateHandle ),
118
+ unsafe .Pointer (& stateHandlePtr ),
118
119
),
119
120
),
120
121
dispatchQueue : dispatchQueue ,
@@ -123,6 +124,7 @@ func NewVirtualMachine(config *VirtualMachineConfiguration) (*VirtualMachine, er
123
124
124
125
objc .SetFinalizer (v , func (self * VirtualMachine ) {
125
126
self .finalize ()
127
+ stateHandlePtr .Delete ()
126
128
})
127
129
return v , nil
128
130
}
@@ -165,30 +167,18 @@ func changeStateOnObserver(newStateRaw C.int, cgoHandlerPtr unsafe.Pointer) {
165
167
v .mu .Unlock ()
166
168
}
167
169
168
- //export deleteStateHandler
169
- func deleteStateHandler (cgoHandlerPtr unsafe.Pointer ) {
170
- stateHandler := * (* cgo .Handle )(cgoHandlerPtr )
171
- stateHandler .Delete ()
172
- }
173
-
174
170
// State represents execution state of the virtual machine.
175
171
func (v * VirtualMachine ) State () VirtualMachineState {
176
- // I expected it will not cause panic.
177
- // if caused panic, that's unexpected behavior.
178
- val , _ := v .stateHandle .Value ().(* machineState )
179
- val .mu .RLock ()
180
- defer val .mu .RUnlock ()
181
- return val .state
172
+ v .stateHandle .mu .RLock ()
173
+ defer v .stateHandle .mu .RUnlock ()
174
+ return v .stateHandle .state
182
175
}
183
176
184
177
// StateChangedNotify gets notification is changed execution state of the virtual machine.
185
178
func (v * VirtualMachine ) StateChangedNotify () <- chan VirtualMachineState {
186
- // I expected it will not cause panic.
187
- // if caused panic, that's unexpected behavior.
188
- val , _ := v .stateHandle .Value ().(* machineState )
189
- val .mu .RLock ()
190
- defer val .mu .RUnlock ()
191
- return val .stateNotify .Out ()
179
+ v .stateHandle .mu .RLock ()
180
+ defer v .stateHandle .mu .RUnlock ()
181
+ return v .stateHandle .stateNotify .Out ()
192
182
}
193
183
194
184
// CanStart returns true if the machine is in a state that can be started.
0 commit comments