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
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
include Path0
module External = Path_external
module Local = struct
include Local
let repr = Repr.view Repr.string ~to_:to_string
module L = struct
include L
let relative ?error_loc t components =
match relative_result t components with
| Ok t -> t
| Error `Outside_the_workspace ->
User_error.raise
?loc:error_loc
[ Pp.textf
"path outside the workspace: %s from %s"
(String.concat ~sep:"/" components)
(Local_gen.to_string t)
]
;;
end
let relative ?error_loc t path =
match relative_result t path with
| Ok t -> t
| Error `Outside_the_workspace ->
User_error.raise
?loc:error_loc
[ Pp.textf "path outside the workspace: %s from %s" path (to_string t) ]
;;
let relative_fname ?error_loc t fn = relative ?error_loc t (Filename.to_string fn)
let parse_string_exn ~loc s =
match parse_string_result s with
| Ok t -> t
| Error `Outside_the_workspace ->
User_error.raise
~loc
[ Pp.textf "path outside the workspace: %s from %s" s (to_string root) ]
;;
let of_string s =
match parse_string_result s with
| Ok t -> t
| Error `Outside_the_workspace ->
User_error.raise
[ Pp.textf "path outside the workspace: %s from %s" s (to_string root) ]
;;
end
module Relative_to_source_root = struct
let mkdir_p ?perms path =
ignore (Fpath.mkdir_p ?perms (Local.to_string path) : Fpath.mkdir_p_result)
;;
end
module Source0 = struct
include Path0.Source
let repr = Repr.view Repr.string ~to_:to_string
let to_dyn s = Dyn.variant "In_source_tree" [ Path0.Local_gen.to_dyn s ]
let append_local a b = of_local (Local.append (to_local a) b)
let descendant t ~of_ = Option.map (Path0.Local_gen.descendant t ~of_) ~f:of_local
module L = struct
include L
let relative ?error_loc t components =
match relative_result t components with
| Ok t -> t
| Error `Outside_the_workspace ->
User_error.raise
?loc:error_loc
[ Pp.textf
"path outside the workspace: %s from %s"
(String.concat ~sep:"/" components)
(Path0.Local_gen.to_string t)
]
;;
end
let relative ?error_loc t path =
match relative_result t path with
| Ok t -> t
| Error `Outside_the_workspace ->
User_error.raise
?loc:error_loc
[ Pp.textf "path outside the workspace: %s from %s" path (to_string t) ]
;;
let relative_fname ?error_loc t fn = relative ?error_loc t (Filename.to_string fn)
let parse_string_exn ~loc s =
match parse_string_result s with
| Ok t -> t
| Error `Outside_the_workspace ->
User_error.raise
~loc
[ Pp.textf "path outside the workspace: %s from %s" s (to_string root) ]
;;
let of_string s =
match parse_string_result s with
| Ok t -> t
| Error `Outside_the_workspace ->
User_error.raise
[ Pp.textf "path outside the workspace: %s from %s" s (to_string root) ]
;;
end
let abs_root, set_root =
let root_dir = ref None in
let set_root new_root =
match !root_dir with
| None -> root_dir := Some new_root
| Some root_dir ->
Code_error.raise
"set_root: cannot set root_dir more than once"
[ "root_dir", External.to_dyn root_dir; "new_root_dir", External.to_dyn new_root ]
in
let abs_root =
lazy
(match !root_dir with
| None -> Code_error.raise "root_dir: cannot use root dir before it's set" []
| Some root_dir -> root_dir)
in
abs_root, set_root
;;
module Outside_build_dir = struct
type t =
| External of External.t
| In_source_dir of Source0.t
let to_absolute_filename t =
match t with
| External s -> External.to_string s
| In_source_dir l ->
External.to_string (External.relative (Lazy.force abs_root) (Source0.to_string l))
;;
let to_string = function
| In_source_dir t -> Source0.to_string t
| External t -> External.to_string t
;;
let to_dyn = function
| In_source_dir t -> Source0.to_dyn t
| External t -> External.to_dyn t
;;
let of_string s =
if Filename.is_relative s
then In_source_dir (Source0.of_string s)
else External (External.of_string s)
;;
let mkdir_p ?perms = function
| In_source_dir t -> Relative_to_source_root.mkdir_p ?perms (Source0.to_local t)
| External t ->
let (_ : Fpath.mkdir_p_result) = Fpath.mkdir_p ?perms (External.to_string t) in
()
;;
let relative t s =
match t with
| In_source_dir t -> In_source_dir (Source0.relative t s)
| External t -> External (External.relative t s)
;;
let relative_fname t fn = relative t (Filename.to_string fn)
let extend_basename t ~suffix =
match t with
| In_source_dir t -> In_source_dir (Source0.extend_basename t ~suffix)
| External t -> External (External.extend_basename t ~suffix)
;;
let append_local x y =
match x with
| In_source_dir x -> In_source_dir (Source0.append_local x y)
| External x -> External (External.relative x (Local.to_string y))
;;
let to_string_maybe_quoted t = String.maybe_quoted (to_string t)
let equal (x : t) (y : t) =
match x, y with
| External x, External y -> External.equal x y
| External _, In_source_dir _ -> false
| In_source_dir x, In_source_dir y -> Source0.equal x y
| In_source_dir _, External _ -> false
;;
let hash = Poly.hash
let parent = function
| In_source_dir t ->
(match Source0.parent t with
| None -> None
| Some s -> Some (In_source_dir s))
| External t ->
(match External.parent t with
| None -> None
| Some s -> Some (External s))
;;
module Table = Hashtbl.Make (struct
type nonrec t = t
let hash = Poly.hash
let equal = Poly.equal
let to_dyn = to_dyn
end)
end
module Build = struct
include Path0.Build
let repr = Repr.view Repr.string ~to_:to_string
module L = struct
include L
let relative ?error_loc t components =
match relative_result t components with
| Ok t -> t
| Error `Outside_the_workspace ->
User_error.raise
?loc:error_loc
[ Pp.textf
"path outside the workspace: %s from %s"
(String.concat ~sep:"/" components)
(Path0.Local_gen.to_string t)
]
;;
end
let relative ?error_loc t path =
match relative_result t path with
| Ok t -> t
| Error `Outside_the_workspace ->
User_error.raise
?loc:error_loc
[ Pp.textf "path outside the workspace: %s from %s" path (to_string t) ]
;;
let relative_fname ?error_loc t fn = relative ?error_loc t (Filename.to_string fn)
let parse_string_exn ~loc s =
match parse_string_result s with
| Ok t -> t
| Error `Outside_the_workspace ->
User_error.raise
~loc
[ Pp.textf "path outside the workspace: %s from %s" s (to_string root) ]
;;
let of_string s =
match parse_string_result s with
| Ok t -> t
| Error `Outside_the_workspace ->
User_error.raise
[ Pp.textf "path outside the workspace: %s from %s" s (to_string root) ]
;;
let append a b = of_local (Local.append (local a) (local b))
let append_source a b = of_local (Local.append (local a) (Source0.to_local b))
let append_local a b = of_local (Local.append (local a) b)
let descendant t ~of_ = Option.map (Path0.Local_gen.descendant t ~of_) ~f:of_local
let t =
Option.map (split_first_component t) ~f:(fun (ctx, rest) ->
ctx, Source0.of_local rest)
;;
let = split_first_component
let t =
Option.map (split_first_component t) ~f:(fun (before, after) ->
of_local (Local.of_string (Filename.to_string before)), Source0.of_local after)
;;
let split_sandbox_root t_original =
match split_first_component t_original with
| Some (component, t) when String.equal (Filename.to_string component) ".sandbox" ->
let t = of_local t in
(match split_first_component t with
| Some (sandbox_name, t) ->
Some (of_string (".sandbox" ^ "/" ^ Filename.to_string sandbox_name)), of_local t
| None -> None, t_original)
| Some _ | None -> None, t_original
;;
let extract_build_context_dir_maybe_sandboxed t =
let sandbox_root, t = split_sandbox_root t in
Option.map (extract_build_context_dir t) ~f:(fun (ctx_dir, src_dir) ->
let ctx_dir =
match sandbox_root with
| None -> ctx_dir
| Some root -> of_local (Local.append (local root) (local ctx_dir))
in
ctx_dir, src_dir)
;;
let t =
match extract_build_context_dir t with
| Some t -> t
| None ->
Code_error.raise "Path.Build.extract_build_context_dir_exn" [ "t", to_dyn t ]
;;
let t =
match extract_build_context t with
| Some t -> t
| None -> Code_error.raise "Path.Build.extract_build_context_exn" [ "t", to_dyn t ]
;;
let drop_build_context t = Option.map (extract_build_context t) ~f:snd
let drop_build_context_exn t =
match drop_build_context t with
| Some d -> d
| None -> Code_error.raise "Path.Build.drop_build_context_exn" [ "t", to_dyn t ]
;;
let drop_build_context_maybe_sandboxed_exn t =
match extract_build_context_dir_maybe_sandboxed t with
| Some (_, t) -> t
| None ->
Code_error.raise
"Path.Build.drop_build_context_maybe_sandboxed_exn"
[ "t", to_dyn t ]
;;
let build_dir = Fdecl.create Outside_build_dir.to_dyn
let build_dir_prefix = Fdecl.create Dyn.opaque
let set_build_dir (new_build_dir : Outside_build_dir.t) =
let new_build_dir_prefix =
(match new_build_dir with
| External _ -> ()
| In_source_dir p ->
let p = Source0.to_local p in
if Local.is_root p || not (Local.equal (Local.parent_exn p) Local.root)
then
User_error.raise
[ Pp.textf
"Invalid build directory: %s"
(Local.to_string p |> String.maybe_quoted)
; Pp.text
"The build directory must be an absolute path or a sub-directory of the \
root of the workspace."
]);
match new_build_dir with
| In_source_dir p -> Local.Prefix.make (Source0.to_local p)
| External _ -> Local.Prefix.invalid
in
Fdecl.set build_dir new_build_dir;
Fdecl.set build_dir_prefix new_build_dir_prefix
;;
let to_string p =
let p = local p in
match Fdecl.get build_dir with
| In_source_dir b -> Local.to_string (Local.append (Source0.to_local b) p)
| External b ->
if Local.is_root p
then External.to_string b
else Filename.concat (External.to_string b) (Local.to_string p)
;;
let to_string_maybe_quoted p = String.maybe_quoted (to_string p)
let to_dyn s = Dyn.variant "In_build_dir" [ Path0.Local_gen.to_dyn s ]
end
module T : sig
type t =
| External of External.t
| In_source_tree of Source0.t
| In_build_dir of Build.t
val to_dyn : t -> Dyn.t
(** [External _] < [In_source_tree _] < [In_build_dir _]
Path of the same kind are compared using the standard lexical order *)
val compare : t -> t -> Ordering.t
val hash : t -> int
val in_build_dir : Build.t -> t
val in_source_tree : Source0.t -> t
val external_ : External.t -> t
end = struct
type t =
| External of External.t
| In_source_tree of Source0.t
| In_build_dir of Build.t
let compare x y =
match x, y with
| External x, External y -> External.compare x y
| External _, _ -> Lt
| _, External _ -> Gt
| In_source_tree x, In_source_tree y -> Source0.compare x y
| In_source_tree _, In_build_dir _ -> Lt
| In_build_dir _, In_source_tree _ -> Gt
| In_build_dir x, In_build_dir y -> Build.compare x y
;;
let hash = Poly.hash
let in_build_dir s = In_build_dir s
let in_source_tree s = In_source_tree s
let external_ e = External e
let to_dyn = function
| In_build_dir s -> Build.to_dyn s
| In_source_tree s -> Source0.to_dyn s
| External s -> External.to_dyn s
;;
end
include T
let repr =
Repr.variant
"path"
[ Repr.case "External" External.repr ~proj:(function
| External t -> Some t
| In_source_tree _ | In_build_dir _ -> None)
; Repr.case "In_source_tree" Source0.repr ~proj:(function
| In_source_tree t -> Some t
| External _ | In_build_dir _ -> None)
; Repr.case "In_build_dir" Build.repr ~proj:(function
| In_build_dir t -> Some t
| External _ | In_source_tree _ -> None)
]
;;
let build_dir = in_build_dir Build.root
let is_root = function
| In_source_tree s -> Source0.is_root s
| In_build_dir _ | External _ -> false
;;
let local_or_external : t -> Outside_build_dir.t = function
| In_build_dir p ->
Outside_build_dir.append_local (Fdecl.get Build.build_dir) (Build.local p)
| In_source_tree s -> In_source_dir s
| External s -> External s
;;
let is_managed = function
| In_build_dir _ | In_source_tree _ -> true
| External _ -> false
;;
let to_string t =
match t with
| In_source_tree p -> Source0.to_string p
| External p -> External.to_string p
| In_build_dir p -> Build.to_string p
;;
let to_string_maybe_quoted t = String.maybe_quoted (to_string t)
let root = in_source_tree Source0.root
let make_local_path p =
match Local.Prefix.drop (Fdecl.get Build.build_dir_prefix) p with
| None -> in_source_tree (Source0.of_local p)
| Some p -> in_build_dir (Build.of_local p)
;;
let of_local = make_local_path
let relative ?error_loc t fn =
match fn with
| "" | "." -> t
| _ when not (Filename.is_relative fn) -> external_ (External.of_string fn)
| _ ->
(match t with
| In_source_tree p ->
let fn' = explode_path fn in
(match Source0.L.relative_result p fn' with
| Ok l -> make_local_path (Source0.to_local l)
| Error `Outside_the_workspace ->
external_
(External.relative
(External.of_string
(Outside_build_dir.to_absolute_filename (local_or_external t)))
fn))
| In_build_dir p -> in_build_dir (Build.relative p fn ?error_loc)
| External s -> external_ (External.relative s fn))
;;
let relative_fname ?error_loc t fn = relative ?error_loc t (Filename.to_string fn)
let parse_string_exn ~loc s =
match s with
| "" | "." -> in_source_tree Source0.root
| s ->
if Filename.is_relative s
then make_local_path (Local.parse_string_exn ~loc s)
else external_ (External.parse_string_exn ~loc s)
;;
let of_string s = parse_string_exn ~loc:Loc0.none s
let of_filename_relative_to_initial_cwd fn =
external_ (External.of_filename_relative_to_initial_cwd fn)
;;
let of_string_allow_outside_workspace s =
if Filename.is_relative s
then (
match Local.L.relative_result Local.root (explode_path s) with
| Ok _ -> of_string s
| Error `Outside_the_workspace -> of_filename_relative_to_initial_cwd s)
else of_string s
;;
let to_absolute_filename t = Outside_build_dir.to_absolute_filename (local_or_external t)
let external_of_local x ~root =
External.to_string (External.relative root (Local.to_string x))
;;
let external_of_in_source_tree x = external_of_local x ~root:(Lazy.force abs_root)
let reach t ~from =
match t, from with
| External t, _ -> External.to_string t
| In_source_tree t, In_source_tree from -> Source0.reach t ~from
| In_build_dir t, In_build_dir from -> Build.reach t ~from
| In_source_tree t, In_build_dir from ->
(match Fdecl.get Build.build_dir with
| In_source_dir b ->
Local.reach
(Source0.to_local t)
~from:(Local.append (Source0.to_local b) (Build.local from))
| External _ -> external_of_in_source_tree (Source0.to_local t))
| In_build_dir t, In_source_tree from ->
(match Fdecl.get Build.build_dir with
| In_source_dir b ->
Local.reach
(Local.append (Source0.to_local b) (Build.local t))
~from:(Source0.to_local from)
| External b -> external_of_local (Build.local t) ~root:b)
| In_source_tree t, External _ -> external_of_in_source_tree (Source0.to_local t)
| In_build_dir t, External _ ->
(match Fdecl.get Build.build_dir with
| In_source_dir b ->
external_of_in_source_tree (Local.append (Source0.to_local b) (Build.local t))
| External b -> external_of_local (Build.local t) ~root:b)
;;
let reach_for_running ?(from = root) t =
let fn = reach t ~from in
match Filename.analyze_program_name fn with
| In_path when not (String.equal fn ".") -> "./" ^ fn
| _ -> fn
;;
let descendant t ~of_ =
match t, of_ with
| In_source_tree t, In_source_tree of_ ->
Option.map (Source0.descendant t ~of_) ~f:in_source_tree
| In_build_dir t, In_build_dir of_ ->
Option.map (Build.descendant t ~of_) ~f:(fun d ->
in_source_tree (Source0.of_local (Build.local d)))
| _ -> None
;;
let is_descendant t ~of_ =
match t, of_ with
| In_source_tree t, In_source_tree of_ -> Source0.is_descendant t ~of_
| In_build_dir t, In_build_dir of_ -> Build.is_descendant t ~of_
| _ -> false
;;
let append_local a b =
match a with
| In_source_tree a -> in_source_tree (Source0.append_local a b)
| In_build_dir a -> in_build_dir (Build.append_local a b)
| External a -> external_ (External.relative a (Local.to_string b))
;;
let append_local = append_local
let append_source a b =
match a with
| In_source_tree a ->
in_source_tree
(Source0.of_local (Local.append (Source0.to_local a) (Source0.to_local b)))
| In_build_dir a -> in_build_dir (Build.append_source a b)
| External a -> external_ (External.relative a (Source0.to_string b))
;;
let basename t =
match t with
| In_build_dir p -> Build.basename p
| In_source_tree s -> Source0.basename s
| External s -> External.basename s
;;
let is_a_root = function
| In_build_dir p -> Build.is_root p
| In_source_tree s -> Source0.is_root s
| External s -> External.is_root s
;;
let basename_opt = basename_opt ~is_root:is_a_root ~basename
let parent = function
| External s -> Option.map (External.parent s) ~f:external_
| In_source_tree l -> Option.map (Source0.parent l) ~f:in_source_tree
| In_build_dir l -> Option.map (Build.parent l) ~f:in_build_dir
;;
let parent_exn t =
match parent t with
| Some p -> p
| None -> Code_error.raise "Path.parent:exn t is root" [ "t", to_dyn t ]
;;
let is_in_build_dir = function
| In_build_dir _ -> true
| In_source_tree _ | External _ -> false
;;
let is_in_source_tree = function
| In_source_tree _ -> true
| In_build_dir _ | External _ -> false
;;
let as_in_source_tree = function
| In_source_tree s -> Some s
| In_build_dir _ | External _ -> None
;;
let as_in_source_tree_exn t =
match as_in_source_tree t with
| Some t -> t
| None ->
Code_error.raise
"[as_in_source_tree_exn] called on something not in source tree"
[ "t", to_dyn t ]
;;
let as_outside_build_dir : t -> Outside_build_dir.t option = function
| In_source_tree s -> Some (In_source_dir s)
| External s -> Some (External s)
| In_build_dir _ -> None
;;
let as_outside_build_dir_exn : t -> Outside_build_dir.t = function
| In_source_tree s -> In_source_dir s
| External s -> External s
| In_build_dir path ->
Code_error.raise "as_outside_build_dir_exn" [ "path", Build.to_dyn path ]
;;
let destruct_build_dir : t -> [ `Inside of Build.t | `Outside of Outside_build_dir.t ] =
function
| In_source_tree p -> `Outside (In_source_dir p)
| External s -> `Outside (External s)
| In_build_dir s -> `Inside s
;;
let outside_build_dir : Outside_build_dir.t -> t = function
| In_source_dir d -> In_source_tree d
| External s -> External s
;;
let as_in_build_dir = function
| In_build_dir b -> Some b
| In_source_tree _ | External _ -> None
;;
let as_in_build_dir_exn t =
match t with
| External _ | In_source_tree _ ->
Code_error.raise
"[as_in_build_dir_exn] called on something not in build dir"
[ "t", to_dyn t ]
| In_build_dir p -> p
;;
let as_external = function
| External s -> Some s
| In_build_dir _ | In_source_tree _ -> None
;;
let = function
| In_source_tree _ | External _ -> None
| In_build_dir p when Build.is_root p -> None
| In_build_dir t -> Build.extract_build_context t
;;
let t =
match extract_build_context t with
| Some t -> t
| None -> Code_error.raise "Path.extract_build_context_exn" [ "t", to_dyn t ]
;;
let = function
| In_source_tree _ | External _ -> None
| In_build_dir t ->
Option.map (Build.extract_build_context_dir t) ~f:(fun (base, rest) ->
in_build_dir base, rest)
;;
let extract_build_context_dir_maybe_sandboxed = function
| In_source_tree _ | External _ -> None
| In_build_dir t ->
Option.map (Build.extract_build_context_dir_maybe_sandboxed t) ~f:(fun (base, rest) ->
in_build_dir base, rest)
;;
let drop_optional_sandbox_root = function
| (In_source_tree _ | External _) as x -> x
| In_build_dir t ->
(match Build.split_sandbox_root t with
| _sandbox_root, t -> In_build_dir t)
;;
let t =
match extract_build_context_dir t with
| Some t -> t
| None -> Code_error.raise "Path.extract_build_context_dir_exn" [ "t", to_dyn t ]
;;
let drop_build_context t = Option.map (extract_build_context t) ~f:snd
let drop_build_context_exn t =
match extract_build_context t with
| None -> Code_error.raise "Path.drop_build_context_exn" [ "t", to_dyn t ]
| Some (_, t) -> t
;;
let drop_optional_build_context t =
match extract_build_context t with
| None -> t
| Some (_, t) -> in_source_tree t
;;
let pp path = drop_optional_build_context path |> to_string_maybe_quoted |> Pp.verbatim
let drop_optional_build_context_maybe_sandboxed t =
match extract_build_context_dir_maybe_sandboxed t with
| None -> t
| Some (_, t) -> in_source_tree t
;;
let drop_optional_build_context_src_exn t =
match t with
| External _ ->
Code_error.raise "drop_optional_build_context_src_exn called on an external path" []
| In_build_dir _ ->
(match extract_build_context t with
| Some (_, s) -> s
| None ->
Code_error.raise
"drop_optional_build_context_src_exn called on a build directory itself"
[])
| In_source_tree p -> p
;;
let split_first_component t =
match local_or_external t with
| In_source_dir t ->
Option.map (Source0.split_first_component t) ~f:(fun (before, after) ->
before, in_source_tree (Source0.of_local after))
| _ -> None
;;
let relative_to_source_in_build_or_external ?error_loc ~dir s =
match Build.extract_build_context dir with
| None -> relative ?error_loc (in_build_dir dir) s
| Some (bctxt, source) ->
let path = relative ?error_loc (in_source_tree source) s in
(match path with
| In_source_tree s ->
in_build_dir
(Build.relative
(Build.of_string (Filename.to_string bctxt))
(Source0.to_string s))
| In_build_dir _ | External _ -> path)
;;
let readdir_unsorted t =
Result.map
(Readdir.read_directory (to_string t))
~f:(List.map ~f:Filename.of_string_exn)
;;
let readdir_unsorted_with_kinds t =
Result.map
(Readdir.read_directory_with_kinds (to_string t))
~f:(fun entries ->
List.map entries ~f:(fun (name, kind) -> Filename.of_string_exn name, kind))
;;
let build_dir_exists () = Fpath.is_directory (to_string build_dir)
let ensure_build_dir_exists () =
let perms = 0o777 in
match local_or_external build_dir with
| In_source_dir p -> Relative_to_source_root.mkdir_p (Source0.to_local p) ~perms
| External p ->
let p = External.to_string p in
(match Fpath.mkdir ~perms p with
| `Created | `Already_exists -> ()
| `Missing_parent_directory ->
User_error.raise
[ Pp.textf
"Cannot create external build directory %s. Make sure that the parent dir \
%s exists."
p
(Filename.dirname p)
])
;;
let extend_basename t ~suffix =
match t with
| In_source_tree t -> in_source_tree (Source0.extend_basename t ~suffix)
| In_build_dir t -> in_build_dir (Build.extend_basename t ~suffix)
| External t -> external_ (External.extend_basename t ~suffix)
;;
let rm_rf ?chmod ?(allow_external = false) t =
if (not allow_external) && not (is_managed t)
then Code_error.raise "Path.rm_rf called on external dir" [ "t", to_dyn t ];
Fpath.rm_rf ?chmod (to_string t)
;;
let mkdir_p ?perms = function
| External s ->
let (_ : Fpath.mkdir_p_result) = Fpath.mkdir_p (External.to_string s) ?perms in
()
| In_source_tree s -> Relative_to_source_root.mkdir_p (Source0.to_local s) ?perms
| In_build_dir k ->
Outside_build_dir.mkdir_p
?perms
(Outside_build_dir.append_local (Fdecl.get Build.build_dir) (Build.local k))
;;
let extension t =
match t with
| External t -> External.extension t
| In_build_dir t -> Build.extension t
| In_source_tree t -> Source0.extension t
;;
let split_extension t =
match t with
| External t ->
let t, ext = External.split_extension t in
external_ t, ext
| In_build_dir t ->
let t, ext = Build.split_extension t in
in_build_dir t, ext
| In_source_tree t ->
let t, ext = Source0.split_extension t in
in_source_tree t, ext
;;
let set_extension t ~ext =
match t with
| External t -> external_ (External.set_extension t ~ext)
| In_build_dir t -> in_build_dir (Build.set_extension t ~ext)
| In_source_tree t -> in_source_tree (Source0.set_extension t ~ext)
;;
let map_extension t ~f =
let base, ext = split_extension t in
let suffix = Filename.Extension.Or_empty.to_string (f ext) in
extend_basename ~suffix:(Filename.of_string_exn suffix) base
;;
module O = Comparable.Make (T)
module Map = O.Map
module Set = struct
include O.Set
let of_listing ~dir ~filenames =
of_list_map filenames ~f:(fun f -> relative dir (Filename.to_string f))
;;
end
let source s = in_source_tree s
let build s = in_build_dir s
module Table = struct
type key = t
type 'a t =
{ source : 'a Source0.Table.t
; build : 'a Build.Table.t
; external_ : 'a External.Table.t
}
let create () =
{ source = Source0.Table.create 0
; build = Build.Table.create 0
; external_ = External.Table.create 0
}
;;
let clear { source; build; external_ } =
Source0.Table.clear source;
Build.Table.clear build;
External.Table.clear external_
;;
let[@inline] mem { source; build; external_ } key =
match key with
| In_source_tree p -> Source0.Table.mem source p
| In_build_dir p -> Build.Table.mem build p
| External p -> External.Table.mem external_ p
;;
let[@inline] set { source; build; external_ } k v =
match k with
| In_source_tree p -> Source0.Table.set source p v
| In_build_dir p -> Build.Table.set build p v
| External p -> External.Table.set external_ p v
;;
let[@inline] remove { source; build; external_ } k =
match k with
| In_source_tree p -> Source0.Table.remove source p
| In_build_dir p -> Build.Table.remove build p
| External p -> External.Table.remove external_ p
;;
let iter { source; build; external_ } ~f =
Source0.Table.iter source ~f;
Build.Table.iter build ~f;
External.Table.iter external_ ~f
;;
let[@inline] find { source; build; external_ } = function
| In_source_tree p -> Source0.Table.find source p
| In_build_dir p -> Build.Table.find build p
| External p -> External.Table.find external_ p
;;
let filteri_inplace { source; build; external_ } ~f =
Source0.Table.filteri_inplace source ~f:(fun[@inline] ~key ~data ->
f ~key:(In_source_tree key) ~data);
Build.Table.filteri_inplace build ~f:(fun[@inline] ~key ~data ->
f ~key:(In_build_dir key) ~data);
External.Table.filteri_inplace external_ ~f:(fun[@inline] ~key ~data ->
f ~key:(External key) ~data)
;;
let filter_inplace { source; build; external_ } ~f =
Source0.Table.filteri_inplace source ~f:(fun[@inline] ~key:_ ~data -> f data);
Build.Table.filteri_inplace build ~f:(fun[@inline] ~key:_ ~data -> f data);
External.Table.filteri_inplace external_ ~f:(fun[@inline] ~key:_ ~data -> f data)
;;
let to_dyn f { source; build; external_ } =
let open Dyn in
record
[ "source", Source0.Table.to_dyn f source
; "build", Build.Table.to_dyn f build
; "external_", External.Table.to_dyn f external_
]
;;
end
module L = struct
let relative t = List.fold_left ~init:t ~f:relative
end
let local_part = function
| External e -> Local.of_string (External.as_local e)
| In_source_tree l -> Source0.to_local l
| In_build_dir l -> Build.local l
;;
let stat t = Unix_error.Detailed.catch (fun p -> Unix.stat (to_string p)) t
let lstat t = Unix_error.Detailed.catch (fun p -> Unix.lstat (to_string p)) t
include (Comparator.Operators (T) : Comparator.OPS with type t := t)
let path_of_local = of_local
module Source = struct
include Source0
let is_in_build_dir s = is_in_build_dir (path_of_local (to_local s))
end
let drop_prefix path ~prefix =
let prefix_s = to_string prefix in
let path_s = to_string path in
match Int.compare (String.length prefix_s) (String.length path_s) with
| Eq -> if prefix = path then Some Local.root else None
| Gt -> None
| Lt ->
let open Option.O in
let* prefix =
let* last = String.last prefix_s in
if is_dir_sep last
then Some prefix_s
else if is_dir_sep path_s.[String.length prefix_s]
then Some (prefix_s ^ String.make 1 path_s.[String.length prefix_s])
else None
in
let+ suffix = String.drop_prefix path_s ~prefix in
Local.of_string suffix
;;
let drop_prefix_exn t ~prefix =
match drop_prefix t ~prefix with
| None ->
Code_error.raise "Path.drop_prefix_exn" [ "t", to_dyn t; "prefix", to_dyn prefix ]
| Some p -> p
;;
let is_broken_symlink = function
| External e -> Fpath.is_broken_symlink (External.to_string e)
| In_source_tree _ | In_build_dir _ ->
false
;;
module Expert = struct
let drop_absolute_prefix ~prefix p =
match
String.drop_prefix ~prefix:(Outside_build_dir.to_absolute_filename prefix) p
with
| None -> None
| Some "" -> Some Local.root
| Some p -> Some (Local.of_string (if is_dir_sep p.[0] then String.drop p 1 else p))
;;
let try_localize_external ext =
let p = External.to_string ext in
match Fdecl.get Build.build_dir with
| External s ->
(match drop_absolute_prefix ~prefix:(External s) p with
| Some s -> Some (in_build_dir (Build.of_local s))
| None ->
drop_absolute_prefix ~prefix:(In_source_dir Source0.root) p
|> Option.map ~f:(fun s -> in_source_tree (Source0.of_local s)))
| In_source_dir _ ->
drop_absolute_prefix ~prefix:(In_source_dir Source0.root) p
|> Option.map ~f:make_local_path
;;
let try_localize_external t =
match t with
| External e -> Option.value ~default:t (try_localize_external e)
| _ -> t
;;
end