Source file ShellDistribute.ml
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
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
let mirror = ref None
let library_and_version = ref None
let forms = ref []
let request_slot = ref None
let anon_fun s = forms := s :: !forms
let parse_into_reference reference f s =
match
f
(module ShellCore.MakeInitObserver
: MlFront_Thunk.ThunkParsers.Results.OBSERVER_RESULT)
MlFront_Thunk.ThunkParsers.Results.State.none `DirectDecode None s
with
| Ok v -> reference := Some v
| Error s ->
raise
(Arg.Bad
(Format.asprintf "%a" MlFront_Thunk.ThunkParsers.Results.Semantic.pp
s))
let speclist ~usage_msg =
[
("--mirror", Arg.String (fun s -> mirror := Some s), "");
( "--library",
Arg.String
(parse_into_reference library_and_version
MlFront_Thunk.ThunkCommand.InternalUse.parse_library_version),
"" );
( "-s",
Arg.String
(parse_into_reference request_slot
MlFront_Thunk.ThunkCommand.InternalUse.parse_object_slot),
"" );
( "-help",
Arg.Unit
(fun () ->
print_endline usage_msg;
exit 0),
"" );
( "--help",
Arg.Unit
(fun () ->
print_endline usage_msg;
exit 0),
"" );
]
let start_phase3 ~config ~traces ~request_slot module_or : ShellCore.phase3 =
let initiator =
BuildTask.(UserInitiated { agent = "mlfront-shell command"; request_slot })
in
let state, tasks, system_keys =
BuildEngine.load_state_and_tasks ~config ~traces module_or
in
{ config; initiator; state; tasks; system_keys }
let rec process_distribute_command ~usage_msg ~data_dir ~cache_dir ~valuestore
~tracestore ~verbose ~install ~keys_env ~keys_dir ~random_seed
~wait_trace_store ~nobuiltininc ~nosysinc ~sysincludedirs ~includedirs
~local_packages ~build_number ~integrity
~inferred_package_id_or_reason_whynone ~transform_values
~dump_ancestors_graph ~dump_dependency_graph debugmodes module_or args =
let current = ref 1 in
let cmdline = "mlfront-shell" :: "distribute" :: args in
(try
Arg.parse_argv ~current (Array.of_list cmdline) (speclist ~usage_msg)
anon_fun usage_msg
with
| Arg.Bad msg ->
prerr_endline msg;
exit 1
| Arg.Help msg ->
prerr_endline msg;
exit 0);
let library_and_version =
match !library_and_version with
| Some v -> v
| None -> begin
prerr_endline "FATAL: Missing `--library LIBRARY@VERSION` option.";
prerr_endline usage_msg;
exit 1
end
in
let majmin =
match snd library_and_version with
| { major; minor; patch; prerelease; build } ->
if prerelease <> [] || build <> [] then begin
Printf.eprintf
"FATAL: The VERSION in `--library LIBRARY@VERSION` must not have \
prerelease or build components (ex. %Ld.%Ld.202512310000 is ok).\n\
%!"
major minor;
exit 1
end;
if Int64.equal patch 0L then begin
Printf.eprintf
"FATAL: The VERSION in `--library LIBRARY@VERSION` must have a \
non-zero patch component (ex. %Ld.%Ld.202512310000 is ok).\n\
%!"
major minor;
exit 1
end;
(major, minor)
in
if !forms = [] then begin
prerr_endline "FATAL: Missing one or more form parameters.";
prerr_endline usage_msg;
exit 1
end;
let to_module_version (s : string) : MlFront_Thunk.ThunkCommand.module_version
=
match
MlFront_Thunk.ThunkCommand.InternalUse.parse_module_version
~package_id_opt:None
(module ShellCore.MakeInitObserver)
MlFront_Thunk.ThunkParsers.Results.State.none `DirectDecode None s
with
| Ok mv -> mv
| Error msg ->
Format.eprintf "FATAL: %a\n%!"
MlFront_Thunk.ThunkParsers.Results.Semantic.pp msg;
exit 1
in
let forms = List.map to_module_version !forms in
let request_slot =
match !request_slot with
| Some rs -> rs
| None ->
prerr_endline "FATAL: Missing `-s SLOT` option with the request slot.";
prerr_endline usage_msg;
exit 1
in
let local_packages =
let library_id, _version = library_and_version in
match SecPackageRegistry.package_id_for_library library_id with
| None -> local_packages
| Some pkg -> pkg :: local_packages
in
let source_file, (_source_sha256, _vsl_source_sz) =
let contents =
List.map MlFront_Thunk.ThunkCommand.InternalUse.posix_quote_word cmdline
|> String.concat " "
in
let file =
BuildCore.Io.inmemory_file
~origin:(MlFront_Core.FilePath.of_string_exn "/dev/argv")
contents
in
match
BuildInstance.Launcher.run_isolated_promise
(BuildCore.Io.checksum_file ~algo:`Sha256 file)
with
| `Error msg -> ShellCore.quick_error msg
| `Checksum sha256 -> (file, sha256)
in
let dist_core, dist_file =
let pkg_opt, registry = SecDist.scan_dist_dir module_or in
match pkg_opt with
| None ->
prerr_endline
"FATAL: There are no distribution files. Use `prepare-version` first.";
exit 1
| Some pkg -> begin
match SecPackageRegistry.characterize ~majmin pkg registry with
| `Exists (dist_core, dist_file) -> (dist_core, dist_file)
| `Continued _ ->
Printf.eprintf
"FATAL: You are distributing a version %Ld.%Ld that is a \
continuation of older, released versions. However, you must use \
`prepare-version` first.\n\
%!"
(fst majmin) (snd majmin);
exit 1
| `Error msg ->
Printf.eprintf "FATAL: %s\n%!" msg;
exit 1
| `NoMatchingContinuation ->
Printf.eprintf
"FATAL: There are existing distribution files, but no releases \
match %Ld.%Ld. Change the `distribute --library \
LIBRARY@VERSION` to have a VERSION=MAJOR.MINOR.* that is \
released.\n\
%!"
(fst majmin) (snd majmin);
exit 1
| `Superseded latest ->
let ({ major; minor; _ } : MlFront_Thunk.ThunkSemver64Rep.t) =
latest
in
Printf.eprintf
"FATAL: The version %Ld.%Ld you are distributing is older than \
the latest released version %s. Change the `distribute \
--library LIBRARY@VERSION` to have a VERSION=%Ld.%Ld.* that \
matches the latest released version, or use `prepare-version \
...` for a new version.\n\
%!"
(fst majmin) (snd majmin)
(MlFront_Thunk.ThunkSemver64.to_string latest)
major minor;
exit 1
end
in
let latest_cant_do = ref "run mlfront-shell" in
try
let ({ preconfig } : ShellCore.phase1) =
ShellVSL.start_phase1 ~data_dir ~cache_dir ~valuestore ~tracestore
~install ~keys_env ~keys_dir ~random_seed ~integrity debugmodes
in
let tracefd = ShellVSL.create_tracefd ~wait_trace_store preconfig in
let traces =
BuildTraceStore.read_traces_gracefully ~preconfig ~transform_values
tracefd
in
let config =
ShellVSL.start_phase2 ~preconfig ~autofix:false ~verbose ~nobuiltininc
~nosysinc ~sysincludedirs ~includedirs ~local_packages ~build_number
~inferred_package_id_or_reason_whynone debugmodes module_or
in
let shell =
start_phase3 ~config ~traces ~request_slot:(Some request_slot) module_or
in
let shell =
let state2 = ShellVSL.start_phase4 ~shell ~preconfig module_or in
{ shell with state = state2 }
in
let target_keys, state_after_run =
ShellCore.run_modules ~request_slot ~forms shell module_or
in
ShellCore.dump_graph ~dump_ancestors_graph ~dump_dependency_graph
state_after_run target_keys;
ShellVSL.finish_phase1 ~config:shell.config state_after_run tracefd;
let destdir = MlFront_Core.FilePath.of_string_exn "dk-dist" in
let compat_tag = BuildCore.compatibility_tag () in
let valuestore_zip = create_valuestore_zip ~config ~destdir request_slot in
let tracestore =
create_tracestore ~config:shell.config ~destdir ~compat_tag request_slot
in
define_values ~library_version:library_and_version ~dist_core ~dist_file
~target_keys ~compat_tag ~valuestore_zip ~tracestore ~destdir
~request_slot ()
with
| BuildExceptions.EngineShutdown { trace; exitcode_posix; exitcode_windows }
->
ShellVSL.process_exception ~trace ~exitcode_posix ~exitcode_windows
~cant_do:!latest_cant_do ~source_file ~autofix:false module_or
and create_valuestore_zip ~config ~destdir request_slot =
let destzip =
MlFront_Core.FilePath.append_exn
(Printf.sprintf "%s.valuestore.zip"
(MlFront_Thunk.ThunkCommand.object_slot_to_shell request_slot))
destdir
in
MlFront_Thunk_IoDisk.ThunkIoDisk.make_directory_recursively
~return:(function
| `Created -> ()
| `Error msg ->
prerr_endline ("FATAL: " ^ msg);
exit 1)
destdir;
let srcdir = BuildConfig.valuestore config in
let allowed_value_prefixes =
Assumptions.imports_from_distributions_skip_constant_values ();
BuildPaths.
[
prefix_object;
prefix_bundle;
prefix_asset;
prefix_values;
prefix_valuesjsonfile;
]
|> List.map (fun s -> "./" ^ s)
in
MlFront_ZipFile.ZipFile.zip_exn ~deterministic:()
~filter:(function
| "./.valuestore" -> false
| s ->
List.exists
(fun p -> String.starts_with ~prefix:p s)
allowed_value_prefixes)
~destzip:(MlFront_Core.FilePath.to_string destzip)
~srcdir:(MlFront_Core.FilePath.to_string srcdir)
();
destzip
and create_tracestore ~config ~destdir ~compat_tag request_slot =
let desttracestore =
MlFront_Core.FilePath.append_exn
(Printf.sprintf "%s.%s.tracestore"
(MlFront_Thunk.ThunkCommand.object_slot_to_shell request_slot)
compat_tag)
destdir
in
MlFront_Thunk_IoDisk.ThunkIoDisk.make_directory_recursively
~return:(function
| `Created -> ()
| `Error msg ->
prerr_endline ("FATAL: " ^ msg);
exit 1)
destdir;
let srcdir = BuildConfig.tracestore config in
let srcfile =
MlFront_Core.FilePath.append_exn (BuildConfig.tracefile config) srcdir
in
match
BuildCore.Alacarte_xpromise_apparatus.Promise.run_promise
@@ BuildCore.Io.copy
~src:(BuildCore.Io.disk_file srcfile)
~dest:(BuildCore.Io.disk_file desttracestore)
()
with
| `Copied -> desttracestore
| `DestinationIsDirectory d ->
Printf.eprintf "FATAL: Destination %s is a directory.\n%!"
(BuildCore.Io.directory_origin d);
exit 1
| `Error msg ->
Printf.eprintf "FATAL: %s\n%!" msg;
exit 1
| `SourceIsDirectory s ->
Printf.eprintf "FATAL: Source %s is a directory.\n%!"
(BuildCore.Io.directory_origin s);
exit 1
and define_values ~library_version ~dist_core ~dist_file:_ ~target_keys
~compat_tag ~valuestore_zip ~tracestore ~destdir ~request_slot () =
let rangeplus =
MlFront_Thunk.ThunkLexers.Ranges.Raw_range
Fmlib_parse.Position.(start, start)
in
let library_id, dist_version = library_version in
let tracestore_path = MlFront_Core.FilePath.basename tracestore in
let first_build_trace : MlFront_Thunk.ThunkDist.build_trace =
{
trace_tag = (rangeplus, compat_tag);
trace_path = (rangeplus, tracestore_path);
}
in
let partial_dist =
MlFront_Thunk.ThunkDist.promote_core dist_core library_id dist_version
first_build_trace
in
let valuestore_path = MlFront_Core.FilePath.basename valuestore_zip in
let bundle : MlFront_Thunk.ThunkBundle.t =
let _bundleid_range, bundle_module_id, bundle_semver =
partial_dist.build.build_to_sign.build_bundle_id
in
let local_origin = "local" in
let local_dir =
MlFront_Core.FilePath.(parent valuestore_zip |> to_string)
in
let return = function
| `Checksum s -> s
| `Error msg -> ShellCore.quick_error msg
in
let valuestore_sha256, valuestore_sz =
MlFront_Thunk_IoDisk.ThunkIoDisk.checksum_local_file ~algo:`Sha256 ~return
(MlFront_Core.FilePath.to_string valuestore_zip)
in
let tracestore_sha256, tracestore_sz =
MlFront_Thunk_IoDisk.ThunkIoDisk.checksum_local_file ~algo:`Sha256 ~return
(MlFront_Core.FilePath.to_string tracestore)
in
{
bundle_id =
( None,
Printf.sprintf "%s@%s"
(MlFront_Core.StandardModuleId.show_dot bundle_module_id)
(MlFront_Thunk.ThunkSemver64.to_string bundle_semver) );
listing =
{
origins =
[ { origin_name = local_origin; origin_mirrors = (local_dir, []) } ];
};
files =
[
( rangeplus,
{
file_sz = (rangeplus, valuestore_sz);
file_origin = Some local_origin;
file_checksum =
{
checksum_sha256 = Some (rangeplus, valuestore_sha256);
checksum_sha1 = None;
};
file_path = valuestore_path;
} );
( rangeplus,
{
file_sz = (rangeplus, tracestore_sz);
file_origin = Some local_origin;
file_checksum =
{
checksum_sha256 = Some (rangeplus, tracestore_sha256);
checksum_sha1 = None;
};
file_path = tracestore_path;
} );
];
}
in
MlFront_Thunk.Assumptions.distribution_bundle_must_be_an_exported_module ();
let build_modules =
partial_dist.build.build_to_sign.build_modules
@ List.filter_map
(function
| (({
key_datum =
BuildCore.Alacarte_3_2_apparatus.K.ModuleKey
{ module_kind = _; module_id; module_semver };
debug_reference = _;
} :
BuildCore.Alacarte_3_2_apparatus.K.t) :
BuildCore.Alacarte_3_2_apparatus.K.t) ->
Some
( rangeplus,
module_id,
MlFront_Thunk.ThunkSemver64.with_dropped_bn_build_metadata
module_semver )
| ({
key_datum =
( BuildCore.Alacarte_3_2_apparatus.K.ChecksumKey _
| BuildCore.Alacarte_3_2_apparatus.K.PackageKey _ );
debug_reference = _;
} :
BuildCore.Alacarte_3_2_apparatus.K.t) ->
None)
target_keys
in
let dist : MlFront_Thunk.ThunkDist.t =
{
id = partial_dist.id;
producer = partial_dist.producer;
license = partial_dist.license;
continuations = partial_dist.continuations;
build =
{
build_attestation = partial_dist.build.build_attestation;
build_to_sign =
{
build_bundle_id = partial_dist.build.build_to_sign.build_bundle_id;
build_bundle_canonical =
(rangeplus, MlFront_Thunk.ThunkBundle.canonical_id bundle);
build_producer_accepts = [];
build_modules;
build_traces = partial_dist.build.build_to_sign.build_traces;
build_values = [ { value_path = (rangeplus, valuestore_path) } ];
};
};
}
in
let cst : MlFront_Thunk.ThunkCst.t =
{
contents = None;
schema =
Some
"https://github.com/diskuv/dk/raw/refs/heads/V2_4/etc/jsonschema/mlfront-values.json";
schema_version = { smajor = 1; sminor = 0 };
forms = [];
bundles = [ (rangeplus, bundle) ];
distributions = [ (rangeplus, dist) ];
}
in
let contents =
Format.asprintf "%a@."
(MlFront_Thunk.ThunkCst.pp_full ~pretty:true ~schema:true)
cst
in
flush stderr;
print_endline contents;
let values_file_fp =
MlFront_Core.FilePath.append_exn
(Printf.sprintf "%s.values.json"
(MlFront_Thunk.ThunkCommand.object_slot_to_shell request_slot))
destdir
in
ShellCore.save_file ~contents values_file_fp