make services direct imports/pub const in generated service manifest
This commit is contained in:
parent
9c3be78d9f
commit
267e72051d
|
@ -12,9 +12,7 @@ pub fn main() anyerror!void {
|
||||||
const stdout = std.io.getStdOut().writer();
|
const stdout = std.io.getStdOut().writer();
|
||||||
const manifest_file = try std.fs.cwd().createFile("service_manifest.zig", .{});
|
const manifest_file = try std.fs.cwd().createFile("service_manifest.zig", .{});
|
||||||
defer manifest_file.close();
|
defer manifest_file.close();
|
||||||
errdefer manifest_file.close();
|
|
||||||
const manifest = manifest_file.writer();
|
const manifest = manifest_file.writer();
|
||||||
_ = try manifest.write("pub const services = [_]struct { name: []const u8, file_name: []const u8, export_name: []const u8 }{\n");
|
|
||||||
var inx: u32 = 0;
|
var inx: u32 = 0;
|
||||||
for (args) |arg| {
|
for (args) |arg| {
|
||||||
if (inx == 0) {
|
if (inx == 0) {
|
||||||
|
@ -27,7 +25,6 @@ pub fn main() anyerror!void {
|
||||||
|
|
||||||
if (args.len == 0)
|
if (args.len == 0)
|
||||||
_ = try generateServices(allocator, ";", std.io.getStdIn(), stdout);
|
_ = try generateServices(allocator, ";", std.io.getStdIn(), stdout);
|
||||||
_ = try manifest.write("};\n");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn processFile(arg: []const u8, stdout: anytype, manifest: anytype) !void {
|
fn processFile(arg: []const u8, stdout: anytype, manifest: anytype) !void {
|
||||||
|
@ -57,9 +54,7 @@ fn processFile(arg: []const u8, stdout: anytype, manifest: anytype) !void {
|
||||||
}
|
}
|
||||||
file.close();
|
file.close();
|
||||||
for (service_names) |name| {
|
for (service_names) |name| {
|
||||||
_ = try manifest.write(" .{");
|
try manifest.print("pub const {s} = @import(\"{s}\");\n", .{ name, std.fs.path.basename(filename) });
|
||||||
try manifest.print(" .name = \"{s}\", .file_name = \"{s}\", .export_name = \"{s}\"", .{ name, std.fs.path.basename(filename), name });
|
|
||||||
_ = try manifest.write(" },\n");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user