authorgravatar for der.teufel.mail@gmail.comKrzysztof Wolicki <der.teufel.mail@gmail.com> 2023-07-09 21:51:41+02:00
committergravatar for noreply@github.comGitHub <noreply@github.com> 2023-07-09 15:51:41-04:00
loga7553107345bab99b0f5318e0fd3efae84f56b56
treee072e8e0ff457aa47d47c4e6f45a62f4948d2173
parent27a66191c271d2a8b1b6ebcbef0bbdeb8d389a38
signaturebadge-question-mark Signed by PGP key 4AEE18F83AFDEB23

Changed Step.Run's stdin to accept FileSource (#16358)


1 files changed, 49 insertions(+), 11 deletions(-)

lib/std/Build/Step/Run.zig+49-11
......@@ -36,8 +36,10 @@ env_map: ?*EnvMap,
3636/// be skipped if all output files are up-to-date and input files are
3737/// unchanged.
3838stdio: StdIo = .infer_from_args,
39/// This field must be `null` if stdio is `inherit`.
40stdin: ?[]const u8 = null,
39
40/// This field must be `.none` if stdio is `inherit`.
41/// It should be only set using `setStdIn`.
42stdin: StdIn = .none,
4143
4244/// Additional file paths relative to build.zig that, when modified, indicate
4345/// that the Run step should be re-executed.
......@@ -77,6 +79,12 @@ captured_stderr: ?*Output = null,
7779
7880has_side_effects: bool = false,
7981
82pub const StdIn = union(enum) {
83 none,
84 bytes: []const u8,
85 file_source: std.Build.FileSource,
86};
87
8088pub const StdIo = union(enum) {
8189 /// Whether the Run step has side-effects will be determined by whether or not one
8290 /// of the args is an output file (added with `addOutputFileArg`).
......@@ -229,6 +237,14 @@ pub fn addArgs(self: *Run, args: []const []const u8) void {
229237 }
230238}
231239
240pub fn setStdIn(self: *Run, stdin: StdIn) void {
241 switch (stdin) {
242 .file_source => |file_source| file_source.addStepDependencies(&self.step),
243 .bytes, .none => {},
244 }
245 self.stdin = stdin;
246}
247
232248pub fn clearEnvironment(self: *Run) void {
233249 const b = self.step.owner;
234250 const new_env_map = b.allocator.create(EnvMap) catch @panic("OOM");
......@@ -454,8 +470,15 @@ fn make(step: *Step, prog_node: *std.Progress.Node) !void {
454470 }
455471 }
456472
457 if (self.stdin) |bytes| {
458 man.hash.addBytes(bytes);
473 switch (self.stdin) {
474 .bytes => |bytes| {
475 man.hash.addBytes(bytes);
476 },
477 .file_source => |file_source| {
478 const file_path = file_source.getPath(b);
479 _ = try man.addFile(file_path, null);
480 },
481 .none => {},
459482 }
460483
461484 if (self.captured_stdout) |output| {
......@@ -934,7 +957,7 @@ fn spawnChildAndCollect(
934957 };
935958 if (self.captured_stdout != null) child.stdout_behavior = .Pipe;
936959 if (self.captured_stderr != null) child.stderr_behavior = .Pipe;
937 if (self.stdin != null) {
960 if (self.stdin != .none) {
938961 assert(child.stdin_behavior != .Inherit);
939962 child.stdin_behavior = .Pipe;
940963 }
......@@ -1158,12 +1181,27 @@ fn sendRunTestMessage(file: std.fs.File, index: u32) !void {
11581181fn evalGeneric(self: *Run, child: *std.process.Child) !StdIoResult {
11591182 const arena = self.step.owner.allocator;
11601183
1161 if (self.stdin) |stdin| {
1162 child.stdin.?.writeAll(stdin) catch |err| {
1163 return self.step.fail("unable to write stdin: {s}", .{@errorName(err)});
1164 };
1165 child.stdin.?.close();
1166 child.stdin = null;
1184 switch (self.stdin) {
1185 .bytes => |bytes| {
1186 child.stdin.?.writeAll(bytes) catch |err| {
1187 return self.step.fail("unable to write stdin: {s}", .{@errorName(err)});
1188 };
1189 child.stdin.?.close();
1190 child.stdin = null;
1191 },
1192 .file_source => |file_source| {
1193 const path = file_source.getPath(self.step.owner);
1194 const file = self.step.owner.build_root.handle.openFile(path, .{}) catch |err| {
1195 return self.step.fail("unable to open stdin file: {s}", .{@errorName(err)});
1196 };
1197 defer file.close();
1198 child.stdin.?.writeFileAll(file, .{}) catch |err| {
1199 return self.step.fail("unable to write file to stdin: {s}", .{@errorName(err)});
1200 };
1201 child.stdin.?.close();
1202 child.stdin = null;
1203 },
1204 .none => {},
11671205 }
11681206
11691207 // These are not optionals, as a workaround for