Sources/CloudHypervisor/README.md
A standalone Swift library for driving the cloud-hypervisor REST API over a Unix domain socket. The package compiles on both macOS and Linux, though cloud-hypervisor itself only runs on Linux.
There are no transitive dependencies on any other containerization library types.
import CloudHypervisor
let client = try CloudHypervisor.Client(
socketPath: URL(filePath: "/tmp/ch-foo/api.sock")
)
try await client.vmmPing()
try await client.vmCreate(VmConfig(/* ... */))
try await client.vmBoot()
import CloudHypervisor
import NIOPosix
let group = MultiThreadedEventLoopGroup(numberOfThreads: 2)
defer { try? group.syncShutdownGracefully() }
let client = try CloudHypervisor.Client(
socketPath: URL(filePath: "/run/ch/vm0.sock"),
eventLoopGroup: group
)
let info = try await client.vmInfo()
print(info.state)
vmmPing() -> VmmPingResponse — verify the VMM process is alivevmmShutdown() — shut down the VMM processvmmInfo() -> VmmInfo — query VMM-level metadatavmCreate(_ config: VmConfig) — define a new VMvmBoot() — start the VMvmShutdown() — gracefully shut down the VMvmInfo() -> VmInfo — query VM state and configurationvmPause() — pause a running VMvmResume() — resume a paused VMvmAddDisk(_ config: DiskConfig) -> PciDeviceInfo — hot-add a block devicevmAddFs(_ config: FsConfig) -> PciDeviceInfo — hot-add a virtio-fs sharevmAddNet(_ config: NetConfig) -> PciDeviceInfo — hot-add a network devicevmAddVsock(_ config: VsockConfig) -> PciDeviceInfo — hot-add a vsock devicevmRemoveDevice(id: String) — hot-remove a device by IDThe package targets the /api/v1/ REST namespace. It is tested against cloud-hypervisor v40 and later. Earlier releases may be missing endpoints or use incompatible JSON schemas.
All failures are reported through CloudHypervisor.Error:
.transport(any Swift.Error) — a network or NIO-level failure before the HTTP response was received.http(status:body:) — the server responded with a non-2xx HTTP status; body contains the raw response bytes.decoding(any Swift.Error, body:) — the response had a 2xx status but JSON decoding failed; body is the raw bytes for diagnostics.invalidSocketPath(String) — the URL passed to Client.init is not a file:// URLNon-2xx responses always produce .http, never a decode error, so callers can distinguish protocol-level errors from unexpected payloads.
Client is Sendable and all endpoint methods are async throws. Each call opens a fresh TCP-over-UDS connection to cloud-hypervisor and closes it when the response is complete.
By default the client creates and owns a MultiThreadedEventLoopGroup and shuts it down in deinit. If you already have an event loop group (e.g. from NIO or another library), pass it via the eventLoopGroup: parameter — in that case the client does not shut the group down on deinit, leaving lifecycle management to the caller.
Containerization library.