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
|
const builtin = @import("builtin");
const std = @import("std");
const xdg = @import("xdg");
const Allocator = std.mem.Allocator;
const ArenaAllocator = std.heap.ArenaAllocator;
const ArrayList = std.ArrayList;
const Config = @This();
const CrossTarget = std.zig.CrossTarget;
const File = std.fs.File;
const NativeTargetInfo = std.zig.system.NativeTargetInfo;
const Target = std.Target;
allocator: Allocator,
/// Earlier in the list means more preferred.
supported_targets: ArrayList(Target),
pub fn init(allocator: Allocator) !Config {
var self = Config{
.allocator = allocator,
.supported_targets = ArrayList(Target).init(allocator),
};
errdefer self.deinit();
// Native target is always supported and at highest priority
try self.supported_targets.append(builtin.target);
const config_dirs = try xdg.getAllConfigDirs(allocator, "zup");
defer {
for (config_dirs) |s| allocator.free(s);
allocator.free(config_dirs);
}
for (config_dirs) |config_dir| {
const file_name = try std.fs.path.join(allocator, &.{ config_dir, "zup.json" });
defer allocator.free(file_name);
var file = std.fs.openFileAbsolute(file_name, .{}) catch |err| {
if (err == error.FileNotFound) {
continue;
} else {
return err;
}
};
defer file.close();
try self.readConfig(file);
}
return self;
}
pub fn deinit(self: *Config) void {
self.supported_targets.deinit();
self.* = undefined;
}
fn readConfig(self: *Config, file: File) !void {
var arena = ArenaAllocator.init(self.allocator);
defer arena.deinit();
const allocator = arena.allocator();
const ConfigJson = struct {
supported_targets: [][]u8,
};
var reader = std.json.reader(allocator, file.reader());
defer reader.deinit();
const parsed = try std.json.parseFromTokenSourceLeaky(
ConfigJson,
allocator,
&reader,
.{
.duplicate_field_behavior = .use_last,
.ignore_unknown_fields = true,
},
);
try self.supported_targets.ensureUnusedCapacity(parsed.supported_targets.len);
for (parsed.supported_targets) |target| {
const ct = CrossTarget.parse(.{
.arch_os_abi = target,
}) catch |e| {
std.log.warn(
"Failed to parse '{s}' as a target string: {}",
.{ target, e },
);
continue;
};
const nti = NativeTargetInfo.detect(ct) catch |e| {
std.log.warn(
"Failed to detect NativeTargetInfo from '{s}': {}",
.{ target, e },
);
continue;
};
self.supported_targets.appendAssumeCapacity(nti.target);
}
}
|