zig libvirt: fix Connection
This commit is contained in:
parent
b22a7fde94
commit
55652c0c0b
1 changed files with 6 additions and 3 deletions
|
@ -3,19 +3,22 @@ const mem = std.mem;
|
||||||
const heap = std.heap;
|
const heap = std.heap;
|
||||||
|
|
||||||
const c = @import("libvirt-c.zig").c;
|
const c = @import("libvirt-c.zig").c;
|
||||||
|
const err = @import("libvirt-error.zig");
|
||||||
|
const VirError = err.VirError;
|
||||||
|
const Connection = @This();
|
||||||
|
|
||||||
ptr: c.virConnectPtr,
|
ptr: c.virConnectPtr,
|
||||||
allocator: mem.Allocator,
|
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);
|
const connection = c.virConnectOpenAuth(@ptrCast(uri), c.virConnectAuthPtrDefault, 0);
|
||||||
if (connection) |conn| return .{
|
if (connection) |conn| return .{
|
||||||
.ptr = conn,
|
.ptr = conn,
|
||||||
.allocator = allocator,
|
.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);
|
_ = c.virConnectClose(self.ptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue