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
(** Common code for [XGetObject], [XGetBundle], and all the other [X*] modules.
*)
(** An identifier within the source of a build file and the context for running
a shell command. *)
module IdWithContext = struct
type t = {
id : MlFront_Thunk.ThunkCommand.module_version;
id_range : Fmlib_parse.Position.range;
source : BuildCore.Io.file_object;
source_sha256 : string;
config : BuildConfig.t;
initiator : BuildTask.initiator;
}
let create ~id ~source ~source_sha256 ~config ~initiator =
{ id = snd id; id_range = fst id; source; source_sha256; config; initiator }
let debug_reference
{ source; source_sha256; id = _; id_range; config = _; initiator = _ } :
BuildCore.Alacarte_3_2_apparatus.K.reference option =
Some
{
reference_range = id_range;
reference_file_sha256 = source_sha256;
reference_transient = Some { reference_file = source };
}
let module_id { id; _ } = id.id
let module_semver { id; _ } = id.version
let config { config; _ } = config
let initiator { initiator; _ } = initiator
let source { source; _ } = source
end
let rec unzip_and_cache_value ~config ~source range value :
MlFront_Core.FilePath.t option BuildInstance.Syntax.cont =
let open BuildInstance.Syntax in
let g ~value_id ~category () =
let* object_archive_opt =
read_value_or_fail ~config ~value_id ~source range ()
in
let metadb = BuildConfig.metadb config in
match object_archive_opt with
| None -> return None
| Some object_archive -> (
let srczip = MlFront_Core.FilePath.to_string object_archive in
let dbresult :
((Fpath.t, [ `ErrorCaptured ]) result, [ `ErrorCaptured ]) result =
MlFront_Cache.MetaDb.with_ ~supercategory:"val" metadb
(fun
~data_ops:(module DataOps : MlFront_Cache.MetaOps.S)
~cache_ops:(module CacheOps : MlFront_Cache.MetaOps.S)
->
CacheOps.cache_dir ~category ~key:value_id
~cache_hit:(fun ~dir_for_upsert:_ _cdir -> Ok `Keep)
~cache_miss:(fun ~dir_for_upsert ->
try
MlFront_ZipFile.ZipFile.unzip_exn ~srczip
~destdir:(Fpath.to_string dir_for_upsert)
();
Ok `Upsert
with MlFront_ZipFile.ZipFile.ZipError (_zipfile, msg) ->
MlFront_Errors.Errors.Details.add_error (fun ppf () ->
Format.fprintf ppf
"Unsuccessful unzip of `%s` into `%a`: %s"
(MlFront_Core.FilePath.show object_archive)
Fpath.pp dir_for_upsert msg);
Error `ErrorCaptured)
())
in
match dbresult with
| Ok (Ok dir) ->
return
(Some (MlFront_Core.FilePath.of_string_exn (Fpath.to_string dir)))
| Ok (Error `ErrorCaptured) | Error `ErrorCaptured ->
let* () =
let msg =
Format.asprintf "%a" MlFront_Errors.Errors.Details.pp ()
in
fail_cant_unzip ~source ~msg ~srczip range
in
return None)
in
match (value : BuildCore.Alacarte_3_2_apparatus.V.t) with
| Object { value_id; value_sha256 = _; value = Some _ } ->
g ~value_id ~category:"object" ()
| Bundle { value_id; value_sha256 = _; value = Some _ } ->
g ~value_id ~category:"bundle" ()
| Asset { value_id; value_sha256 = _; value = Some _ } ->
g ~value_id ~category:"asset" ()
| Distribution _ | Object _ | Constant _ | ValuesFile _ | Values _ | Form _
| Bundle _ | Asset _ | Input_not_found _ | Failure_is_pending ->
let* () =
fail ~error_code:"c04e9687" ~cant_do:"get value"
~because:
(Format.asprintf "the value is not fully specified: %a"
BuildCore.Alacarte_3_2_apparatus.V.pp value)
~recommendations:[ "This is a bug. Please file an issue." ]
()
in
return None
(** [output_value].
[cid] is the canonical id of the _parent_ AST which contains the precommand
that is running. It is needed so we can copy the precommand up-to-date value
to the destination _parent_ SLOT (or whatever directory it is going). In
other words, the precommand output goes into the parent AST directories. *)
and output_value ~config ~initiator ~source ~command_output ~archive_member key
value : unit BuildCore.Alacarte_6_4_test.CSuspending.t =
let open BuildInstance.Syntax in
let g ~value_id ~typ () =
let* fp_opt =
read_value_or_fail ~config ~value_id ~source (fst command_output) ()
in
match fp_opt with
| None -> return ()
| Some fp ->
output_object ~config ~initiator ~source ~command_output
~cant_do:(Printf.sprintf "use value store %s `%s`" typ value_id)
~archive_member fp
in
match (value : BuildCore.Alacarte_3_2_apparatus.V.t) with
| Object { value_id; value_sha256 = _; value = Some _ } ->
g ~value_id ~typ:"object" ()
| Bundle { value_id; value_sha256 = _; value = Some _ } ->
g ~value_id ~typ:"bundle" ()
| Asset { value_id; value_sha256 = _; value = Some _ } ->
g ~value_id ~typ:"asset" ()
| Constant
{
value_id;
value_sha256 = _;
value = Some { constant_transient = Some { constant_value } };
} ->
output_constant ~key ~config ~initiator ~source ~command_output
~archive_member ~constantid:value_id constant_value
| Distribution _ | Object _ | Constant _ | ValuesFile _ | Values _ | Form _
| Bundle _ | Asset _ | Input_not_found _ | Failure_is_pending ->
fail ~error_code:"6d73e0d1" ~cant_do:"output value"
~because:
(Format.asprintf "the value is not fully specified: %a"
BuildCore.Alacarte_3_2_apparatus.V.pp value)
~recommendations:[ "This is a bug. Please file an issue." ]
()
and mkdir ~source ~what range fp =
let open BuildInstance.Syntax in
let fp_dir = BuildCore.Io.disk_dir fp in
let* createdir_result =
lift_promise @@ BuildCore.Io.create_directory fp_dir
in
match createdir_result with
| `Error e ->
let* error_locations = range_into_problem_location ~source range in
fail ~error_code:"14019995"
~cant_do:(Printf.sprintf "create %s" what)
~because:e ~error_locations ()
| `Created -> return ()
(** Use a value that has just been placed in the value store. The sha256 of that
value is computed on the fly, and depending on the integrity configuration
the value may be validated on the flay. *)
and read_value_or_fail ~config ~value_id ~source range () =
let open BuildInstance.Syntax in
let* fp_opt =
lift_promise
@@ BuildInstance.ValueStore.get_value_file
~valuestore:(BuildConfig.valuestore config)
~value_id ()
in
begin
let* error_locations = range_into_problem_location ~source range in
match fp_opt with
| None ->
let* () =
fail ~error_code:"98ca2699"
~cant_do:(Printf.sprintf "find cached value `%s`" value_id)
~because:
(Printf.sprintf "it is not present in the value store `%s`"
(MlFront_Core.FilePath.to_string
(BuildConfig.valuestore config)))
~error_locations
~recommendations:
[
"The value may have been evicted from the value store. Try \
rerunning with the `--integrity existence` or the \
`--integrity checksum` option.";
]
()
in
return None
| Some fp ->
return (Some fp)
end
and output_constant ~key ~config ~initiator ~source
~(command_output :
Fmlib_parse.Position.range * MlFront_Thunk.ThunkCommand.shell_output)
~archive_member ~constantid constantvalue =
let open BuildInstance.Syntax in
let output_range, shell_output = command_output in
let write_constantfile ~what fp =
let* () =
mkdir ~source ~what output_range (MlFront_Core.FilePath.parent fp)
in
let* replace_result =
lift_promise
@@ BuildCore.Io.replace_all_string
(BuildCore.Io.disk_file fp)
constantvalue 0
(String.length constantvalue)
in
match replace_result with
| `Error e ->
let* error_locations =
range_into_problem_location ~source output_range
in
fail ~error_code:"1f193cdd" ~cant_do:"write constant to file" ~because:e
~error_locations ()
| `IsDirectory _ ->
let* error_locations =
range_into_problem_location ~source output_range
in
fail ~error_code:"d644796b" ~cant_do:"write constant to file"
~because:"the file is a directory" ~error_locations ()
| `WroteBytes -> return ()
in
let stage_constantfile () =
let fp =
MlFront_Core.FilePath.append_exn constantid
(BuildTask.resolve_labeled_path ~config ~initiator `StagedConstant)
in
let* () = write_constantfile ~what:"staging directory for constants" fp in
return fp
in
match archive_member with
| Some archive_member ->
if MlFront_ZipFile.ZipFile.is_string_zip constantvalue then
let* constantfile = stage_constantfile () in
output_from_archive_member ~config ~initiator ~source ~command_output
~cant_do:
(Printf.sprintf
"copy the archive member `%s` of the zipped value `%s to the \
output directory"
archive_member
(MlFront_Core.FilePath.to_string constantfile))
~srczip:constantfile archive_member
else
fail_no_archive_member_without_zip ~source ~archive_member output_range
key
| None ->
match shell_output with
| MlFront_Thunk.ThunkCommand.OutputFile file -> begin
match BuildTask.eval_term_as_filepath ~config ~initiator file with
| Ok destination ->
let* () =
write_constantfile ~what:"directory for output file" destination
in
return ()
| Error e -> fail_bad_expression ~source ~because:e output_range
end
| MlFront_Thunk.ThunkCommand.OutputDir { dir; strip } ->
if MlFront_ZipFile.ZipFile.is_string_zip constantvalue then
let* constantfile = stage_constantfile () in
output_from_filepath ~config ~initiator ~source ~command_output
~cant_do:
(Printf.sprintf "copy the zipped value to the output directory `%s`"
(MlFront_Core.FilePath.to_string constantfile))
constantfile
else begin
let* () =
if strip <> 0 then
fail_no_strip_without_zip ~strip ~source
(fun ppf () -> Format.fprintf ppf "the constant value")
() output_range key
else return ()
in
match BuildTask.eval_term_as_filepath ~config ~initiator dir with
| Error e -> fail_bad_expression ~source ~because:e output_range
| Ok destination ->
let* () =
write_constantfile ~what:"output directory"
(MlFront_Core.FilePath.append_exn "OBJECT" destination)
in
return ()
end
and output_object ~config ~initiator ~source
~(command_output :
Fmlib_parse.Position.range * MlFront_Thunk.ThunkCommand.shell_output)
~cant_do ~archive_member sourcevalue =
match archive_member with
| Some archive_member ->
output_from_archive_member ~config ~initiator ~source ~command_output
~cant_do ~srczip:sourcevalue archive_member
| None ->
output_from_filepath ~config ~initiator ~source ~command_output ~cant_do
sourcevalue
(** Stage the object into an intermediate zipfile and then extract the
file/directory from that intermediate zipfile. *)
and output_from_archive_member ~config ~initiator ~source ~command_output
~cant_do ~srczip archive_member =
let srczip_s = MlFront_Core.FilePath.to_string srczip in
let destfile =
BuildTask.resolve_labeled_path ~config ~initiator
(`StagedArchiveMember archive_member)
in
MlFront_ZipFile.ZipFile.extract_file_exn ~srczip:srczip_s
~destfile:(MlFront_Core.FilePath.to_string destfile)
archive_member;
if Sys.file_exists (MlFront_Core.FilePath.to_string destfile) then
output_from_filepath ~config ~initiator ~source ~command_output ~cant_do
destfile
else
fail_archive_member_not_found ~source ~srczip ~cant_do ~archive_member
(fst command_output)
and output_from_filepath ~config ~initiator ~source ~command_output ~cant_do fp
=
let open BuildInstance.Syntax in
match command_output with
| output_range, MlFront_Thunk.ThunkCommand.OutputFile file -> begin
match BuildTask.eval_term_as_filepath ~config ~initiator file with
| Error e -> fail_bad_expression ~source ~because:e output_range
| Ok file ->
let* () =
mkdir ~source ~what:"directory of output file" output_range
(MlFront_Core.FilePath.parent file)
in
copy_file_or_fail ~source ~src:fp ~dest:file ~cant_do output_range
end
| output_range, MlFront_Thunk.ThunkCommand.OutputDir { dir; strip } -> begin
match BuildTask.eval_term_as_filepath ~config ~initiator dir with
| Error e -> fail_bad_expression ~source ~because:e output_range
| Ok destdir ->
let sourcevalue_s = MlFront_Core.FilePath.to_string fp in
let destdir_s = MlFront_Core.FilePath.to_string destdir in
if MlFront_ZipFile.ZipFile.is_file_zip sourcevalue_s then
let* () =
mkdir ~source ~what:"output directory" output_range destdir
in
try
MlFront_ZipFile.ZipFile.unzip_exn ~strip ~srczip:sourcevalue_s
~destdir:destdir_s ();
return ()
with MlFront_ZipFile.ZipFile.ZipError (_zipfile, msg) ->
fail_cant_unzip ~source ~msg ~srczip:sourcevalue_s
~destdir:destdir_s output_range
else fail_dest_is_dir_but_source_not_zip ~source ~cant_do output_range
end
and fail_cant_unzip ?destdir ~source ~msg ~srczip range =
let open BuildInstance.Syntax in
let* error_locations = range_into_problem_location ~source range in
fail ~error_code:"ee3b4e89"
~cant_do:
(match destdir with
| Some destdir -> Printf.sprintf "unzip `%s` into `%s`" srczip destdir
| None -> Printf.sprintf "unzip `%s`" srczip)
~because:msg ~error_locations ()
and fail_no_archive_member_without_zip ~source ~archive_member range key =
let open BuildInstance.Syntax in
let* error_locations = range_into_problem_location ~source range in
fail ~error_code:"88de79d8"
~cant_do:
(Format.asprintf "get archive member `%s` from %a" archive_member
BuildCore.Alacarte_3_2_apparatus.K.pp key)
~because:"the constant value is not a zipfile" ~error_locations ()
and fail_no_strip_without_zip ~source ~strip pp_target target range key =
let open BuildInstance.Syntax in
let* error_locations = range_into_problem_location ~source range in
fail ~error_code:"6a51c6c0"
~cant_do:
(Format.asprintf "strip `%d` levels from %a" strip
BuildCore.Alacarte_3_2_apparatus.K.pp key)
~because:(Format.asprintf "%a is not a zipfile" pp_target target)
~error_locations ()
and fail_dest_is_dir_but_source_not_zip ~source ~cant_do range =
let open BuildInstance.Syntax in
let* error_locations = range_into_problem_location ~source range in
fail ~error_code:"d105a5c5" ~cant_do
~because:"directories can't be an output if the source is not a zipfile"
~error_locations
~recommendations:
[
"Use `-d DIR` only when the source is a zipfile. Try `-f FILE` instead.";
]
()
and fail_archive_member_not_found ~source ~srczip ~cant_do ~archive_member range
=
let open BuildInstance.Syntax in
let* error_locations = range_into_problem_location ~source range in
fail ~error_code:"73b4560b" ~cant_do
~because:
(Printf.sprintf "the archive member `%s` was not found" archive_member)
~error_locations
~recommendations:
[
Printf.sprintf
"Use `unzip -l` on Unix or your favorite zip tool (ex. WinZip, 7zip) \
on Windows to list the archive members of `%s`. Make sure you use \
the exact name listed, including any `./` prefix."
(MlFront_Core.FilePath.to_string srczip);
]
()
and fail_bad_expression ~source ~because range =
let open BuildInstance.Syntax in
let* error_locations = range_into_problem_location ~source range in
fail ~error_code:"42a341f3" ~cant_do:"evaluate the expression" ~because
~error_locations ()
and range_into_problem_location ~source range :
MlFront_Thunk.BuildWriters.Standard.problem_location list
BuildCore.Alacarte_6_4_test.CSuspending.t =
let open BuildInstance.Syntax in
let* read_result = lift_promise @@ BuildCore.Io.read_all source in
match read_result with
| `Error _ | `ExceededSizeLimit _ -> return []
| `Content source_code ->
return
[
MlFront_Thunk.BuildWriters.Standard.
{
origin = Some (BuildCore.Io.file_origin source);
source = source_code;
range;
};
]
and copy_file_or_fail ~source ~src ~dest ~cant_do range =
let open BuildInstance.Syntax in
let* error_locations = range_into_problem_location ~source range in
BuildCore.Io.copy_or_fail
~src:(BuildCore.Io.disk_file src)
~dest:(BuildCore.Io.disk_file dest)
~on_error:(fun because ->
fail ~error_code:"57d1803c" ~cant_do ~because ~error_locations ())
(return ())
let output_get_object = output_value
let output_install_object = output_value
let output_pipe_object ~config ~initiator ~source ~pipe ~archive_member key
value =
let piperange, pipename = pipe in
let regularfile =
BuildTask.resolve_labeled_path ~config ~initiator
(`PipeAsRegularFile pipename)
in
let shell_output : MlFront_Thunk.ThunkCommand.shell_output =
OutputFile
[
MlFront_Thunk.ThunkCommand.Literal
(MlFront_Core.FilePath.to_string regularfile);
]
in
let command_output = (piperange, shell_output) in
output_value ~config ~source ~command_output ~archive_member ~initiator key
value
let output_get_asset = output_value
let output_get_asset_file = output_value