mirror of
https://github.com/apple/container.git
synced 2026-07-13 21:17:05 +00:00
e37dcc19a5
- Closes #1359. - Create a ResourceLabels type and extract the label validation from NetworkConfiguration into the new type. - Create a base AppError type that is compatible with structured logging and delegates message presentation to the error receiver. - Define LabelError over AppError for label validation. - Slightly reworks NetworkConfiguration entity migration code in NetworksService.
61 lines
2.5 KiB
Swift
61 lines
2.5 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 Foundation
|
|
|
|
/// Common properties for all managed resources.
|
|
public protocol ManagedResource: Identifiable, Sendable, Codable {
|
|
/// A 64 byte hexadecimal string, assigned by the system, that uniquely
|
|
/// identifies the resource.
|
|
var id: String { get }
|
|
|
|
/// A user assigned name that shall be unique within the namespace of
|
|
/// the resource category. If the user does not assign a name, this value
|
|
/// shall be the same as the system-assigned identifier.
|
|
var name: String { get }
|
|
|
|
/// The time at which the system created the resource.
|
|
var creationDate: Date { get }
|
|
|
|
/// Key-value properties for the resource. The user and system may both
|
|
/// make use of labels to read and write annotations or other metadata.
|
|
/// A good practice when using labels for automation is to use reverse
|
|
/// domain name notation (example: `com.example.mytool.role`) for
|
|
/// label names.
|
|
var labels: ResourceLabels { get }
|
|
|
|
/// Generates a unique resource ID value.
|
|
static func generateId() -> String
|
|
|
|
/// Returns true only if the specified resource name is syntactically valid.
|
|
static func nameValid(_ name: String) -> Bool
|
|
}
|
|
|
|
extension ManagedResource {
|
|
/// Generate a random identifier that has the format of an ASCII SHA-256 hash.
|
|
public static func generateId() -> String {
|
|
(0..<2)
|
|
.map { _ in UInt128.random(in: 0...UInt128.max) }
|
|
.map { String($0, radix: 16).padding(toLength: 32, withPad: "0", startingAt: 0) }
|
|
.joined()
|
|
}
|
|
}
|
|
|
|
extension ResourceLabels {
|
|
/// Returns true if for a resource that the system automatically manages.
|
|
public var isBuiltin: Bool { self.contains { $0 == ResourceLabelKeys.role && $1 == ResourceRoleValues.builtin } }
|
|
}
|