mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-12 04:52:53 +01:00
29 lines
1.1 KiB
Zig
29 lines
1.1 KiB
Zig
const std = @import("std");
|
|
|
|
pub const confgen_json_opt = std.json.ParseOptions{ .ignore_unknown_fields = true };
|
|
|
|
pub fn build(b: *std.Build) void {
|
|
_ = b.addModule("common", .{
|
|
.root_source_file = b.path("src/main.zig"),
|
|
});
|
|
}
|
|
|
|
// TODO: make confgen generate zon and delete
|
|
/// Retrieve some confgen options given a relative path to the dotfile root and a struct type
|
|
/// with a field for each option.
|
|
pub fn confgenGet(comptime T: type, alloc: std.mem.Allocator) !T {
|
|
const optjson_path = comptime std.fs.path.dirname(@src().file).? ++ "/../../cgout/_cgfs/opts.json";
|
|
var file = try std.fs.cwd().openFile(optjson_path, .{});
|
|
defer file.close();
|
|
var buf_reader = std.io.bufferedReader(file.reader());
|
|
|
|
var reader = std.json.Reader(1024 * 8, @TypeOf(buf_reader.reader()))
|
|
.init(alloc, buf_reader.reader());
|
|
defer reader.deinit();
|
|
|
|
const ret = try std.json.parseFromTokenSource(T, alloc, &reader, confgen_json_opt);
|
|
|
|
// We just grab the value from the parse result as this data will almost certainly have been
|
|
// allocated with the builder's arena anyways.
|
|
return ret.value;
|
|
}
|