-
Notifications
You must be signed in to change notification settings - Fork 0
/
packages.cr
executable file
·444 lines (370 loc) · 12.7 KB
/
packages.cr
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
#!/usr/bin/env crystal
require "json"
require "option_parser"
require "file_utils"
require "log"
class CAPkgs
property config : Config::Valid
def initialize(@config)
end
def run
update_releases
valid = update_packages
commit(valid)
end
def update_packages
({} of String => CAPkgs::Package).tap do |valid|
each_package do |pkg|
pkg.mkdirs
pkg.nix_eval &&
pkg.nix_build &&
pkg.nix_copy_original &&
pkg.nix_store_make_content_addressed &&
pkg.nix_copy_closure
valid[pkg.flake_url] = pkg if pkg.closure
end
end
end
def each_package(&block : Package -> Nil)
packages =
config.systems.map do |system|
Projects.from_json(File.read("projects.json")).map do |org_name, repos|
repos.map do |repo_name, repo|
%w[releases refs].map do |kind|
src = "cache/#{kind}/#{org_name}/#{repo_name}.json"
next unless File.file?(src)
Releases.from_json(File.read(src)).map do |version, commit|
repo.packages.map do |package|
Package.new(config, system, package, version, commit, org_name, repo_name)
end
end
end
end
end
end
packages.flatten.compact.sort.each(&block)
end
def sh(command : String, *args : String)
self.class.sh(config, command, *args)
end
def self.sh(config : Config::Valid, command : String, *args : String)
output = IO::Memory.new
error = IO::Memory.new
multi_output = IO::MultiWriter.new(output)
multi_error = IO::MultiWriter.new(error)
Log.debug {
multi_output = IO::MultiWriter.new(output, STDOUT)
multi_error = IO::MultiWriter.new(error, STDERR)
"sh logging enabled"
}
Log.info { Process.quote_posix([command, *args]) }
status = Process.run(command, args, output: multi_output, error: multi_error)
Result.new([command, *args], output.to_s, error.to_s, status.exit_code).tap do |result|
unless result.success?
Log.warn { "exit status: #{result.status.inspect}" }
end
end
end
def update_releases
return unless config.update
Projects.from_json(File.read("projects.json")).each do |org_name, repos|
repos.each do |repo_name, repo|
if refs = repo.refs
dest = "cache/refs/#{org_name}/#{repo_name}.json"
FileUtils.mkdir_p(File.dirname(dest))
fetch_git_refs(org_name, repo_name, refs, dest)
end
if repo.github_releases
dest = "cache/releases/#{org_name}/#{repo_name}.json"
FileUtils.mkdir_p(File.dirname(dest))
fetch_github_releases(org_name, repo_name, dest)
end
end
end
end
def fetch_git_refs(org_name, repo_name, ref_patterns, dest)
url = "https://github.com/#{org_name}/#{repo_name}"
result = sh("git", "ls-remote", "--exit-code", url)
raise "Couldn't fetch git refs for '#{url}'" unless result.success?
# Ref patterns will not be automatically dereferenced.
# To dereference, a ref pattern should have a suffix of: `\\^\\{\\}$`
# The resulting package name from a dereferenced pattern will *NOT* include the `^{}` suffix.
# The shortRev in the package name can be used to infer dereferencing.
refs_tags = ref_patterns.flat_map do |ref_pattern|
regex = Regex.new(ref_pattern)
result.stdout.lines
.map { |line| line.strip.split }
.select { |(rev, ref)| ref =~ regex }
.map do |(rev, ref)|
[ref.sub(%r(^refs/[^/]+/), "").sub(%r(\^\{\}$), ""), rev]
end
end
Log.info { "refs count: #{refs_tags.size}" }
Log.info { "refs: #{refs_tags.to_h.keys.inspect}" }
Log.debug { "writing #{dest}" }
File.write(dest, refs_tags.to_h.to_pretty_json)
end
def fetch_github_releases(org_name, repo_name, dest)
releases_url = "https://api.github.com/repos/#{org_name}/#{repo_name}/releases"
# Use curl here to take advantage of netrc for the token without having to parse it
curl_result = sh("curl", "--netrc", "-L", "-s", "--fail-with-body", releases_url)
raise "Couldn't fetch releases for '#{releases_url}'" unless curl_result.success?
tag_names = Array(GithubRelease).from_json(curl_result.stdout).map { |release| release.tag_name }
refs_tags = tag_names.map do |tag_name|
# Once we record a tag, prevent it from updating
if File.file?(dest) && (found = JSON.parse(File.read(dest))[tag_name]?)
next [tag_name, found.as_s]
end
tags_url = "https://github.com/#{org_name}/#{repo_name}"
# If a tag associated dereferenced object exists, use it preferentially.
# Only annotated tags will have a dereferenced object available.
tags_result = sh("git", "ls-remote", "--exit-code", "--tags", tags_url, tag_name + "^{}")
unless tags_result.success?
tags_result = sh("git", "ls-remote", "--exit-code", "--tags", tags_url, tag_name)
raise "Failed to fetch #{tag_name} from #{tags_url}" unless tags_result.success?
end
pattern = /refs\/tags\/#{Regex.escape(tag_name)}/
matching = tags_result.stdout.lines.select { |line| line =~ pattern }
rev, ref = matching.first.strip.split
[tag_name, rev]
end
Log.info { "releases count: #{refs_tags.size}" }
Log.info { "releases: #{refs_tags.to_h.inspect}" }
Log.debug { "writing #{dest}" }
File.write(dest, refs_tags.to_h.to_pretty_json)
end
def commit(new_pkgs : Hash(String, Package))
return unless config.commit
File.open("packages.tmp.json", "w+") { |fd| new_pkgs.to_pretty_json(fd) }
if File.file?("packages.json")
old = File.open("packages.json", "r") { |fd| Hash(String, JSON::Any).from_json(fd) }
added = new_pkgs.keys - old.keys
removed = old.keys - new_pkgs.keys
if added.empty? && removed.empty?
Log.info { "No packages added or removed, will not commit" }
return
end
msg = String.build do |io|
io << "Update #{Time.utc.to_rfc3339}\n\n"
if added.any?
io << "added:\n"
added.each do |name|
Log.debug { "Added: #{name}" }
io << "* #{name}\n"
end
end
if removed.any?
io << "removed:\n"
removed.each do |name|
Log.debug { "Removed: #{name}" }
io << "* #{name}\n"
end
end
end
Log.info { msg }
FileUtils.mv("packages.tmp.json", "packages.json")
raise "Couldn't add packages.json" unless sh("git", "add", "packages.json").success?
raise "Couldn't commit result" unless sh("git", "commit", "-m", msg).success?
raise "Couldn't push changes" unless sh("git", "push").success?
end
end
class Config
property from_store : String?
property to : String?
property systems : Array(String)?
property update = true
property commit = true
def parse
OptionParser.parse do |parser|
parser.banner = "Usage: capkgs [options]"
parser.on "--from-store=URL", "Public cache URL that users fetch closures from" { |v| @from_store = v }
parser.on "--to=URL", "Nix store URL to copy CA outputs to" { |v| @to = v }
parser.on "--systems=A,B", "systems to process" { |v| @systems = v.split.map(&.strip) }
parser.on "--no-update", "skip updating release info" { |v| @update = false }
parser.on "--no-commit", "skip commiting packages.json" { |v| @commit = false }
parser.on "-h", "--help", "Show this help" do
puts parser
exit
end
end
raise "Missing required flag: --from-store" unless from_store_value = @from_store
raise "Missing required flag: --to" unless to_value = @to
raise "Missing required flag: --systems" unless systems_value = @systems
Valid.new(from_store_value, to_value, systems_value, @update, @commit)
end
struct Valid
property from_store : String
property to : String
property systems : Array(String)
property update : Bool
property commit : Bool
def initialize(@from_store, @to, @systems, @update, @commit)
end
end
end
struct Result
include JSON::Serializable
property command : Array(String)
property stdout : String
property stderr : String
property status : Int32
def initialize(@command, @stdout, @stderr, @status)
end
def success?
status == 0
end
end
struct GithubRelease
include JSON::Serializable
property tag_name : String
end
struct Repo
include JSON::Serializable
property packages : Array(String)
property refs : Array(String)?
property github_releases : Bool = false
end
alias Repos = Hash(String, Repo)
alias Projects = Hash(String, Repos)
alias Releases = Hash(String, String)
struct Package
include JSON::Serializable
@[JSON::Field(ignore: true)]
property config : CAPkgs::Config::Valid
property name : String
property version : String
property commit : String
property org_name : String
property repo_name : String
property meta : Hash(String, JSON::Any)?
property output : String?
property closure : NamedTuple(fromPath: String, toPath: String, fromStore: String)?
property pname : String?
property system : String
property exeName : String?
def initialize(@config, @system, @name, @version, @commit, @org_name, @repo_name)
end
def sh(command, *args)
CAPkgs.sh(config, command, *args)
end
def <=>(other : Package)
flake_url <=> other.flake_url
end
def flake_url
name.gsub("${tag}", commit).gsub("${system}", @system)
end
def cache_path(file)
File.join "cache", flake_url, "#{file}.json"
end
def eval_file_path
cache_path "eval"
end
def build_file_path
cache_path "build"
end
def closure_file_path
cache_path "closure"
end
def copy_original_file_path
cache_path "original_copy"
end
def copy_closure_file_path
cache_path "closure_copy"
end
CODE = <<-CODE.gsub(/\s+/, ' ').strip
d: {
pname = d.pname or d.name or null;
version = d.version or null;
meta = d.meta or null;
exeName = d.exeName or null;
}
CODE
def nix_eval
process(eval_file_path, true,
"nix", "eval", flake_url,
"--accept-flake-config",
"--no-write-lock-file",
"--json",
"--apply", CODE,
) do |stdout|
@meta = stdout["meta"].as_h
@pname = stdout["pname"].as_s
@exeName = stdout["exeName"].as_s?
true
end
end
def nix_build
process(build_file_path, true,
"nix", "build", flake_url,
"--accept-flake-config",
"--no-write-lock-file",
"--no-link",
"--json",
) do |stdout|
stdout.dig?(0, "outputs", "out").try { |o| @output = o.as_s }
end
end
def nix_copy_original
process(copy_original_file_path, false,
"nix", "copy", flake_url,
"--to", config.to,
"--accept-flake-config",
"--no-write-lock-file",
) do |stdout|
true
end
end
def nix_store_make_content_addressed
path = output.not_nil!
process(closure_file_path, true,
"nix", "store", "make-content-addressed", flake_url, "--json",
"--to", config.to,
"--accept-flake-config",
"--no-write-lock-file",
) do |stdout|
stdout.dig?("rewrites", path).try { |to_path|
@closure = {fromPath: path, toPath: to_path.as_s, fromStore: config.from_store}
}
end
end
def nix_copy_closure
process(copy_closure_file_path, false,
"nix", "copy", closure.not_nil![:toPath],
"--to", config.to,
"--accept-flake-config",
"--no-write-lock-file",
) do |stdout|
true
end
end
def mkdirs
[eval_file_path, build_file_path, copy_original_file_path, copy_closure_file_path, closure_file_path].each do |path|
FileUtils.mkdir_p(File.dirname(path))
end
end
def process(path, expect_json, command : String, *args)
result =
if File.file?(path)
Log.debug { "File exists: #{path}" }
Result.from_json(File.read(path))
else
Log.debug { "File create: #{path}" }
sh(command, *args).tap { |r|
File.write(path, r.to_pretty_json)
}
end
if result.success? && expect_json
yield(JSON.parse(result.stdout))
else
result.success?
end
end
end
end
Signal::INT.trap { exit }
Log.setup_from_env(
default_level: Log::Severity::Info,
default_sources: "*",
log_level_env: "LOG_LEVEL",
backend: Log::IOBackend.new(io: STDERR))
CAPkgs.new(CAPkgs::Config.new.parse).run