2020-05-25 01:22:39 +01:00
|
|
|
const root = @import("build.zig");
|
|
|
|
const std = @import("std");
|
|
|
|
const io = std.io;
|
|
|
|
const fmt = std.fmt;
|
|
|
|
const Builder = std.build.Builder;
|
|
|
|
const Pkg = std.build.Pkg;
|
2020-05-25 09:28:38 +01:00
|
|
|
const InstallArtifactStep = std.build.InstallArtifactStep;
|
2020-06-15 00:26:54 +01:00
|
|
|
const LibExeObjStep = std.build.LibExeObjStep;
|
2020-05-25 01:22:39 +01:00
|
|
|
const ArrayList = std.ArrayList;
|
|
|
|
|
2020-05-25 09:28:38 +01:00
|
|
|
///! This is a modified build runner to extract information out of build.zig
|
|
|
|
///! Modified from the std.special.build_runner
|
2020-05-25 01:22:39 +01:00
|
|
|
|
|
|
|
pub fn main() !void {
|
|
|
|
var arena = std.heap.ArenaAllocator.init(std.heap.page_allocator);
|
|
|
|
defer arena.deinit();
|
|
|
|
|
2020-05-25 09:28:38 +01:00
|
|
|
const allocator = &arena.allocator;
|
2020-05-25 01:22:39 +01:00
|
|
|
|
2020-12-10 23:35:15 +00:00
|
|
|
const builder = try Builder.create(allocator, "", "", "", "");
|
2020-05-25 01:22:39 +01:00
|
|
|
defer builder.destroy();
|
|
|
|
|
|
|
|
try runBuild(builder);
|
|
|
|
|
|
|
|
const stdout_stream = io.getStdOut().outStream();
|
|
|
|
|
2020-05-25 09:30:12 +01:00
|
|
|
// TODO: We currently add packages from every LibExeObj step that the install step depends on.
|
|
|
|
// Should we error out or keep one step or something similar?
|
|
|
|
// We also flatten them, we should probably keep the nested structure.
|
2020-06-15 00:26:54 +01:00
|
|
|
for (builder.top_level_steps.items) |tls| {
|
|
|
|
for (tls.step.dependencies.items) |step| {
|
2020-06-19 01:51:39 +01:00
|
|
|
try processStep(stdout_stream, step);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-24 13:03:21 +01:00
|
|
|
fn processStep(stdout_stream: anytype, step: *std.build.Step) anyerror!void {
|
2020-06-19 01:51:39 +01:00
|
|
|
if (step.cast(InstallArtifactStep)) |install_exe| {
|
|
|
|
for (install_exe.artifact.packages.items) |pkg| {
|
|
|
|
try processPackage(stdout_stream, pkg);
|
|
|
|
}
|
|
|
|
} else if (step.cast(LibExeObjStep)) |exe| {
|
|
|
|
for (exe.packages.items) |pkg| {
|
|
|
|
try processPackage(stdout_stream, pkg);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (step.dependencies.items) |unknown_step| {
|
|
|
|
try processStep(stdout_stream, unknown_step);
|
2020-05-25 01:22:39 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-24 13:03:21 +01:00
|
|
|
fn processPackage(out_stream: anytype, pkg: Pkg) anyerror!void {
|
2021-01-04 17:51:26 +00:00
|
|
|
try out_stream.print("{s}\x00{s}\n", .{ pkg.name, pkg.path });
|
2020-05-25 01:22:39 +01:00
|
|
|
if (pkg.dependencies) |dependencies| {
|
|
|
|
for (dependencies) |dep| {
|
|
|
|
try processPackage(out_stream, dep);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn runBuild(builder: *Builder) anyerror!void {
|
2020-10-04 15:08:49 +01:00
|
|
|
switch (@typeInfo(@typeInfo(@TypeOf(root.build)).Fn.return_type.?)) {
|
2020-05-25 01:22:39 +01:00
|
|
|
.Void => root.build(builder),
|
|
|
|
.ErrorUnion => try root.build(builder),
|
|
|
|
else => @compileError("expected return type of build to be 'void' or '!void'"),
|
|
|
|
}
|
|
|
|
}
|