mirror of
https://github.com/apple/container.git
synced 2026-07-12 12:37:02 +00:00
59e015acd1
- Closes #1647. - `id` will become a system assigned (Docker-like) identifier for the managed resource, and `configuration.name` is the user-assigned name.
152 lines
5.7 KiB
Swift
152 lines
5.7 KiB
Swift
//===----------------------------------------------------------------------===//
|
|
// Copyright © 2026 Apple Inc. and the container 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.
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
import ContainerizationError
|
|
import ContainerizationExtras
|
|
import Foundation
|
|
|
|
/// Configuration parameters for network creation.
|
|
public struct NetworkConfiguration: Codable, Sendable, Identifiable {
|
|
/// The name of the network.
|
|
public let name: String
|
|
|
|
/// The unique identifier for the network. Identical to ``name``.
|
|
public var id: String { name }
|
|
|
|
/// The network type
|
|
public let mode: NetworkMode
|
|
|
|
/// When the network was created.
|
|
public let creationDate: Date
|
|
|
|
/// The preferred CIDR address for the IPv4 subnet, if specified
|
|
public let ipv4Subnet: CIDRv4?
|
|
|
|
/// The preferred CIDR address for the IPv6 subnet, if specified
|
|
public let ipv6Subnet: CIDRv6?
|
|
|
|
/// Key-value labels for the network.
|
|
/// Resource labels should not be mutated, except while building a network configurations.
|
|
public let labels: ResourceLabels
|
|
|
|
/// The network plugin that manages this network.
|
|
public let plugin: String
|
|
|
|
/// Plugin-specific options for this network.
|
|
public let options: [String: String]
|
|
|
|
/// Creates a network configuration
|
|
public init(
|
|
name: String,
|
|
mode: NetworkMode,
|
|
ipv4Subnet: CIDRv4? = nil,
|
|
ipv6Subnet: CIDRv6? = nil,
|
|
labels: ResourceLabels = .init(),
|
|
plugin: String,
|
|
options: [String: String] = [:]
|
|
) throws {
|
|
self.name = name
|
|
self.creationDate = Date()
|
|
self.mode = mode
|
|
self.ipv4Subnet = ipv4Subnet
|
|
self.ipv6Subnet = ipv6Subnet
|
|
self.labels = labels
|
|
self.plugin = plugin
|
|
self.options = options
|
|
try validate()
|
|
}
|
|
|
|
enum CodingKeys: String, CodingKey {
|
|
case name
|
|
// Deprecated: As of 1.0.0. Use ``name`` instead of ``id``.
|
|
// Note: Will be removed in a later release.
|
|
case id
|
|
case creationDate
|
|
case mode
|
|
case ipv4Subnet
|
|
case ipv6Subnet
|
|
case labels
|
|
case plugin
|
|
case options
|
|
// TODO: retain for deserialization compatibility, remove in next major version
|
|
case pluginInfo
|
|
case subnet
|
|
}
|
|
|
|
/// Create a configuration from the supplied Decoder, initializing missing
|
|
/// values where possible to reasonable defaults.
|
|
public init(from decoder: Decoder) throws {
|
|
let container = try decoder.container(keyedBy: CodingKeys.self)
|
|
|
|
name =
|
|
try container.decodeIfPresent(String.self, forKey: .name)
|
|
?? container.decode(String.self, forKey: .id)
|
|
creationDate = try container.decodeIfPresent(Date.self, forKey: .creationDate) ?? Date(timeIntervalSince1970: 0)
|
|
mode = try container.decode(NetworkMode.self, forKey: .mode)
|
|
let subnetText =
|
|
try container.decodeIfPresent(String.self, forKey: .ipv4Subnet)
|
|
?? container.decodeIfPresent(String.self, forKey: .subnet)
|
|
ipv4Subnet = try subnetText.map { try CIDRv4($0) }
|
|
ipv6Subnet = try container.decodeIfPresent(String.self, forKey: .ipv6Subnet)
|
|
.map { try CIDRv6($0) }
|
|
let decodedLabels = try container.decodeIfPresent([String: String].self, forKey: .labels) ?? [:]
|
|
labels = try .init(decodedLabels)
|
|
|
|
if let plugin = try container.decodeIfPresent(String.self, forKey: .plugin) {
|
|
self.plugin = plugin
|
|
self.options = try container.decodeIfPresent([String: String].self, forKey: .options) ?? [:]
|
|
} else if let legacy = try container.decodeIfPresent(_LegacyPluginInfo.self, forKey: .pluginInfo) {
|
|
// Deprecated: As of 1.0.0. Use ``plugin`` and ``options`` instead.
|
|
// Note: Will be removed in a later release.
|
|
self.plugin = legacy.plugin
|
|
var opts: [String: String] = [:]
|
|
if let variant = legacy.variant { opts["variant"] = variant }
|
|
self.options = opts
|
|
} else {
|
|
self.plugin = "container-network-vmnet"
|
|
self.options = [:]
|
|
}
|
|
|
|
try validate()
|
|
}
|
|
|
|
/// Encode the configuration to the supplied Encoder.
|
|
public func encode(to encoder: Encoder) throws {
|
|
var container = encoder.container(keyedBy: CodingKeys.self)
|
|
|
|
try container.encode(name, forKey: .name)
|
|
try container.encode(creationDate, forKey: .creationDate)
|
|
try container.encode(mode, forKey: .mode)
|
|
try container.encodeIfPresent(ipv4Subnet, forKey: .ipv4Subnet)
|
|
try container.encodeIfPresent(ipv6Subnet, forKey: .ipv6Subnet)
|
|
try container.encode(labels, forKey: .labels)
|
|
try container.encode(plugin, forKey: .plugin)
|
|
try container.encode(options, forKey: .options)
|
|
}
|
|
|
|
private func validate() throws {
|
|
guard NetworkResource.nameValid(name) else {
|
|
throw ContainerizationError(.invalidArgument, message: "invalid network name: \(name)")
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Decode helper for stored configurations that used the old `pluginInfo` key.
|
|
private struct _LegacyPluginInfo: Codable {
|
|
let plugin: String
|
|
let variant: String?
|
|
}
|