89 lines
2.9 KiB
Swift
89 lines
2.9 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 ContainerNetworkClient
|
|
import ContainerResource
|
|
import ContainerXPC
|
|
import ContainerizationExtras
|
|
import Foundation
|
|
|
|
public actor NetworkHarness: Sendable {
|
|
private let service: NetworkService
|
|
|
|
public init(service: NetworkService) {
|
|
self.service = service
|
|
}
|
|
|
|
@Sendable
|
|
public func status(_ message: XPCMessage) async throws -> XPCMessage {
|
|
let reply = message.reply()
|
|
let status = try await service.status()
|
|
try reply.setStatus(status)
|
|
return reply
|
|
}
|
|
|
|
@Sendable
|
|
public func allocate(_ message: XPCMessage, _ session: XPCServerSession) async throws -> XPCMessage {
|
|
let hostname = try message.hostname()
|
|
let macAddress =
|
|
try message.string(key: NetworkKeys.macAddress.rawValue)
|
|
.map { try MACAddress($0) }
|
|
|
|
let (attachment:attachment, additionalData:additionalData) = try await service.allocate(
|
|
hostname: hostname,
|
|
macAddress: macAddress,
|
|
session: session
|
|
)
|
|
|
|
let reply = message.reply()
|
|
try reply.setAttachment(attachment)
|
|
if let additionalData {
|
|
try reply.setAdditionalData(additionalData.underlying)
|
|
}
|
|
|
|
return reply
|
|
}
|
|
|
|
@Sendable
|
|
public func lookup(_ message: XPCMessage) async throws -> XPCMessage {
|
|
let hostname = try message.hostname()
|
|
let reply = message.reply()
|
|
guard let attachment = try await service.lookup(hostname: hostname) else {
|
|
return reply
|
|
}
|
|
|
|
try reply.setAttachment(attachment)
|
|
return reply
|
|
}
|
|
}
|
|
|
|
extension XPCMessage {
|
|
fileprivate func setAdditionalData(_ additionalData: xpc_object_t) throws {
|
|
xpc_dictionary_set_value(self.underlying, NetworkKeys.additionalData.rawValue, additionalData)
|
|
}
|
|
|
|
fileprivate func setAttachment(_ attachment: Attachment) throws {
|
|
let data = try JSONEncoder().encode(attachment)
|
|
self.set(key: NetworkKeys.attachment.rawValue, value: data)
|
|
}
|
|
|
|
fileprivate func setStatus(_ status: NetworkStatus) throws {
|
|
let data = try JSONEncoder().encode(status)
|
|
self.set(key: NetworkKeys.status.rawValue, value: data)
|
|
}
|
|
|
|
}
|