fediglam/src/sql/lib.zig

167 lines
5.3 KiB
Zig
Raw Normal View History

2022-07-15 00:58:08 +00:00
const std = @import("std");
2022-07-18 07:37:10 +00:00
const util = @import("util");
2022-07-15 00:58:08 +00:00
const c = @cImport({
@cInclude("sqlite3.h");
});
2022-07-18 07:37:10 +00:00
const Uuid = util.Uuid;
const DateTime = util.DateTime;
2022-07-16 19:00:33 +00:00
2022-07-15 00:58:08 +00:00
pub const Sqlite = struct {
db: *c.sqlite3,
pub fn open(path: [:0]const u8) !Sqlite {
var db: ?*c.sqlite3 = undefined;
2022-07-13 14:42:30 +00:00
const err = c.sqlite3_open_v2(@ptrCast([*c]const u8, path), &db, c.SQLITE_OPEN_READWRITE | c.SQLITE_OPEN_CREATE, null);
2022-07-15 00:58:08 +00:00
if (err != c.SQLITE_OK) return error.UnknownError;
return Sqlite{
.db = db.?,
};
}
pub fn close(self: *Sqlite) void {
2022-07-15 07:27:27 +00:00
_ = c.sqlite3_close_v2(self.db);
2022-07-15 00:58:08 +00:00
}
pub fn prepare(self: *Sqlite, sql: []const u8) !PreparedStmt {
2022-07-15 07:27:27 +00:00
var stmt: ?*c.sqlite3_stmt = undefined;
const err = c.sqlite3_prepare_v2(self.db, sql.ptr, @intCast(c_int, sql.len), &stmt, null);
2022-07-16 18:41:09 +00:00
if (err != c.SQLITE_OK) {
2022-07-22 04:18:20 +00:00
std.log.debug("sql error {}: {s}", .{ err, c.sqlite3_errmsg(self.db) });
std.log.debug("Failed on SQL:\n==========\n{s}\n==========", .{sql});
2022-07-16 18:41:09 +00:00
return error.UnknownError;
}
2022-07-15 00:58:08 +00:00
2022-07-15 07:27:27 +00:00
return PreparedStmt{ .stmt = stmt.?, .db = self.db };
2022-07-15 00:58:08 +00:00
}
};
pub const Row = struct {
stmt: *c.sqlite3_stmt,
2022-07-15 07:27:27 +00:00
db: *c.sqlite3,
2022-07-15 00:58:08 +00:00
2022-07-24 04:29:38 +00:00
pub fn isNull(self: Row, idx: u15) bool {
return c.sqlite3_column_type(self.stmt, idx) == c.SQLITE_NULL;
}
2022-07-15 07:27:27 +00:00
pub fn getI64(self: Row, idx: u15) !i64 {
2022-07-15 00:58:08 +00:00
return @intCast(i64, c.sqlite3_column_int64(self.stmt, idx));
}
2022-07-15 07:27:27 +00:00
pub fn getText(self: Row, idx: u15, buf: []u8) ![]u8 {
2022-07-15 00:58:08 +00:00
const ptr = c.sqlite3_column_text(self.stmt, idx);
2022-07-15 07:27:27 +00:00
const size = @intCast(usize, c.sqlite3_column_bytes(self.stmt, idx));
2022-07-15 00:58:08 +00:00
if (size > buf.len) return error.StreamTooLong;
for (ptr[0..size]) |ch, i| buf[i] = ch;
return buf[0..size];
}
2022-07-15 07:27:27 +00:00
pub fn getTextAlloc(self: Row, idx: u15, alloc: std.mem.Allocator) ![]u8 {
2022-07-15 00:58:08 +00:00
const size = c.sqlite3_column_bytes(self.stmt, idx);
2022-07-15 07:27:27 +00:00
var buf = try alloc.alloc(u8, @intCast(usize, size));
2022-07-15 00:58:08 +00:00
errdefer alloc.free(buf);
return self.getText(idx, buf);
}
2022-07-17 23:21:03 +00:00
2022-07-24 04:14:46 +00:00
pub fn getBlob(self: Row, idx: u15, buf: []u8) ![]u8 {
2022-09-07 23:14:52 +00:00
const ptr = @ptrCast([*]const u8, c.sqlite3_column_blob(self.stmt, idx));
2022-07-24 04:14:46 +00:00
const size = @intCast(usize, c.sqlite3_column_bytes(self.stmt, idx));
if (size > buf.len) return error.StreamTooLong;
for (ptr[0..size]) |ch, i| buf[i] = ch;
return buf[0..size];
}
pub fn getBlobAlloc(self: Row, idx: u15, alloc: std.mem.Allocator) ![]u8 {
const size = c.sqlite3_column_bytes(self.stmt, idx);
var buf = try alloc.alloc(u8, @intCast(usize, size));
errdefer alloc.free(buf);
return self.getBlob(idx, buf);
}
2022-07-17 23:21:03 +00:00
pub fn getUuid(self: Row, idx: u15) !Uuid {
var buf: [Uuid.string_len + 1]u8 = undefined;
_ = try self.getText(idx, &buf);
return try Uuid.parse(buf[0..Uuid.string_len]);
}
2022-07-18 07:37:10 +00:00
pub fn getDateTime(self: Row, idx: u15) !DateTime {
return DateTime{ .seconds_since_epoch = try self.getI64(idx) };
}
2022-07-15 00:58:08 +00:00
};
pub const PreparedStmt = struct {
stmt: *c.sqlite3_stmt,
2022-07-15 07:27:27 +00:00
db: *c.sqlite3,
2022-07-15 00:58:08 +00:00
2022-07-24 04:29:38 +00:00
pub fn bindNull(self: PreparedStmt, idx: u15) !void {
2022-07-15 00:58:08 +00:00
return switch (c.sqlite3_bind_null(self.stmt, idx)) {
2022-07-22 04:18:43 +00:00
c.SQLITE_OK => {},
2022-07-15 00:58:08 +00:00
else => error.UnknownError,
};
}
2022-07-24 04:29:38 +00:00
pub fn bindUuid(self: PreparedStmt, idx: u15, id: Uuid) !void {
2022-07-16 19:00:33 +00:00
const str = id.toCharArray();
return self.bindText(idx, &str);
}
2022-07-24 04:29:38 +00:00
pub fn bindText(self: PreparedStmt, idx: u15, str: []const u8) !void {
2022-07-27 05:02:09 +00:00
// Work around potential null pointer in empty string
const eff_str = if (str.len == 0) (" ")[0..0] else str;
return switch (c.sqlite3_bind_text(self.stmt, idx, eff_str.ptr, @intCast(c_int, eff_str.len), c.SQLITE_TRANSIENT)) {
2022-07-15 07:27:27 +00:00
c.SQLITE_OK => {},
2022-07-15 00:58:08 +00:00
else => error.UnknownError,
};
}
2022-07-24 04:29:38 +00:00
pub fn bindBlob(self: PreparedStmt, idx: u15, blob: []const u8) !void {
2022-07-24 04:14:46 +00:00
return switch (c.sqlite3_bind_blob64(self.stmt, idx, blob.ptr, blob.len, c.SQLITE_TRANSIENT)) {
c.SQLITE_OK => {},
else => error.UnknownError,
};
}
2022-07-24 04:29:38 +00:00
pub fn bindI64(self: PreparedStmt, idx: u15, val: i64) !void {
2022-07-15 00:58:08 +00:00
return switch (c.sqlite3_bind_int64(self.stmt, idx, val)) {
2022-07-18 07:37:10 +00:00
c.SQLITE_OK => {},
2022-07-15 00:58:08 +00:00
else => error.UnknownError,
};
}
2022-07-24 04:29:38 +00:00
pub fn bindDateTime(self: PreparedStmt, idx: u15, val: DateTime) !void {
2022-07-18 07:37:10 +00:00
return self.bindI64(idx, val.seconds_since_epoch);
}
2022-07-24 04:29:38 +00:00
pub fn step(self: PreparedStmt) !?Row {
2022-07-15 00:58:08 +00:00
return switch (c.sqlite3_step(self.stmt)) {
2022-07-15 07:27:27 +00:00
c.SQLITE_ROW => Row{ .stmt = self.stmt, .db = self.db },
c.SQLITE_DONE => null,
2022-07-15 00:58:08 +00:00
2022-07-16 05:29:08 +00:00
else => |err| blk: {
2022-07-22 04:18:20 +00:00
std.log.debug("sql error {}: {s}", .{ err, c.sqlite3_errmsg(self.db) });
2022-07-28 03:13:25 +00:00
std.log.debug("Failed on SQL:\n==========\n{?s}\n==========", .{self.getGeneratingSql()});
2022-07-16 05:29:08 +00:00
break :blk error.UnknownError;
},
2022-07-15 00:58:08 +00:00
};
}
2022-07-24 04:29:38 +00:00
pub fn finalize(self: PreparedStmt) void {
2022-07-15 00:58:08 +00:00
_ = c.sqlite3_finalize(self.stmt);
}
2022-07-24 04:29:38 +00:00
pub fn reset(self: PreparedStmt) void {
2022-07-15 00:58:08 +00:00
_ = c.sqlite3_reset(self.stmt);
}
2022-07-22 04:18:20 +00:00
2022-07-24 04:29:38 +00:00
fn getGeneratingSql(self: PreparedStmt) ?[*:0]const u8 {
2022-07-22 04:18:20 +00:00
return c.sqlite3_sql(self.stmt);
}
2022-07-15 00:58:08 +00:00
};