zig libvirt: fix Connection

This commit is contained in:
Jeeves 2024-06-25 14:27:17 -06:00
parent b22a7fde94
commit 55652c0c0b

View file

@ -3,19 +3,22 @@ const mem = std.mem;
const heap = std.heap;
const c = @import("libvirt-c.zig").c;
const err = @import("libvirt-error.zig");
const VirError = err.VirError;
const Connection = @This();
ptr: c.virConnectPtr,
allocator: mem.Allocator,
pub fn connect(uri: []const u8, allocator: mem.Allocator) VirError!Connection {
pub fn init(uri: []const u8, allocator: mem.Allocator) VirError!Connection {
const connection = c.virConnectOpenAuth(@ptrCast(uri), c.virConnectAuthPtrDefault, 0);
if (connection) |conn| return .{
.ptr = conn,
.allocator = allocator,
} else return handleError();
} else return err.handleError();
}
pub fn close(self: *const Connection) void {
pub fn deinit(self: *const Connection) void {
_ = c.virConnectClose(self.ptr);
}