mirror of
https://github.com/sbrow/envr.git
synced 2026-06-27 10:38:33 -04:00
105 lines
4.5 KiB
Zig
105 lines
4.5 KiB
Zig
const std = @import("std");
|
|
const debug = std.debug;
|
|
|
|
const c = @import("c.zig").c;
|
|
|
|
const Blob = @import("sqlite.zig").Blob;
|
|
const Text = @import("sqlite.zig").Text;
|
|
|
|
/// Sets the result of a function call in the context `ctx`.
|
|
///
|
|
/// Determines at compile time which sqlite3_result_XYZ function to use based on the type of `result`.
|
|
pub fn setResult(ctx: ?*c.sqlite3_context, result: anytype) void {
|
|
const ResultType = @TypeOf(result);
|
|
|
|
switch (ResultType) {
|
|
Text => c.sqlite3_result_text(ctx, result.data.ptr, @intCast(result.data.len), c.sqliteTransientAsDestructor()),
|
|
Blob => c.sqlite3_result_blob(ctx, result.data.ptr, @intCast(result.data.len), c.sqliteTransientAsDestructor()),
|
|
else => switch (@typeInfo(ResultType)) {
|
|
.int => |info| if ((info.bits + if (info.signedness == .unsigned) 1 else 0) <= 32) {
|
|
c.sqlite3_result_int(ctx, result);
|
|
} else if ((info.bits + if (info.signedness == .unsigned) 1 else 0) <= 64) {
|
|
c.sqlite3_result_int64(ctx, result);
|
|
} else {
|
|
@compileError("integer " ++ @typeName(ResultType) ++ " is not representable in sqlite");
|
|
},
|
|
.float => c.sqlite3_result_double(ctx, result),
|
|
.bool => c.sqlite3_result_int(ctx, if (result) 1 else 0),
|
|
.array => |arr| switch (arr.child) {
|
|
u8 => c.sqlite3_result_blob(ctx, &result, arr.len, c.sqliteTransientAsDestructor()),
|
|
else => @compileError("cannot use a result of type " ++ @typeName(ResultType)),
|
|
},
|
|
.pointer => |ptr| switch (ptr.size) {
|
|
.slice => switch (ptr.child) {
|
|
u8 => c.sqlite3_result_text(ctx, result.ptr, @intCast(result.len), c.sqliteTransientAsDestructor()),
|
|
else => @compileError("cannot use a result of type " ++ @typeName(ResultType)),
|
|
},
|
|
else => @compileError("cannot use a result of type " ++ @typeName(ResultType)),
|
|
},
|
|
else => @compileError("cannot use a result of type " ++ @typeName(ResultType)),
|
|
},
|
|
}
|
|
}
|
|
|
|
/// Sets a type using the provided value.
|
|
///
|
|
/// Determines at compile time which sqlite3_value_XYZ function to use based on the type `ArgType`.
|
|
pub fn setTypeFromValue(comptime ArgType: type, arg: *ArgType, sqlite_value: *c.sqlite3_value) void {
|
|
switch (ArgType) {
|
|
Text => arg.*.data = sliceFromValue(sqlite_value),
|
|
Blob => arg.*.data = sliceFromValue(sqlite_value),
|
|
else => switch (@typeInfo(ArgType)) {
|
|
.int => |info| if ((info.bits + if (info.signedness == .unsigned) 1 else 0) <= 32) {
|
|
const value = c.sqlite3_value_int(sqlite_value);
|
|
arg.* = @intCast(value);
|
|
} else if ((info.bits + if (info.signedness == .unsigned) 1 else 0) <= 64) {
|
|
const value = c.sqlite3_value_int64(sqlite_value);
|
|
arg.* = @intCast(value);
|
|
} else {
|
|
@compileError("integer " ++ @typeName(ArgType) ++ " is not representable in sqlite");
|
|
},
|
|
.float => {
|
|
const value = c.sqlite3_value_double(sqlite_value);
|
|
arg.* = @floatCast(value);
|
|
},
|
|
.bool => {
|
|
const value = c.sqlite3_value_int(sqlite_value);
|
|
arg.* = value > 0;
|
|
},
|
|
.pointer => |ptr| switch (ptr.size) {
|
|
.slice => switch (ptr.child) {
|
|
u8 => arg.* = sliceFromValue(sqlite_value),
|
|
else => @compileError("cannot use an argument of type " ++ @typeName(ArgType)),
|
|
},
|
|
else => @compileError("cannot use an argument of type " ++ @typeName(ArgType)),
|
|
},
|
|
else => @compileError("cannot use an argument of type " ++ @typeName(ArgType)),
|
|
},
|
|
}
|
|
}
|
|
|
|
fn sliceFromValue(sqlite_value: *c.sqlite3_value) []const u8 {
|
|
const size: usize = @intCast(c.sqlite3_value_bytes(sqlite_value));
|
|
|
|
const value = c.sqlite3_value_text(sqlite_value);
|
|
debug.assert(value != null); // TODO(vincent): how do we handle this properly ?
|
|
|
|
return value[0..size];
|
|
}
|
|
|
|
// Returns true if the type T has a function named `name`.
|
|
pub fn hasFn(comptime T: type, comptime name: []const u8) bool {
|
|
if (!@hasDecl(T, name)) {
|
|
return false;
|
|
}
|
|
|
|
const decl = @field(T, name);
|
|
const decl_type = @TypeOf(decl);
|
|
const decl_type_info = @typeInfo(decl_type);
|
|
|
|
return switch (decl_type_info) {
|
|
.@"fn" => true,
|
|
else => false,
|
|
};
|
|
}
|