forked from apple/containerization
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCloudHypervisor+Client.swift
More file actions
169 lines (156 loc) · 7.55 KB
/
Copy pathCloudHypervisor+Client.swift
File metadata and controls
169 lines (156 loc) · 7.55 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
//===----------------------------------------------------------------------===//
// Copyright © 2026 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.
//===----------------------------------------------------------------------===//
import Foundation
import Logging
import NIOCore
import NIOHTTP1
import NIOPosix
extension CloudHypervisor {
/// A high-level client for Cloud Hypervisor's REST API over a Unix Domain Socket.
///
/// Use ``init(socketPath:eventLoopGroup:logger:)`` to construct a client, then
/// call endpoint-specific methods (added as extensions in `Endpoints/`).
///
/// The internal `get(_:)` / `put(_:)` / `put(_:body:)` helpers are used by
/// endpoint extensions in A8-A10 and are intentionally not public.
public final class Client: Sendable {
private let http: HTTPOverUDSClient
private let group: any EventLoopGroup
private let ownsGroup: Bool
private let encoder: JSONEncoder
private let decoder: JSONDecoder
/// Create a client that communicates with Cloud Hypervisor over the given socket.
///
/// - Parameters:
/// - socketPath: A `file://` URL whose `.path` points to the socket.
/// - eventLoopGroup: The NIO event loop group to use. When `nil` the client
/// creates and owns its own group. Callers wanting deterministic
/// resource release should pass a group they manage and call
/// ``shutdown()`` themselves; the deinit fallback shuts down
/// asynchronously and may outlive the `Client` instance briefly.
/// - logger: Logger for transport-level diagnostics.
/// - requestTimeout: Per-request deadline. A request that does not
/// complete within this window fails with
/// ``CloudHypervisor/Error/transport(_:)``. Defaults to 30 seconds.
/// - Throws: ``CloudHypervisor/Error/invalidSocketPath(_:)`` when `socketPath`
/// is not a `file://` URL.
public init(
socketPath: URL,
eventLoopGroup: (any EventLoopGroup)? = nil,
logger: Logger = Logger(label: "CloudHypervisor.Client"),
requestTimeout: TimeAmount = .seconds(30)
) throws {
guard socketPath.isFileURL else {
throw CloudHypervisor.Error.invalidSocketPath(socketPath.absoluteString)
}
if let eventLoopGroup {
self.ownsGroup = false
self.group = eventLoopGroup
} else {
self.ownsGroup = true
self.group = MultiThreadedEventLoopGroup(numberOfThreads: System.coreCount)
}
self.http = HTTPOverUDSClient(
socketPath: socketPath.path,
group: self.group,
logger: logger,
requestTimeout: requestTimeout
)
self.encoder = JSONEncoder()
self.decoder = JSONDecoder()
}
/// Drain the underlying `AsyncHTTPClient`, and shut down the NIO
/// event-loop group when this client owns it. Idempotent. Prefer
/// calling this explicitly over relying on the deinit fallback —
/// `shutdown()` waits for in-flight I/O to drain.
///
/// Callers that pass in a shared `eventLoopGroup` MUST call this
/// before tearing down that group. AsyncHTTPClient parks deferred
/// connection-close work on the group's event loops after each
/// response returns; shutting the group down before that work
/// runs trips NIO's "Cannot schedule tasks on an EventLoop that
/// has already shut down" warning (and a forced crash in future
/// NIO releases).
public func shutdown() async throws {
try await http.shutdown()
if ownsGroup {
try await group.shutdownGracefully()
}
}
deinit {
// Use the async-dispatched shutdown rather than
// `syncShutdownGracefully()`. The sync variant blocks the calling
// thread until every event loop drains, which deadlocks if deinit
// happens to run on one of the group's event loop threads (e.g.
// the last release came from inside a NIO callback). The
// callback-based variant schedules shutdown on its own queue and
// returns immediately — at the cost of giving up any signal that
// shutdown completed. Callers who need that signal should call
// `shutdown()` explicitly before letting the client deinit.
if ownsGroup {
group.shutdownGracefully(queue: .global()) { _ in }
}
}
// MARK: - Internal request dispatch helpers
//
// Endpoint extensions (A8/A9/A10) call these to build their public API.
// They are internal (not public) because all public surface lives in those
// extensions.
/// GET `path`, decode the response body as `Response`.
func get<Response: Decodable & Sendable>(_ path: String) async throws -> Response {
try await sendAndDecode(method: .GET, path: path, body: nil)
}
/// PUT `path` with no body, discard the response.
func put(_ path: String) async throws {
try await sendVoid(method: .PUT, path: path, body: nil)
}
/// PUT `path` with a JSON-encoded body, discard the response.
func put<Body: Encodable & Sendable>(_ path: String, body: Body) async throws {
let data = try encoder.encode(body)
try await sendVoid(method: .PUT, path: path, body: data)
}
/// PUT `path` with a JSON-encoded body, decode the response as `Response`.
func put<Body: Encodable & Sendable, Response: Decodable & Sendable>(
_ path: String,
body: Body
) async throws -> Response {
let data = try encoder.encode(body)
return try await sendAndDecode(method: .PUT, path: path, body: data)
}
// MARK: - Private machinery
private func sendAndDecode<Response: Decodable & Sendable>(
method: HTTPMethod,
path: String,
body: Data?
) async throws -> Response {
let resp = try await http.send(method: method, uri: path, body: body)
guard (200..<300).contains(Int(resp.status.code)) else {
throw CloudHypervisor.Error.http(status: resp.status, body: resp.body)
}
do {
return try decoder.decode(Response.self, from: resp.body)
} catch {
throw CloudHypervisor.Error.decoding(error, body: resp.body)
}
}
private func sendVoid(method: HTTPMethod, path: String, body: Data?) async throws {
let resp = try await http.send(method: method, uri: path, body: body)
guard (200..<300).contains(Int(resp.status.code)) else {
throw CloudHypervisor.Error.http(status: resp.status, body: resp.body)
}
}
}
}