-
Notifications
You must be signed in to change notification settings - Fork 416
/
Copy pathpath.ml
1289 lines (1016 loc) · 32.4 KB
/
path.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
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
module Sys = Stdlib.Sys
let basename_opt ~is_root ~basename t =
if is_root t then
None
else
Some (basename t)
let is_dir_sep =
if Sys.win32 || Sys.cygwin then
fun c ->
c = '/' || c = '\\' || c = ':'
else
fun c ->
c = '/'
let explode_path =
let rec start acc path i =
if i < 0 then
acc
else if is_dir_sep (String.unsafe_get path i) then
start acc path (i - 1)
else
component acc path i (i - 1)
and component acc path end_ i =
if i < 0 then
String.take path (end_ + 1) :: acc
else if is_dir_sep (String.unsafe_get path i) then
start (String.sub path ~pos:(i + 1) ~len:(end_ - i) :: acc) path (i - 1)
else
component acc path end_ (i - 1)
in
fun path ->
if path = Filename.current_dir_name then
[ path ]
else
match start [] path (String.length path - 1) with
| "." :: xs -> xs
| xs -> xs
module External : sig
include Path_intf.S
val relative : t -> string -> t
val mkdir_p : ?perms:int -> t -> unit
val initial_cwd : t
val cwd : unit -> t
val as_local : t -> string
end = struct
module T =
Interned.No_interning
(struct
let initial_size = 512
let resize_policy = Interned.Greedy
let order = Interned.Natural
end)
()
module Table = Hashtbl.Make (T)
type t = T.t
let to_string = T.to_string
let make = T.make
let equal = T.equal
let hash = T.hash
let compare = T.compare
let as_string x ~f = to_string x |> f |> make
let extend_basename t ~suffix = as_string t ~f:(fun t -> t ^ suffix)
let of_string t =
if Filename.is_relative t then
Code_error.raise "Path.External.of_string: relative path given"
[ ("t", String t) ];
make t
let parse_string_exn ~loc t =
if Filename.is_relative t then
User_error.raise ~loc [ Pp.textf "path %s is not absolute" t ];
make t
let to_dyn t = Dyn.String (to_string t)
(* let rec cd_dot_dot t = match Unix.readlink t with | exception _ ->
Filename.dirname t | t -> cd_dot_dot t
let relative initial_t path = let rec loop t components = match components
with | [] | ["." | ".."] -> die "invalid filename concatenation: %s / %s"
initial_t path | [fn] -> Filename.concat t fn | "." :: rest -> loop t rest
| ".." :: rest -> loop (cd_dot_dot t) rest | comp :: rest -> loop
(Filename.concat t comp) rest in loop initial_t (explode_path path) *)
let relative x y =
match y with
| "." -> x
| _ -> make (Filename.concat (to_string x) y)
let basename t = Filename.basename (to_string t)
let root = of_string "/"
let is_root = equal root
let basename_opt = basename_opt ~is_root ~basename
let parent t =
if is_root t then
None
else
Some (as_string t ~f:Filename.dirname)
let parent_exn t =
match parent t with
| None ->
Code_error.raise "Path.External.parent_exn called on a root path" []
| Some p -> p
let mkdir_p ?perms path =
ignore (Fpath.mkdir_p ?perms (to_string path) : Fpath.mkdir_p_result)
let extension t = Filename.extension (to_string t)
let split_extension t =
let s, ext = Filename.split_extension (to_string t) in
(make s, ext)
let set_extension t ~ext =
let base, _ = split_extension t in
to_string base ^ ext |> make
let cwd () = make (Sys.getcwd ())
let initial_cwd = make Fpath.initial_cwd
let as_local t =
let s = to_string t in
"." ^ s
include (
Comparator.Operators (struct
type nonrec t = t
let compare = compare
end) :
Comparator.OPS with type t := t)
let to_string_maybe_quoted t = String.maybe_quoted (to_string t)
let is_descendant b ~of_:a =
if is_root a then
true
else
String.is_prefix ~prefix:(to_string a ^ "/") (to_string b)
module Set = struct
include T.Set
let of_listing ~dir ~filenames =
of_list_map filenames ~f:(fun f -> relative dir f)
end
module Map = T.Map
end
module Unspecified = Path_intf.Unspecified
module Local_gen : sig
include Path_intf.Local_gen
module Prefix : sig
type 'w local = 'w t
type 'w t
val make : 'w local -> 'w t
val drop : 'w t -> 'w local -> 'w local option
(* for all local path p, drop (invalid p = None) *)
val invalid : 'w t
end
with type 'w local := 'w t
end = struct
(* either "." for root, or a '/' separated list of components other that ".",
".." and not containing '/'. *)
module T =
Interned.No_interning
(struct
let initial_size = 512
let resize_policy = Interned.Greedy
let order = Interned.Natural
end)
()
module Table = Hashtbl.Make (T)
type _ t = T.t
let to_string = T.to_string
let make = T.make
let hash = T.hash
let compare = T.compare
let root = make "."
let is_root t = Ordering.is_eq (compare t root)
let to_list =
let rec loop t acc i j =
if i = 0 then
String.take t j :: acc
else
match t.[i - 1] with
| '/' -> loop t (String.sub t ~pos:i ~len:(j - i) :: acc) (i - 1) (i - 1)
| _ -> loop t acc (i - 1) j
in
fun t ->
if is_root t then
[]
else
let t = to_string t in
let len = String.length t in
loop t [] len len
let parent t =
if is_root t then
None
else
let t = to_string t in
match String.rindex_from t (String.length t - 1) '/' with
| None -> Some root
| Some i -> Some (make (String.take t i))
let basename t =
if is_root t then
Code_error.raise "Path.Local.basename called on the root" []
else
let t = to_string t in
let len = String.length t in
match String.rindex_from t (len - 1) '/' with
| None -> t
| Some i -> String.sub t ~pos:(i + 1) ~len:(len - i - 1)
let to_dyn t = Dyn.String (to_string t)
module L = struct
let relative_result t components =
let rec loop t components =
match components with
| [] -> Result.Ok t
| "." :: rest -> loop t rest
| ".." :: rest -> (
if is_root t then
Result.Error ()
else
match parent t with
| None -> Error ()
| Some parent -> loop parent rest)
| fn :: rest ->
if is_root t then
loop (make fn) rest
else
loop (make (to_string t ^ "/" ^ fn)) rest
in
loop t components
let relative ?error_loc t components =
match relative_result t components with
| Result.Ok t -> t
| Error () ->
User_error.raise ?loc:error_loc
[ Pp.textf "path outside the workspace: %s from %s"
(String.concat ~sep:"/" components)
(to_string t)
]
end
let relative ?error_loc t path =
if not (Filename.is_relative path) then
Code_error.raise "Local.relative: received absolute path"
[ ("t", to_dyn t); ("path", String path) ];
match L.relative_result t (explode_path path) with
| Result.Ok t -> t
| Error () ->
User_error.raise ?loc:error_loc
[ Pp.textf "path outside the workspace: %s from %s" path (to_string t) ]
let is_canonicalized =
let rec before_slash s i =
if i < 0 then
false
else
match s.[i] with
| '/' -> false
| '.' -> before_dot_slash s (i - 1)
| _ -> in_component s (i - 1)
and before_dot_slash s i =
if i < 0 then
false
else
match s.[i] with
| '/' -> false
| '.' -> before_dot_dot_slash s (i - 1)
| _ -> in_component s (i - 1)
and before_dot_dot_slash s i =
if i < 0 then
false
else
match s.[i] with
| '/' -> false
| _ -> in_component s (i - 1)
and in_component s i =
if i < 0 then
true
else
match s.[i] with
| '/' -> before_slash s (i - 1)
| _ -> in_component s (i - 1)
in
fun s ->
let len = String.length s in
len = 0 || before_slash s (len - 1)
let parse_string_exn ~loc s =
match s with
| ""
| "." ->
root
| _ when is_canonicalized s -> make s
| _ -> relative root s ~error_loc:loc
let of_string s = parse_string_exn ~loc:Loc0.none s
let append a b =
match (is_root a, is_root b) with
| true, _ -> b
| _, true -> a
| _, _ -> make (to_string a ^ "/" ^ to_string b)
let descendant t ~of_ =
if is_root of_ then
Some t
else if t = of_ then
Some root
else
let t = to_string t in
let of_ = to_string of_ in
let of_len = String.length of_ in
let t_len = String.length t in
if t_len > of_len && t.[of_len] = '/' && String.is_prefix t ~prefix:of_
then
Some (make (String.drop t (of_len + 1)))
else
None
let is_descendant t ~of_ =
is_root of_ || t = of_
||
let t = to_string t in
let of_ = to_string of_ in
let of_len = String.length of_ in
let t_len = String.length t in
t_len > of_len && t.[of_len] = '/' && String.is_prefix t ~prefix:of_
let reach t ~from =
let rec loop t from =
match (t, from) with
| a :: t, b :: from when a = b -> loop t from
| _ -> (
match List.fold_left from ~init:t ~f:(fun acc _ -> ".." :: acc) with
| [] -> "."
| l -> String.concat l ~sep:"/")
in
loop (to_list t) (to_list from)
let extend_basename t ~suffix = make (to_string t ^ suffix)
let extension t = Filename.extension (to_string t)
let split_extension t =
let s, ext = Filename.split_extension (to_string t) in
(make s, ext)
let set_extension t ~ext =
let base, _ = split_extension t in
to_string base ^ ext |> make
module Prefix = struct
let make_path = make
type _ t =
{ len : int
; path : string
; path_slash : string
}
let make p =
if is_root p then
Code_error.raise "Path.Local.Prefix.make" [ ("path", to_dyn p) ];
let p = to_string p in
{ len = String.length p; path = p; path_slash = p ^ "/" }
let drop t p =
let p = to_string p in
let len = String.length p in
if len = t.len && p = t.path then
Some root
else
String.drop_prefix p ~prefix:t.path_slash |> Option.map ~f:make_path
let invalid = { len = -1; path = "/"; path_slash = "/" }
end
let split_first_component t =
if is_root t then
None
else
let t = to_string t in
match String.lsplit2 t ~on:'/' with
| None -> Some (t, root)
| Some (before, after) -> Some (before, after |> of_string)
let explode p =
if is_root p then
[]
else
String.split (to_string p) ~on:'/'
let to_string_maybe_quoted t = String.maybe_quoted (to_string t)
let parent_exn t =
match parent t with
| None ->
Code_error.raise "Path.Local.parent:exn t is root" [ ("t", to_dyn t) ]
| Some parent -> parent
module Fix_root (Root : sig
type w
end) =
struct
type _w = Root.w
module Set = struct
include T.Set
let of_listing ~dir ~filenames =
of_list_map filenames ~f:(fun f -> relative dir f)
end
module Map = T.Map
module Table = Table
end
end
module Local : sig
type w = Unspecified.w
type t = w Local_gen.t
include Path_intf.S with type t := t
val root : t
val is_root : t -> bool
val relative : ?error_loc:Loc0.t -> t -> string -> t
val append : t -> t -> t
val descendant : t -> of_:t -> t option
val is_descendant : t -> of_:t -> bool
val reach : t -> from:t -> string
module L : sig
val relative : ?error_loc:Loc0.t -> t -> string list -> t
end
val split_first_component : t -> (string * t) option
val explode : t -> string list
val of_local : t -> t
module Prefix : sig
type local = t
type t
val make : local -> t
val drop : t -> local -> local option
(* for all local path p, drop (invalid p = None) *)
val invalid : t
end
with type local := t
end = struct
type w = Unspecified.w
include (
Local_gen :
module type of Local_gen
with type 'a t := 'a Local_gen.t
with module Prefix := Local_gen.Prefix)
type nonrec t = w Local_gen.t
module Prefix = struct
open Local_gen
include (Prefix : module type of Prefix with type 'a t := 'a Prefix.t)
type t = w Prefix.t
end
include (
Comparator.Operators (struct
type nonrec t = t
let compare = Local_gen.compare
end) :
Comparator.OPS with type t := t)
let of_local t = t
include Fix_root (struct
type nonrec w = w
end)
let basename_opt = basename_opt ~is_root ~basename
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 = Local
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 Kind = struct
type t =
| External of External.t
| In_source_dir of Local.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) (Local.to_string l))
let to_string = function
| In_source_dir t -> Local.to_string t
| External t -> External.to_string t
let to_dyn t = Dyn.String (to_string t)
let of_string s =
if Filename.is_relative s then
In_source_dir (Local.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 t
| External t -> External.mkdir_p ?perms t
let append_local x y =
match x with
| In_source_dir x -> In_source_dir (Local.append x y)
| External x -> External (External.relative x (Local.to_string y))
end
module Permissions = struct
let write = 0o222
let add ~mode perm = perm lor mode
let remove ~mode perm = perm land lnot mode
end
module Build = struct
include Local
let append_source = append
let append_local = append
let local t = t
let extract_build_context t = split_first_component t
let extract_first_component = extract_build_context
let extract_build_context_dir t =
Option.map (split_first_component t) ~f:(fun (before, after) ->
(Local.of_string before, after))
let split_sandbox_root t_original =
match split_first_component t_original with
| Some (".sandbox", t) -> (
match split_first_component t with
| Some (sandbox_name, t) ->
(Some (of_string (".sandbox" ^ "/" ^ sandbox_name)), 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 -> append root ctx_dir
in
(ctx_dir, src_dir))
let extract_build_context_dir_exn 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 extract_build_context_exn 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 build_dir = Fdecl.create Kind.to_dyn
let build_dir_prefix = Fdecl.create Dyn.Encoder.opaque
let set_build_dir (new_build_dir : Kind.t) =
let new_build_dir_prefix =
(match new_build_dir with
| External _ -> ()
| In_source_dir p ->
if Local.is_root p || 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 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 =
match Fdecl.get build_dir with
| In_source_dir b -> Local.to_string (Local.append 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 of_local t = t
let chmod t ~mode = Unix.chmod (to_string t) mode
let lstat t = Unix.lstat (to_string t)
let unlink_no_err t = Fpath.unlink_no_err (to_string t)
module Kind = Kind
end
module T : sig
type t =
| External of External.t
| In_source_tree of Local.t
| In_build_dir of Local.t
val to_dyn : t -> Dyn.t
val compare : t -> t -> Ordering.t
val equal : t -> t -> bool
val hash : t -> int
val in_build_dir : Local.t -> t
val in_source_tree : Local.t -> t
val external_ : External.t -> t
end = struct
type t =
| External of External.t
| In_source_tree of Local.t
| In_build_dir of Local.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 -> Local.compare x y
| In_source_tree _, _ -> Lt
| _, In_source_tree _ -> Gt
| In_build_dir x, In_build_dir y -> Local.compare x y
let equal (x : t) (y : t) = x = y
let hash = Hashtbl.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 t =
let open Dyn in
match t with
| In_build_dir s -> Variant ("In_build_dir", [ Local.to_dyn s ])
| In_source_tree s -> Variant ("In_source_tree", [ Local.to_dyn s ])
| External s -> Variant ("External", [ External.to_dyn s ])
end
include T
let hash (t : t) = Hashtbl.hash t
let build_dir = in_build_dir Local.root
let is_root = function
| In_source_tree s -> Local.is_root s
| In_build_dir _
| External _ ->
false
module Map = Map.Make (T)
let kind = function
| In_build_dir p -> Kind.append_local (Fdecl.get Build.build_dir) p
| In_source_tree s -> Kind.In_source_dir s
| External s -> Kind.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 -> Local.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 Local.root
let make_local_path p =
match Local.Prefix.drop (Fdecl.get Build.build_dir_prefix) p with
| None -> in_source_tree p
| Some p -> in_build_dir 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 -> make_local_path (Local.relative p fn ?error_loc)
| In_build_dir p -> in_build_dir (Local.relative p fn ?error_loc)
| External s -> external_ (External.relative s fn))
let parse_string_exn ~loc s =
match s with
| ""
| "." ->
in_source_tree Local.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 to_dyn =
let open Dyn.Encoder in
function
| In_build_dir s -> constr "In_build_dir" [ Local.to_dyn s ]
| In_source_tree s -> constr "In_source_tree" [ Local.to_dyn s ]
| External s -> constr "External" [ External.to_dyn s ]
let of_filename_relative_to_initial_cwd fn =
external_
(if Filename.is_relative fn then
External.relative External.initial_cwd fn
else
External.of_string fn)
let to_absolute_filename t = Kind.to_absolute_filename (kind 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
| In_build_dir t, In_build_dir from ->
Local.reach t ~from
| In_source_tree t, In_build_dir from -> (
match Fdecl.get Build.build_dir with
| In_source_dir b -> Local.reach t ~from:(Local.append b from)
| External _ -> external_of_in_source_tree t)
| In_build_dir t, In_source_tree from -> (
match Fdecl.get Build.build_dir with
| In_source_dir b -> Local.reach (Local.append b t) ~from
| External b -> external_of_local t ~root:b)
| In_source_tree t, External _ -> external_of_in_source_tree t
| In_build_dir t, External _ -> (
match Fdecl.get Build.build_dir with
| In_source_dir b -> external_of_in_source_tree (Local.append b t)
| External b -> external_of_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 -> "./" ^ fn
| _ -> fn
let descendant t ~of_ =
match (t, of_) with
| In_source_tree t, In_source_tree of_
| In_build_dir t, In_build_dir of_ ->
Option.map ~f:in_source_tree (Local.descendant t ~of_)
| _ -> None
let is_descendant t ~of_ =
match (t, of_) with
| In_source_tree t, In_source_tree of_
| In_build_dir t, In_build_dir of_ ->
Local.is_descendant t ~of_
| _ -> false
let append_local a b =
match a with
| In_source_tree a -> in_source_tree (Local.append a b)
| In_build_dir a -> in_build_dir (Local.append a b)
| External a -> external_ (External.relative a (Local.to_string b))
let append_local = append_local
let append_source = append_local
let basename t =
match t with
| In_build_dir p -> Local.basename p
| In_source_tree s -> Local.basename s
| External s -> External.basename s
let is_a_root = function
| In_build_dir p -> Local.is_root p
| In_source_tree s -> Local.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 -> Local.parent l |> Option.map ~f:in_source_tree
| In_build_dir l -> Local.parent l |> Option.map ~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_strict_descendant_of_build_dir = function
| In_build_dir p -> not (Local.is_root p)
| In_source_tree _
| External _ ->
false
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_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 extract_build_context = function
| In_source_tree _
| External _ ->
None
| In_build_dir p when Local.is_root p -> None
| In_build_dir t -> Build.extract_build_context t
let extract_build_dir_first_component = extract_build_context
let extract_build_context_exn t =
match extract_build_context t with
| Some t -> t
| None ->
Code_error.raise "Path.extract_build_context_exn" [ ("t", to_dyn t) ]