mirror of
https://github.com/apple/container.git
synced 2026-09-14 11:45:39 +00:00
Today this protocols create method is just odd. Our only implementation of it immediately casts to LinuxContainer, failing if it cannot do so. I think what might make more sense is to pass in a configuration itself with core parameters that we expect every vmm to be able to support, and then in a specific implementation they can continue to cast this type to a specific one to possibly extract some extra configuration values (rosetta for VZ for example). This rework will also make it simpler to support a Pod type, as the vm setup is identical and simple.
77 lines
2.9 KiB
Swift
77 lines
2.9 KiB
Swift
//===----------------------------------------------------------------------===//
|
|
// Copyright © 2025 Apple Inc. and the Containerization project authors.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#if os(macOS)
|
|
import ContainerizationError
|
|
import ContainerizationOCI
|
|
import Foundation
|
|
import Logging
|
|
|
|
/// A virtualization.framework backed `VirtualMachineManager` implementation.
|
|
public struct VZVirtualMachineManager: VirtualMachineManager {
|
|
private let kernel: Kernel
|
|
private let initialFilesystem: Mount
|
|
private let bootlog: String?
|
|
private let rosetta: Bool
|
|
private let nestedVirtualization: Bool
|
|
private let logger: Logger?
|
|
|
|
public init(
|
|
kernel: Kernel,
|
|
initialFilesystem: Mount,
|
|
bootlog: String? = nil,
|
|
rosetta: Bool = false,
|
|
nestedVirtualization: Bool = false,
|
|
logger: Logger? = nil
|
|
) {
|
|
self.kernel = kernel
|
|
self.initialFilesystem = initialFilesystem
|
|
self.bootlog = bootlog
|
|
self.rosetta = rosetta
|
|
self.nestedVirtualization = nestedVirtualization
|
|
self.logger = logger
|
|
}
|
|
|
|
public func create(config: some VMCreationConfig) throws -> any VirtualMachineInstance {
|
|
let vmConfig = config.configuration
|
|
|
|
// Use nested virtualization if requested in config or set as default in manager
|
|
let useNestedVirtualization = vmConfig.nestedVirtualization || self.nestedVirtualization
|
|
|
|
return try VZVirtualMachineInstance(
|
|
logger: self.logger,
|
|
with: { instanceConfig in
|
|
instanceConfig.cpus = vmConfig.cpus
|
|
instanceConfig.memoryInBytes = vmConfig.memoryInBytes
|
|
|
|
instanceConfig.kernel = self.kernel
|
|
instanceConfig.initialFilesystem = self.initialFilesystem
|
|
|
|
instanceConfig.interfaces = vmConfig.interfaces
|
|
if let bootlog = vmConfig.bootlog {
|
|
instanceConfig.bootlog = bootlog
|
|
} else if let bootlog = self.bootlog {
|
|
instanceConfig.bootlog = URL(filePath: bootlog)
|
|
}
|
|
instanceConfig.rosetta = self.rosetta
|
|
instanceConfig.nestedVirtualization = useNestedVirtualization
|
|
|
|
instanceConfig.mountsByID = vmConfig.mountsByID
|
|
})
|
|
}
|
|
}
|
|
#endif
|