mirror of
https://github.com/ghostty-org/ghostty.git
synced 2025-05-19 22:58:38 +03:00
35 lines
894 B
Zig
35 lines
894 B
Zig
const std = @import("std");
|
|
const Allocator = std.mem.Allocator;
|
|
const foundation = @import("../foundation.zig");
|
|
const c = @import("c.zig");
|
|
|
|
pub const Data = opaque {
|
|
pub fn createWithBytesNoCopy(data: []const u8) Allocator.Error!*Data {
|
|
return @as(
|
|
?*Data,
|
|
@ptrFromInt(@intFromPtr(c.CFDataCreateWithBytesNoCopy(
|
|
null,
|
|
data.ptr,
|
|
@intCast(data.len),
|
|
c.kCFAllocatorNull,
|
|
))),
|
|
) orelse error.OutOfMemory;
|
|
}
|
|
|
|
pub fn release(self: *Data) void {
|
|
foundation.CFRelease(self);
|
|
}
|
|
|
|
pub fn getPointer(self: *Data) *const anyopaque {
|
|
return @ptrCast(c.CFDataGetBytePtr(@ptrCast(self)));
|
|
}
|
|
};
|
|
|
|
test {
|
|
//const testing = std.testing;
|
|
|
|
const raw = "hello world";
|
|
const data = try Data.createWithBytesNoCopy(raw);
|
|
defer data.release();
|
|
}
|