authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-03-06 18:49:26-05:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2020-03-06 18:49:26-05:00
log7f975bf09f4e6e81d68c9a573ac2e31b997b5816
tree1fd5c25caa7321898f45c45e6a42f6623b94c760
parentfa46bcb36864e6616ce4449965063f3b8720f8e1
parent231a4b8fde6ff061198c76d02990a471ec48c977
signaturelock-open Commit is signed but in an unrecognized format.

Merge branch 'daurnimator-less-buffer'

Closes #4405 Closes #4656

11 files changed, 165 insertions(+), 131 deletions(-)

build.zig-1
......@@ -6,7 +6,6 @@ const BufMap = std.BufMap;
66const warn = std.debug.warn;
77const mem = std.mem;
88const ArrayList = std.ArrayList;
9const Buffer = std.Buffer;
109const io = std.io;
1110const fs = std.fs;
1211const InstallDirectoryOptions = std.build.InstallDirectoryOptions;
lib/std/array_list.zig+48-34
......@@ -5,10 +5,8 @@ const testing = std.testing;
55const mem = std.mem;
66const Allocator = mem.Allocator;
77
8/// List of items.
9///
10/// This is a wrapper around an array of T values. Initialize with
11/// `init`.
8/// A contiguous, growable list of items in memory.
9/// This is a wrapper around an array of T values. Initialize with `init`.
1210pub fn ArrayList(comptime T: type) type {
1311 return AlignedArrayList(T, null);
1412}
......@@ -22,7 +20,7 @@ pub fn AlignedArrayList(comptime T: type, comptime alignment: ?u29) type {
2220 return struct {
2321 const Self = @This();
2422
25 /// Use toSlice instead of slicing this directly, because if you don't
23 /// Use `span` instead of slicing this directly, because if you don't
2624 /// specify the end position of the slice, this will potentially give
2725 /// you uninitialized memory.
2826 items: Slice,
......@@ -56,34 +54,37 @@ pub fn AlignedArrayList(comptime T: type, comptime alignment: ?u29) type {
5654
5755 /// Return contents as a slice. Only valid while the list
5856 /// doesn't change size.
59 pub fn toSlice(self: Self) Slice {
57 pub fn span(self: var) @TypeOf(self.items[0..self.len]) {
6058 return self.items[0..self.len];
6159 }
6260
63 /// Return list as const slice. Only valid while the list
64 /// doesn't change size.
61 /// Deprecated: use `span`.
62 pub fn toSlice(self: Self) Slice {
63 return self.span();
64 }
65
66 /// Deprecated: use `span`.
6567 pub fn toSliceConst(self: Self) SliceConst {
66 return self.items[0..self.len];
68 return self.span();
6769 }
6870
69 /// Safely access index i of the list.
71 /// Deprecated: use `span()[i]`.
7072 pub fn at(self: Self, i: usize) T {
71 return self.toSliceConst()[i];
73 return self.span()[i];
7274 }
7375
74 /// Safely access ptr to index i of the list.
76 /// Deprecated: use `&span()[i]`.
7577 pub fn ptrAt(self: Self, i: usize) *T {
76 return &self.toSlice()[i];
78 return &self.span()[i];
7779 }
7880
79 /// Sets the value at index `i`, or returns `error.OutOfBounds` if
80 /// the index is not in range.
81 /// Deprecated: use `if (i >= list.len) return error.OutOfBounds else span()[i] = item`.
8182 pub fn setOrError(self: Self, i: usize, item: T) !void {
8283 if (i >= self.len) return error.OutOfBounds;
8384 self.items[i] = item;
8485 }
8586
86 /// Sets the value at index `i`, asserting that the value is in range.
87 /// Deprecated: use `list.span()[i] = item`.
8788 pub fn set(self: *Self, i: usize, item: T) void {
8889 assert(i < self.len);
8990 self.items[i] = item;
......@@ -124,18 +125,18 @@ pub fn AlignedArrayList(comptime T: type, comptime alignment: ?u29) type {
124125 self.items[n] = item;
125126 }
126127
127 /// Insert slice `items` at index `n`. Moves
128 /// `list[n .. list.len]` to make room.
129 pub fn insertSlice(self: *Self, n: usize, items: SliceConst) !void {
128 /// Insert slice `items` at index `i`. Moves
129 /// `list[i .. list.len]` to make room.
130 /// This operation is O(N).
131 pub fn insertSlice(self: *Self, i: usize, items: SliceConst) !void {
130132 try self.ensureCapacity(self.len + items.len);
131133 self.len += items.len;
132134
133 mem.copyBackwards(T, self.items[n + items.len .. self.len], self.items[n .. self.len - items.len]);
134 mem.copy(T, self.items[n .. n + items.len], items);
135 mem.copyBackwards(T, self.items[i + items.len .. self.len], self.items[i .. self.len - items.len]);
136 mem.copy(T, self.items[i .. i + items.len], items);
135137 }
136138
137 /// Extend the list by 1 element. Allocates more memory as
138 /// necessary.
139 /// Extend the list by 1 element. Allocates more memory as necessary.
139140 pub fn append(self: *Self, item: T) !void {
140141 const new_item_ptr = try self.addOne();
141142 new_item_ptr.* = item;
......@@ -148,8 +149,9 @@ pub fn AlignedArrayList(comptime T: type, comptime alignment: ?u29) type {
148149 new_item_ptr.* = item;
149150 }
150151
151 /// Remove the element at index `i` from the list and return
152 /// its value. Asserts the array has at least one item.
152 /// Remove the element at index `i` from the list and return its value.
153 /// Asserts the array has at least one item.
154 /// This operation is O(N).
153155 pub fn orderedRemove(self: *Self, i: usize) T {
154156 const newlen = self.len - 1;
155157 if (newlen == i) return self.pop();
......@@ -163,18 +165,17 @@ pub fn AlignedArrayList(comptime T: type, comptime alignment: ?u29) type {
163165
164166 /// Removes the element at the specified index and returns it.
165167 /// The empty slot is filled from the end of the list.
168 /// This operation is O(1).
166169 pub fn swapRemove(self: *Self, i: usize) T {
167170 if (self.len - 1 == i) return self.pop();
168171
169 const slice = self.toSlice();
172 const slice = self.span();
170173 const old_item = slice[i];
171174 slice[i] = self.pop();
172175 return old_item;
173176 }
174177
175 /// Removes the element at the specified index and returns it
176 /// or an error.OutOfBounds is returned. If no error then
177 /// the empty slot is filled from the end of the list.
178 /// Deprecated: use `if (i >= list.len) return error.OutOfBounds else list.swapRemove(i)`.
178179 pub fn swapRemoveOrError(self: *Self, i: usize) !T {
179180 if (i >= self.len) return error.OutOfBounds;
180181 return self.swapRemove(i);
......@@ -204,6 +205,7 @@ pub fn AlignedArrayList(comptime T: type, comptime alignment: ?u29) type {
204205 }
205206
206207 /// Reduce allocated capacity to `new_len`.
208 /// Invalidates element pointers.
207209 pub fn shrink(self: *Self, new_len: usize) void {
208210 assert(new_len <= self.len);
209211 self.len = new_len;
......@@ -222,13 +224,24 @@ pub fn AlignedArrayList(comptime T: type, comptime alignment: ?u29) type {
222224 self.items = try self.allocator.realloc(self.items, better_capacity);
223225 }
224226
227 /// Increases the array's length to match the full capacity that is already allocated.
228 /// The new elements have `undefined` values. This operation does not invalidate any
229 /// element pointers.
230 pub fn expandToCapacity(self: *Self) void {
231 self.len = self.items.len;
232 }
233
225234 /// Increase length by 1, returning pointer to the new item.
235 /// The returned pointer becomes invalid when the list is resized.
226236 pub fn addOne(self: *Self) !*T {
227237 const new_length = self.len + 1;
228238 try self.ensureCapacity(new_length);
229239 return self.addOneAssumeCapacity();
230240 }
231241
242 /// Increase length by 1, returning pointer to the new item.
243 /// Asserts that there is already space for the new item without allocating more.
244 /// The returned pointer becomes invalid when the list is resized.
232245 pub fn addOneAssumeCapacity(self: *Self) *T {
233246 assert(self.len < self.capacity());
234247 const result = &self.items[self.len];
......@@ -236,14 +249,15 @@ pub fn AlignedArrayList(comptime T: type, comptime alignment: ?u29) type {
236249 return result;
237250 }
238251
239 /// Remove and return the last element from the list. Asserts
240 /// the list has at least one item.
252 /// Remove and return the last element from the list.
253 /// Asserts the list has at least one item.
241254 pub fn pop(self: *Self) T {
242255 self.len -= 1;
243256 return self.items[self.len];
244257 }
245258
246 /// Like `pop` but returns `null` if empty.
259 /// Remove and return the last element from the list.
260 /// If the list is empty, returns `null`.
247261 pub fn popOrNull(self: *Self) ?T {
248262 if (self.len == 0) return null;
249263 return self.pop();
......@@ -287,7 +301,7 @@ test "std.ArrayList.basic" {
287301 }
288302 }
289303
290 for (list.toSlice()) |v, i| {
304 for (list.span()) |v, i| {
291305 testing.expect(v == @intCast(i32, i + 1));
292306 }
293307
......@@ -325,7 +339,7 @@ test "std.ArrayList.appendNTimes" {
325339
326340 try list.appendNTimes(2, 10);
327341 testing.expectEqual(@as(usize, 10), list.len);
328 for (list.toSlice()) |element| {
342 for (list.span()) |element| {
329343 testing.expectEqual(@as(i32, 2), element);
330344 }
331345}
lib/std/buffer.zig+8-2
......@@ -81,12 +81,18 @@ pub const Buffer = struct {
8181 self.list.deinit();
8282 }
8383
84 pub fn span(self: var) @TypeOf(self.list.items[0 .. self.list.len - 1 :0]) {
85 return self.list.span()[0..self.len() :0];
86 }
87
88 /// Deprecated: use `span`
8489 pub fn toSlice(self: Buffer) [:0]u8 {
85 return self.list.toSlice()[0..self.len() :0];
90 return self.span();
8691 }
8792
93 /// Deprecated: use `span`
8894 pub fn toSliceConst(self: Buffer) [:0]const u8 {
89 return self.list.toSliceConst()[0..self.len() :0];
95 return self.span();
9096 }
9197
9298 pub fn shrink(self: *Buffer, new_len: usize) void {
lib/std/build.zig+3-5
......@@ -926,11 +926,9 @@ pub const Builder = struct {
926926
927927 try child.spawn();
928928
929 var stdout = std.Buffer.initNull(self.allocator);
930 defer std.Buffer.deinit(&stdout);
931
932929 var stdout_file_in_stream = child.stdout.?.inStream();
933 try stdout_file_in_stream.stream.readAllBuffer(&stdout, max_output_size);
930 const stdout = try stdout_file_in_stream.stream.readAllAlloc(self.allocator, max_output_size);
931 errdefer self.allocator.free(stdout);
934932
935933 const term = try child.wait();
936934 switch (term) {
......@@ -939,7 +937,7 @@ pub const Builder = struct {
939937 out_code.* = @truncate(u8, code);
940938 return error.ExitCodeFailure;
941939 }
942 return stdout.toOwnedSlice();
940 return stdout;
943941 },
944942 .Signal, .Stopped, .Unknown => |code| {
945943 out_code.* = @truncate(u8, code);
lib/std/build/run.zig+17-15
......@@ -9,7 +9,6 @@ const mem = std.mem;
99const process = std.process;
1010const ArrayList = std.ArrayList;
1111const BufMap = std.BufMap;
12const Buffer = std.Buffer;
1312const warn = std.debug.warn;
1413
1514const max_stdout_size = 1 * 1024 * 1024; // 1 MiB
......@@ -169,23 +168,26 @@ pub const RunStep = struct {
169168 return err;
170169 };
171170
172 var stdout = Buffer.initNull(self.builder.allocator);
173 var stderr = Buffer.initNull(self.builder.allocator);
174
175171 // TODO need to poll to read these streams to prevent a deadlock (or rely on evented I/O).
176172
173 var stdout: ?[]const u8 = null;
174 defer if (stdout) |s| self.builder.allocator.free(s);
175
177176 switch (self.stdout_action) {
178177 .expect_exact, .expect_matches => {
179178 var stdout_file_in_stream = child.stdout.?.inStream();
180 stdout_file_in_stream.stream.readAllBuffer(&stdout, max_stdout_size) catch unreachable;
179 stdout = stdout_file_in_stream.stream.readAllAlloc(self.builder.allocator, max_stdout_size) catch unreachable;
181180 },
182181 .inherit, .ignore => {},
183182 }
184183
185 switch (self.stdout_action) {
184 var stderr: ?[]const u8 = null;
185 defer if (stderr) |s| self.builder.allocator.free(s);
186
187 switch (self.stderr_action) {
186188 .expect_exact, .expect_matches => {
187189 var stderr_file_in_stream = child.stderr.?.inStream();
188 stderr_file_in_stream.stream.readAllBuffer(&stderr, max_stdout_size) catch unreachable;
190 stderr = stderr_file_in_stream.stream.readAllAlloc(self.builder.allocator, max_stdout_size) catch unreachable;
189191 },
190192 .inherit, .ignore => {},
191193 }
......@@ -216,7 +218,7 @@ pub const RunStep = struct {
216218 switch (self.stderr_action) {
217219 .inherit, .ignore => {},
218220 .expect_exact => |expected_bytes| {
219 if (!mem.eql(u8, expected_bytes, stderr.toSliceConst())) {
221 if (!mem.eql(u8, expected_bytes, stderr.?)) {
220222 warn(
221223 \\
222224 \\========= Expected this stderr: =========
......@@ -224,13 +226,13 @@ pub const RunStep = struct {
224226 \\========= But found: ====================
225227 \\{}
226228 \\
227 , .{ expected_bytes, stderr.toSliceConst() });
229 , .{ expected_bytes, stderr.? });
228230 printCmd(cwd, argv);
229231 return error.TestFailed;
230232 }
231233 },
232234 .expect_matches => |matches| for (matches) |match| {
233 if (mem.indexOf(u8, stderr.toSliceConst(), match) == null) {
235 if (mem.indexOf(u8, stderr.?, match) == null) {
234236 warn(
235237 \\
236238 \\========= Expected to find in stderr: =========
......@@ -238,7 +240,7 @@ pub const RunStep = struct {
238240 \\========= But stderr does not contain it: =====
239241 \\{}
240242 \\
241 , .{ match, stderr.toSliceConst() });
243 , .{ match, stderr.? });
242244 printCmd(cwd, argv);
243245 return error.TestFailed;
244246 }
......@@ -248,7 +250,7 @@ pub const RunStep = struct {
248250 switch (self.stdout_action) {
249251 .inherit, .ignore => {},
250252 .expect_exact => |expected_bytes| {
251 if (!mem.eql(u8, expected_bytes, stdout.toSliceConst())) {
253 if (!mem.eql(u8, expected_bytes, stdout.?)) {
252254 warn(
253255 \\
254256 \\========= Expected this stdout: =========
......@@ -256,13 +258,13 @@ pub const RunStep = struct {
256258 \\========= But found: ====================
257259 \\{}
258260 \\
259 , .{ expected_bytes, stdout.toSliceConst() });
261 , .{ expected_bytes, stdout.? });
260262 printCmd(cwd, argv);
261263 return error.TestFailed;
262264 }
263265 },
264266 .expect_matches => |matches| for (matches) |match| {
265 if (mem.indexOf(u8, stdout.toSliceConst(), match) == null) {
267 if (mem.indexOf(u8, stdout.?, match) == null) {
266268 warn(
267269 \\
268270 \\========= Expected to find in stdout: =========
......@@ -270,7 +272,7 @@ pub const RunStep = struct {
270272 \\========= But stdout does not contain it: =====
271273 \\{}
272274 \\
273 , .{ match, stdout.toSliceConst() });
275 , .{ match, stdout.? });
274276 printCmd(cwd, argv);
275277 return error.TestFailed;
276278 }
lib/std/child_process.zig+7-9
......@@ -217,21 +217,19 @@ pub const ChildProcess = struct {
217217
218218 try child.spawn();
219219
220 var stdout = Buffer.initNull(args.allocator);
221 var stderr = Buffer.initNull(args.allocator);
222 defer Buffer.deinit(&stdout);
223 defer Buffer.deinit(&stderr);
224
225220 var stdout_file_in_stream = child.stdout.?.inStream();
226221 var stderr_file_in_stream = child.stderr.?.inStream();
227222
228 try stdout_file_in_stream.stream.readAllBuffer(&stdout, args.max_output_bytes);
229 try stderr_file_in_stream.stream.readAllBuffer(&stderr, args.max_output_bytes);
223 // TODO need to poll to read these streams to prevent a deadlock (or rely on evented I/O).
224 const stdout = try stdout_file_in_stream.stream.readAllAlloc(args.allocator, args.max_output_bytes);
225 errdefer args.allocator.free(stdout);
226 const stderr = try stderr_file_in_stream.stream.readAllAlloc(args.allocator, args.max_output_bytes);
227 errdefer args.allocator.free(stderr);
230228
231229 return ExecResult{
232230 .term = try child.wait(),
233 .stdout = stdout.toOwnedSlice(),
234 .stderr = stderr.toOwnedSlice(),
231 .stdout = stdout,
232 .stderr = stderr,
235233 };
236234 }
237235
lib/std/fmt.zig+11-11
......@@ -1643,10 +1643,10 @@ test "hexToBytes" {
16431643test "formatIntValue with comptime_int" {
16441644 const value: comptime_int = 123456789123456789;
16451645
1646 var buf = try std.Buffer.init(std.testing.allocator, "");
1646 var buf = std.ArrayList(u8).init(std.testing.allocator);
16471647 defer buf.deinit();
1648 try formatIntValue(value, "", FormatOptions{}, &buf, @TypeOf(std.Buffer.append).ReturnType.ErrorSet, std.Buffer.append);
1649 std.testing.expect(mem.eql(u8, buf.toSlice(), "123456789123456789"));
1648 try formatIntValue(value, "", FormatOptions{}, &buf, @TypeOf(std.ArrayList(u8).appendSlice).ReturnType.ErrorSet, std.ArrayList(u8).appendSlice);
1649 std.testing.expect(mem.eql(u8, buf.toSliceConst(), "123456789123456789"));
16501650}
16511651
16521652test "formatType max_depth" {
......@@ -1698,24 +1698,24 @@ test "formatType max_depth" {
16981698 inst.a = &inst;
16991699 inst.tu.ptr = &inst.tu;
17001700
1701 var buf0 = try std.Buffer.init(std.testing.allocator, "");
1701 var buf0 = std.ArrayList(u8).init(std.testing.allocator);
17021702 defer buf0.deinit();
1703 try formatType(inst, "", FormatOptions{}, &buf0, @TypeOf(std.Buffer.append).ReturnType.ErrorSet, std.Buffer.append, 0);
1703 try formatType(inst, "", FormatOptions{}, &buf0, @TypeOf(std.ArrayList(u8).appendSlice).ReturnType.ErrorSet, std.ArrayList(u8).appendSlice, 0);
17041704 std.testing.expect(mem.eql(u8, buf0.toSlice(), "S{ ... }"));
17051705
1706 var buf1 = try std.Buffer.init(std.testing.allocator, "");
1706 var buf1 = std.ArrayList(u8).init(std.testing.allocator);
17071707 defer buf1.deinit();
1708 try formatType(inst, "", FormatOptions{}, &buf1, @TypeOf(std.Buffer.append).ReturnType.ErrorSet, std.Buffer.append, 1);
1708 try formatType(inst, "", FormatOptions{}, &buf1, @TypeOf(std.ArrayList(u8).appendSlice).ReturnType.ErrorSet, std.ArrayList(u8).appendSlice, 1);
17091709 std.testing.expect(mem.eql(u8, buf1.toSlice(), "S{ .a = S{ ... }, .tu = TU{ ... }, .e = E.Two, .vec = (10.200,2.220) }"));
17101710
1711 var buf2 = try std.Buffer.init(std.testing.allocator, "");
1711 var buf2 = std.ArrayList(u8).init(std.testing.allocator);
17121712 defer buf2.deinit();
1713 try formatType(inst, "", FormatOptions{}, &buf2, @TypeOf(std.Buffer.append).ReturnType.ErrorSet, std.Buffer.append, 2);
1713 try formatType(inst, "", FormatOptions{}, &buf2, @TypeOf(std.ArrayList(u8).appendSlice).ReturnType.ErrorSet, std.ArrayList(u8).appendSlice, 2);
17141714 std.testing.expect(mem.eql(u8, buf2.toSlice(), "S{ .a = S{ .a = S{ ... }, .tu = TU{ ... }, .e = E.Two, .vec = (10.200,2.220) }, .tu = TU{ .ptr = TU{ ... } }, .e = E.Two, .vec = (10.200,2.220) }"));
17151715
1716 var buf3 = try std.Buffer.init(std.testing.allocator, "");
1716 var buf3 = std.ArrayList(u8).init(std.testing.allocator);
17171717 defer buf3.deinit();
1718 try formatType(inst, "", FormatOptions{}, &buf3, @TypeOf(std.Buffer.append).ReturnType.ErrorSet, std.Buffer.append, 3);
1718 try formatType(inst, "", FormatOptions{}, &buf3, @TypeOf(std.ArrayList(u8).appendSlice).ReturnType.ErrorSet, std.ArrayList(u8).appendSlice, 3);
17191719 std.testing.expect(mem.eql(u8, buf3.toSlice(), "S{ .a = S{ .a = S{ .a = S{ ... }, .tu = TU{ ... }, .e = E.Two, .vec = (10.200,2.220) }, .tu = TU{ .ptr = TU{ ... } }, .e = E.Two, .vec = (10.200,2.220) }, .tu = TU{ .ptr = TU{ .ptr = TU{ ... } } }, .e = E.Two, .vec = (10.200,2.220) }"));
17201720}
17211721
lib/std/io/in_stream.zig+56-33
......@@ -41,10 +41,13 @@ pub fn InStream(comptime ReadError: type) type {
4141 }
4242 }
4343
44 /// Deprecated: use `readAll`.
45 pub const readFull = readAll;
46
4447 /// Returns the number of bytes read. If the number read is smaller than buf.len, it
4548 /// means the stream reached the end. Reaching the end of a stream is not an error
4649 /// condition.
47 pub fn readFull(self: *Self, buffer: []u8) Error!usize {
50 pub fn readAll(self: *Self, buffer: []u8) Error!usize {
4851 var index: usize = 0;
4952 while (index != buffer.len) {
5053 const amt = try self.read(buffer[index..]);
......@@ -57,30 +60,43 @@ pub fn InStream(comptime ReadError: type) type {
5760 /// Returns the number of bytes read. If the number read would be smaller than buf.len,
5861 /// error.EndOfStream is returned instead.
5962 pub fn readNoEof(self: *Self, buf: []u8) !void {
60 const amt_read = try self.readFull(buf);
63 const amt_read = try self.readAll(buf);
6164 if (amt_read < buf.len) return error.EndOfStream;
6265 }
6366
64 /// Replaces `buffer` contents by reading from the stream until it is finished.
65 /// If `buffer.len()` would exceed `max_size`, `error.StreamTooLong` is returned and
66 /// the contents read from the stream are lost.
67 /// Deprecated: use `readAllArrayList`.
6768 pub fn readAllBuffer(self: *Self, buffer: *Buffer, max_size: usize) !void {
68 try buffer.resize(0);
69 buffer.list.shrink(0);
70 try self.readAllArrayList(&buffer.list, max_size);
71 errdefer buffer.shrink(0);
72 try buffer.list.append(0);
73 }
6974
70 var actual_buf_len: usize = 0;
75 /// Appends to the `std.ArrayList` contents by reading from the stream until end of stream is found.
76 /// If the number of bytes appended would exceed `max_append_size`, `error.StreamTooLong` is returned
77 /// and the `std.ArrayList` has exactly `max_append_size` bytes appended.
78 pub fn readAllArrayList(self: *Self, array_list: *std.ArrayList(u8), max_append_size: usize) !void {
79 try array_list.ensureCapacity(math.min(max_append_size, 4096));
80 const original_len = array_list.len;
81 var start_index: usize = original_len;
7182 while (true) {
72 const dest_slice = buffer.toSlice()[actual_buf_len..];
73 const bytes_read = try self.readFull(dest_slice);
74 actual_buf_len += bytes_read;
83 array_list.expandToCapacity();
84 const dest_slice = array_list.span()[start_index..];
85 const bytes_read = try self.readAll(dest_slice);
86 start_index += bytes_read;
87
88 if (start_index - original_len > max_append_size) {
89 array_list.shrink(original_len + max_append_size);
90 return error.StreamTooLong;
91 }
7592
7693 if (bytes_read != dest_slice.len) {
77 buffer.shrink(actual_buf_len);
94 array_list.shrink(start_index);
7895 return;
7996 }
8097
81 const new_buf_size = math.min(max_size, actual_buf_len + mem.page_size);
82 if (new_buf_size == actual_buf_len) return error.StreamTooLong;
83 try buffer.resize(new_buf_size);
98 // This will trigger ArrayList to expand superlinearly at whatever its growth rate is.
99 try array_list.ensureCapacity(start_index + 1);
84100 }
85101 }
86102
......@@ -89,20 +105,23 @@ pub fn InStream(comptime ReadError: type) type {
89105 /// Caller owns returned memory.
90106 /// If this function returns an error, the contents from the stream read so far are lost.
91107 pub fn readAllAlloc(self: *Self, allocator: *mem.Allocator, max_size: usize) ![]u8 {
92 var buf = Buffer.initNull(allocator);
93 defer buf.deinit();
94
95 try self.readAllBuffer(&buf, max_size);
96 return buf.toOwnedSlice();
108 var array_list = std.ArrayList(u8).init(allocator);
109 defer array_list.deinit();
110 try self.readAllArrayList(&array_list, max_size);
111 return array_list.toOwnedSlice();
97112 }
98113
99 /// Replaces `buffer` contents by reading from the stream until `delimiter` is found.
114 /// Replaces the `std.ArrayList` contents by reading from the stream until `delimiter` is found.
100115 /// Does not include the delimiter in the result.
101 /// If `buffer.len()` would exceed `max_size`, `error.StreamTooLong` is returned and the contents
102 /// read from the stream so far are lost.
103 pub fn readUntilDelimiterBuffer(self: *Self, buffer: *Buffer, delimiter: u8, max_size: usize) !void {
104 try buffer.resize(0);
105
116 /// If the `std.ArrayList` length would exceed `max_size`, `error.StreamTooLong` is returned and the
117 /// `std.ArrayList` is populated with `max_size` bytes from the stream.
118 pub fn readUntilDelimiterArrayList(
119 self: *Self,
120 array_list: *std.ArrayList(u8),
121 delimiter: u8,
122 max_size: usize,
123 ) !void {
124 array_list.shrink(0);
106125 while (true) {
107126 var byte: u8 = try self.readByte();
108127
......@@ -110,11 +129,11 @@ pub fn InStream(comptime ReadError: type) type {
110129 return;
111130 }
112131
113 if (buffer.len() == max_size) {
132 if (array_list.len == max_size) {
114133 return error.StreamTooLong;
115134 }
116135
117 try buffer.appendByte(byte);
136 try array_list.append(byte);
118137 }
119138 }
120139
......@@ -122,12 +141,16 @@ pub fn InStream(comptime ReadError: type) type {
122141 /// memory would be greater than `max_size`, returns `error.StreamTooLong`.
123142 /// Caller owns returned memory.
124143 /// If this function returns an error, the contents from the stream read so far are lost.
125 pub fn readUntilDelimiterAlloc(self: *Self, allocator: *mem.Allocator, delimiter: u8, max_size: usize) ![]u8 {
126 var buf = Buffer.initNull(allocator);
127 defer buf.deinit();
128
129 try self.readUntilDelimiterBuffer(&buf, delimiter, max_size);
130 return buf.toOwnedSlice();
144 pub fn readUntilDelimiterAlloc(
145 self: *Self,
146 allocator: *mem.Allocator,
147 delimiter: u8,
148 max_size: usize,
149 ) ![]u8 {
150 var array_list = std.ArrayList(u8).init(allocator);
151 defer array_list.deinit();
152 try self.readUntilDelimiterArrayList(&array_list, delimiter, max_size);
153 return array_list.toOwnedSlice();
131154 }
132155
133156 /// Reads from the stream until specified byte is found. If the buffer is not
lib/std/process.zig+9-10
......@@ -3,7 +3,6 @@ const builtin = std.builtin;
33const os = std.os;
44const fs = std.fs;
55const BufMap = std.BufMap;
6const Buffer = std.Buffer;
76const mem = std.mem;
87const math = std.math;
98const Allocator = mem.Allocator;
......@@ -266,7 +265,7 @@ pub const ArgIteratorWindows = struct {
266265 }
267266
268267 fn internalNext(self: *ArgIteratorWindows, allocator: *Allocator) NextError![]u8 {
269 var buf = try Buffer.initSize(allocator, 0);
268 var buf = std.ArrayList(u8).init(allocator);
270269 defer buf.deinit();
271270
272271 var backslash_count: usize = 0;
......@@ -282,10 +281,10 @@ pub const ArgIteratorWindows = struct {
282281 if (quote_is_real) {
283282 self.seen_quote_count += 1;
284283 if (self.seen_quote_count == self.quote_count and self.seen_quote_count % 2 == 1) {
285 try buf.appendByte('"');
284 try buf.append('"');
286285 }
287286 } else {
288 try buf.appendByte('"');
287 try buf.append('"');
289288 }
290289 },
291290 '\\' => {
......@@ -295,7 +294,7 @@ pub const ArgIteratorWindows = struct {
295294 try self.emitBackslashes(&buf, backslash_count);
296295 backslash_count = 0;
297296 if (self.seen_quote_count % 2 == 1 and self.seen_quote_count != self.quote_count) {
298 try buf.appendByte(byte);
297 try buf.append(byte);
299298 } else {
300299 return buf.toOwnedSlice();
301300 }
......@@ -303,16 +302,16 @@ pub const ArgIteratorWindows = struct {
303302 else => {
304303 try self.emitBackslashes(&buf, backslash_count);
305304 backslash_count = 0;
306 try buf.appendByte(byte);
305 try buf.append(byte);
307306 },
308307 }
309308 }
310309 }
311310
312 fn emitBackslashes(self: *ArgIteratorWindows, buf: *Buffer, emit_count: usize) !void {
311 fn emitBackslashes(self: *ArgIteratorWindows, buf: *std.ArrayList(u8), emit_count: usize) !void {
313312 var i: usize = 0;
314313 while (i < emit_count) : (i += 1) {
315 try buf.appendByte('\\');
314 try buf.append('\\');
316315 }
317316 }
318317
......@@ -410,7 +409,7 @@ pub fn argsAlloc(allocator: *mem.Allocator) ![][]u8 {
410409
411410 // TODO refactor to only make 1 allocation.
412411 var it = args();
413 var contents = try Buffer.initSize(allocator, 0);
412 var contents = std.ArrayList(u8).init(allocator);
414413 defer contents.deinit();
415414
416415 var slice_list = std.ArrayList(usize).init(allocator);
......@@ -419,7 +418,7 @@ pub fn argsAlloc(allocator: *mem.Allocator) ![][]u8 {
419418 while (it.next(allocator)) |arg_or_err| {
420419 const arg = try arg_or_err;
421420 defer allocator.free(arg);
422 try contents.append(arg);
421 try contents.appendSlice(arg);
423422 try slice_list.append(arg.len);
424423 }
425424
src-self-hosted/main.zig-1
......@@ -9,7 +9,6 @@ const mem = std.mem;
99const process = std.process;
1010const Allocator = mem.Allocator;
1111const ArrayList = std.ArrayList;
12const Buffer = std.Buffer;
1312
1413const c = @import("c.zig");
1514const introspect = @import("introspect.zig");
test/tests.zig+6-10
......@@ -566,14 +566,13 @@ pub const StackTracesContext = struct {
566566 }
567567 child.spawn() catch |err| debug.panic("Unable to spawn {}: {}\n", .{ full_exe_path, @errorName(err) });
568568
569 var stdout = Buffer.initNull(b.allocator);
570 var stderr = Buffer.initNull(b.allocator);
571
572569 var stdout_file_in_stream = child.stdout.?.inStream();
573570 var stderr_file_in_stream = child.stderr.?.inStream();
574571
575 stdout_file_in_stream.stream.readAllBuffer(&stdout, max_stdout_size) catch unreachable;
576 stderr_file_in_stream.stream.readAllBuffer(&stderr, max_stdout_size) catch unreachable;
572 const stdout = stdout_file_in_stream.stream.readAllAlloc(b.allocator, max_stdout_size) catch unreachable;
573 defer b.allocator.free(stdout);
574 const stderr = stderr_file_in_stream.stream.readAllAlloc(b.allocator, max_stdout_size) catch unreachable;
575 defer b.allocator.free(stderr);
577576
578577 const term = child.wait() catch |err| {
579578 debug.panic("Unable to spawn {}: {}\n", .{ full_exe_path, @errorName(err) });
......@@ -616,11 +615,8 @@ pub const StackTracesContext = struct {
616615 const got: []const u8 = got_result: {
617616 var buf = try Buffer.initSize(b.allocator, 0);
618617 defer buf.deinit();
619 const bytes = if (stderr.endsWith("\n"))
620 stderr.toSliceConst()[0 .. stderr.len() - 1]
621 else
622 stderr.toSliceConst()[0..stderr.len()];
623 var it = mem.separate(bytes, "\n");
618 if (stderr.len != 0 and stderr[stderr.len - 1] == '\n') stderr = stderr[0 .. stderr.len - 1];
619 var it = mem.separate(stderr, "\n");
624620 process_lines: while (it.next()) |line| {
625621 if (line.len == 0) continue;
626622 const delims = [_][]const u8{ ":", ":", ":", " in " };