1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
|
const std = @import("std");
const builtin = @import("builtin");
const assert = std.debug.assert;
const Allocator = std.mem.Allocator;
const ArenaAllocator = std.heap.ArenaAllocator;
const cli = @import("../cli.zig");
const internal_os = @import("../os/main.zig");
const formatterpkg = @import("formatter.zig");
const log = std.log.scoped(.config);
pub const ParseError = error{ValueRequired} || Allocator.Error;
/// Path is like a string that represents a path value. The difference is that
/// when loading the configuration the value for this will be automatically
/// expanded relative to the path of the config file (or the home directory).
pub const Path = union(enum) {
/// No error if the file does not exist.
optional: [:0]const u8,
/// The file is required to exist.
required: [:0]const u8,
pub fn len(self: Path) usize {
return switch (self) {
inline else => |path| path.len,
};
}
pub fn equal(self: Path, other: Path) bool {
return std.meta.eql(self, other);
}
/// Parse the input and return a Path. A leading `?` indicates that the path
/// is _optional_ and an error should not be logged or displayed to the user
/// if that path does not exist. Otherwise the path is required and an error
/// should be logged if the path does not exist.
pub fn parse(
/// Allocator to use. This must be an arena allocator because we assume
/// that any allocations will be cleaned up when the arena.
arena_alloc: Allocator,
/// The input.
input: ?[]const u8,
) ParseError!?Path {
var value = input orelse return error.ValueRequired;
if (value.len == 0) return null;
const optional = if (value[0] == '?') opt: {
value = value[1..];
break :opt true;
} else false;
if (value.len >= 2 and value[0] == '"' and value[value.len - 1] == '"') {
value = value[1 .. value.len - 1];
}
if (optional)
return .{ .optional = try arena_alloc.dupeZ(u8, value) }
else
return .{ .required = try arena_alloc.dupeZ(u8, value) };
}
/// Parse CLI option.
pub fn parseCLI(
/// The path. The value will be overwritten.
self: *Path,
/// Allocator to use. This must be an arena allocator because we assume
/// that any allocations will be cleaned up when the arena.
arena_alloc: Allocator,
// The input.
input: ?[]const u8,
) ParseError!void {
assert(input != null);
const item = try parse(arena_alloc, input) orelse return;
if (item.len() == 0) return;
self.* = item;
}
/// Used by formatter.
pub fn formatEntry(self: *const Path, formatter: formatterpkg.EntryFormatter) !void {
var buf: [std.fs.max_path_bytes + 1]u8 = undefined;
const value = switch (self.*) {
.optional => |path| std.fmt.bufPrint(
&buf,
"?{s}",
.{path},
) catch |err| switch (err) {
// Required for builds on Linux where NoSpaceLeft
// isn't an allowed error for fmt.
error.NoSpaceLeft => return error.OutOfMemory,
},
.required => |path| path,
};
try formatter.formatEntry([]const u8, value);
}
/// Return a clone of the path.
pub fn clone(
/// The path to clone.
self: Path,
/// This must be an arena allocator because we rely on the arena to
/// clean up our allocations.
arena_alloc: Allocator,
) Allocator.Error!Path {
return switch (self) {
.optional => |path| .{
.optional = try arena_alloc.dupeZ(u8, path),
},
.required => |path| .{
.required = try arena_alloc.dupeZ(u8, path),
},
};
}
/// Expand relative paths or paths prefixed with `~/`. The path will be
/// overwritten.
pub fn expand(
/// The path to expand.
self: *Path,
/// This must be an arena allocator because we rely on the arena to
/// clean up our allocations.
arena_alloc: Allocator,
/// The base directory to expand relative paths. It must be an absolute
/// path.
base: []const u8,
/// Errors will be added to the list of diagnostics if they occur.
diags: *cli.DiagnosticList,
) !void {
assert(std.fs.path.isAbsolute(base));
const path = switch (self.*) {
.optional, .required => |path| path,
};
// If it is already absolute we can ignore it.
if (path.len == 0 or std.fs.path.isAbsolute(path)) return;
// If it isn't absolute, we need to make it absolute relative
// to the base.
var buf: [std.fs.max_path_bytes]u8 = undefined;
// Check if the path starts with a tilde and expand it to the
// home directory on Linux/macOS. We explicitly look for "~/"
// because we don't support alternate users such as "~alice/"
if (std.mem.startsWith(u8, path, "~/")) expand: {
// Windows isn't supported yet
if (comptime builtin.os.tag == .windows) break :expand;
const expanded: []const u8 = internal_os.expandHome(
path,
&buf,
) catch |err| {
try diags.append(arena_alloc, .{
.message = try std.fmt.allocPrintSentinel(
arena_alloc,
"error expanding home directory for path {s}: {}",
.{ path, err },
0,
),
});
// Blank this path so that we don't attempt to resolve it
// again
self.* = .{ .required = "" };
return;
};
log.debug(
"expanding file path from home directory: path={s}",
.{expanded},
);
switch (self.*) {
.optional, .required => |*p| p.* = try arena_alloc.dupeZ(u8, expanded),
}
return;
}
var dir = try std.fs.openDirAbsolute(base, .{});
defer dir.close();
const abs = dir.realpath(path, &buf) catch |err| abs: {
if (err == error.FileNotFound) {
// The file doesn't exist. Try to resolve the relative path
// another way.
const resolved = try std.fs.path.resolve(arena_alloc, &.{ base, path });
defer arena_alloc.free(resolved);
@memcpy(buf[0..resolved.len], resolved);
break :abs buf[0..resolved.len];
}
try diags.append(arena_alloc, .{
.message = try std.fmt.allocPrintSentinel(
arena_alloc,
"error resolving file path {s}: {}",
.{ path, err },
0,
),
});
// Blank this path so that we don't attempt to resolve it again
self.* = .{ .required = "" };
return;
};
log.debug(
"expanding file path relative={s} abs={s}",
.{ path, abs },
);
switch (self.*) {
.optional, .required => |*p| p.* = try arena_alloc.dupeZ(u8, abs),
}
}
test "parse" {
const testing = std.testing;
var arena = ArenaAllocator.init(testing.allocator);
defer arena.deinit();
const alloc = arena.allocator();
const Tag = std.meta.Tag(Path);
{
const item = (try Path.parse(alloc, "config.1")).?;
try testing.expectEqual(Tag.required, @as(Tag, item));
try testing.expectEqualStrings("config.1", item.required);
}
{
const item = (try Path.parse(alloc, "?config.2")).?;
try testing.expectEqual(Tag.optional, @as(Tag, item));
try testing.expectEqualStrings("config.2", item.optional);
}
{
const item = (try Path.parse(alloc, "\"?config.3\"")).?;
try testing.expectEqual(Tag.required, @as(Tag, item));
try testing.expectEqualStrings("?config.3", item.required);
}
{
const item = (try Path.parse(alloc, "?\"config.4\"")).?;
try testing.expectEqual(Tag.optional, @as(Tag, item));
try testing.expectEqualStrings("config.4", item.optional);
}
{
const item = (try Path.parse(alloc, "?")).?;
try testing.expectEqual(Tag.optional, @as(Tag, item));
try testing.expectEqualStrings("", item.optional);
}
{
const item = (try Path.parse(alloc, "\"\"")).?;
try testing.expectEqual(Tag.required, @as(Tag, item));
try testing.expectEqualStrings("", item.required);
}
{
const item = (try Path.parse(alloc, "?\"\"")).?;
try testing.expectEqual(Tag.optional, @as(Tag, item));
try testing.expectEqualStrings("", item.optional);
}
}
test "parseCLI" {
const testing = std.testing;
var arena = ArenaAllocator.init(testing.allocator);
defer arena.deinit();
const alloc = arena.allocator();
const Tag = std.meta.Tag(Path);
var item: Path = undefined;
try item.parseCLI(alloc, "config.1");
try testing.expectEqual(Tag.required, @as(Tag, item));
try testing.expectEqualStrings("config.1", item.required);
try item.parseCLI(alloc, "?config.2");
try testing.expectEqual(Tag.optional, @as(Tag, item));
try testing.expectEqualStrings("config.2", item.optional);
try item.parseCLI(alloc, "\"?config.3\"");
try testing.expectEqual(Tag.required, @as(Tag, item));
try testing.expectEqualStrings("?config.3", item.required);
// Zero-length values, ignored
try item.parseCLI(alloc, "?");
try testing.expectEqual(Tag.required, @as(Tag, item));
try testing.expectEqualStrings("?config.3", item.required);
try item.parseCLI(alloc, "\"\"");
try testing.expectEqual(Tag.required, @as(Tag, item));
try testing.expectEqualStrings("?config.3", item.required);
try item.parseCLI(alloc, "?\"\"");
try testing.expectEqual(Tag.required, @as(Tag, item));
try testing.expectEqualStrings("?config.3", item.required);
}
test "formatConfig single item" {
const testing = std.testing;
var buf: std.Io.Writer.Allocating = .init(testing.allocator);
defer buf.deinit();
var arena = ArenaAllocator.init(testing.allocator);
defer arena.deinit();
const alloc = arena.allocator();
var item: Path = undefined;
try item.parseCLI(alloc, "A");
try item.formatEntry(formatterpkg.entryFormatter("a", &buf.writer));
try std.testing.expectEqualSlices(u8, "a = A\n", buf.written());
}
test "formatConfig multiple items" {
const testing = std.testing;
var buf: std.Io.Writer.Allocating = .init(testing.allocator);
defer buf.deinit();
var arena = ArenaAllocator.init(testing.allocator);
defer arena.deinit();
const alloc = arena.allocator();
var item: Path = undefined;
try item.parseCLI(alloc, "A");
try item.parseCLI(alloc, "?B");
try item.formatEntry(formatterpkg.entryFormatter("a", &buf.writer));
try std.testing.expectEqualSlices(u8, "a = ?B\n", buf.written());
}
};
/// RepeatablePath is like repeatable string but represents a path value. The
/// difference is that when loading the configuration any values for this will
/// be automatically expanded relative to the path of the config file (or the home
/// directory).
pub const RepeatablePath = struct {
value: std.ArrayListUnmanaged(Path) = .{},
pub fn parseCLI(self: *RepeatablePath, alloc: Allocator, input: ?[]const u8) ParseError!void {
const item = try Path.parse(alloc, input) orelse {
self.value.clearRetainingCapacity();
return;
};
if (item.len() == 0) {
// This handles the case of zero length paths after removing any ?
// prefixes or surrounding quotes. In this case, we don't reset the
// list.
return;
}
try self.value.append(alloc, item);
}
/// Deep copy of the struct. Required by Config.
pub fn clone(self: *const RepeatablePath, alloc: Allocator) Allocator.Error!RepeatablePath {
const value = try self.value.clone(alloc);
for (value.items) |*item| {
item.* = try item.clone(alloc);
}
return .{
.value = value,
};
}
/// Compare if two of our value are equal. Required by Config.
pub fn equal(self: RepeatablePath, other: RepeatablePath) bool {
if (self.value.items.len != other.value.items.len) return false;
for (self.value.items, other.value.items) |a, b| {
if (!a.equal(b)) return false;
}
return true;
}
/// Used by Formatter
pub fn formatEntry(self: RepeatablePath, formatter: formatterpkg.EntryFormatter) !void {
if (self.value.items.len == 0) {
try formatter.formatEntry(void, {});
return;
}
var buf: [std.fs.max_path_bytes + 1]u8 = undefined;
for (self.value.items) |item| {
const value = switch (item) {
.optional => |path| std.fmt.bufPrint(
&buf,
"?{s}",
.{path},
) catch |err| switch (err) {
// Required for builds on Linux where NoSpaceLeft
// isn't an allowed error for fmt.
error.NoSpaceLeft => return error.OutOfMemory,
},
.required => |path| path,
};
try formatter.formatEntry([]const u8, value);
}
}
/// Expand all the paths relative to the base directory.
pub fn expand(
self: *RepeatablePath,
alloc: Allocator,
base: []const u8,
diags: *cli.DiagnosticList,
) !void {
for (self.value.items) |*path| {
try path.expand(alloc, base, diags);
}
}
test "parseCLI" {
const testing = std.testing;
var arena = ArenaAllocator.init(testing.allocator);
defer arena.deinit();
const alloc = arena.allocator();
var list: RepeatablePath = .{};
try list.parseCLI(alloc, "config.1");
try list.parseCLI(alloc, "?config.2");
try list.parseCLI(alloc, "\"?config.3\"");
try testing.expectEqual(@as(usize, 3), list.value.items.len);
// Zero-length values, ignored
try list.parseCLI(alloc, "?");
try list.parseCLI(alloc, "\"\"");
try testing.expectEqual(@as(usize, 3), list.value.items.len);
const Tag = std.meta.Tag(Path);
try testing.expectEqual(Tag.required, @as(Tag, list.value.items[0]));
try testing.expectEqualStrings("config.1", list.value.items[0].required);
try testing.expectEqual(Tag.optional, @as(Tag, list.value.items[1]));
try testing.expectEqualStrings("config.2", list.value.items[1].optional);
try testing.expectEqual(Tag.required, @as(Tag, list.value.items[2]));
try testing.expectEqualStrings("?config.3", list.value.items[2].required);
try list.parseCLI(alloc, "");
try testing.expectEqual(@as(usize, 0), list.value.items.len);
}
test "formatConfig empty" {
const testing = std.testing;
var buf: std.Io.Writer.Allocating = .init(testing.allocator);
defer buf.deinit();
var list: RepeatablePath = .{};
try list.formatEntry(formatterpkg.entryFormatter("a", &buf.writer));
try std.testing.expectEqualSlices(u8, "a = \n", buf.written());
}
test "formatConfig single item" {
const testing = std.testing;
var buf: std.Io.Writer.Allocating = .init(testing.allocator);
defer buf.deinit();
var arena = ArenaAllocator.init(testing.allocator);
defer arena.deinit();
const alloc = arena.allocator();
var list: RepeatablePath = .{};
try list.parseCLI(alloc, "A");
try list.formatEntry(formatterpkg.entryFormatter("a", &buf.writer));
try std.testing.expectEqualSlices(u8, "a = A\n", buf.written());
}
test "formatConfig multiple items" {
const testing = std.testing;
var buf: std.Io.Writer.Allocating = .init(testing.allocator);
defer buf.deinit();
var arena = ArenaAllocator.init(testing.allocator);
defer arena.deinit();
const alloc = arena.allocator();
var list: RepeatablePath = .{};
try list.parseCLI(alloc, "A");
try list.parseCLI(alloc, "?B");
try list.formatEntry(formatterpkg.entryFormatter("a", &buf.writer));
try std.testing.expectEqualSlices(u8, "a = A\na = ?B\n", buf.written());
}
};
|