Skip to content

Commit bd29a7e

Browse files
authored
Merge pull request #149 from Code-Hex/add/validation-save-restore
added ValidateSaveRestoreSupport in Save/Restore methods
2 parents b9079bb + f02f617 commit bd29a7e

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

virtualization.go

+3
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,8 @@ type VirtualMachine struct {
9292
machineState *machineState
9393

9494
finalizeOnce sync.Once
95+
96+
config *VirtualMachineConfiguration
9597
}
9698

9799
type machineState struct {
@@ -134,6 +136,7 @@ func NewVirtualMachine(config *VirtualMachineConfiguration) (*VirtualMachine, er
134136
),
135137
dispatchQueue: dispatchQueue,
136138
machineState: machineState,
139+
config: config,
137140
}
138141

139142
objc.SetFinalizer(v, func(self *VirtualMachine) {

virtualization_arm64.go

+6
Original file line numberDiff line numberDiff line change
@@ -598,6 +598,9 @@ func (v *VirtualMachine) SaveMachineStateToPath(saveFilePath string) error {
598598
if err := macOSAvailable(14); err != nil {
599599
return err
600600
}
601+
if _, err := v.config.ValidateSaveRestoreSupport(); err != nil {
602+
return err
603+
}
601604
cs := charWithGoString(saveFilePath)
602605
defer cs.Free()
603606
h, errCh := makeHandler()
@@ -629,6 +632,9 @@ func (v *VirtualMachine) RestoreMachineStateFromURL(saveFilePath string) error {
629632
if err := macOSAvailable(14); err != nil {
630633
return err
631634
}
635+
if _, err := v.config.ValidateSaveRestoreSupport(); err != nil {
636+
return err
637+
}
632638
cs := charWithGoString(saveFilePath)
633639
defer cs.Free()
634640
h, errCh := makeHandler()

0 commit comments

Comments
 (0)