Source file 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
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
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
type t
val to_sexp : t Sexp.Encoder.t
val to_dyn : t -> Dyn.t
val compare : t -> t -> Ordering.t
val compare_val : t -> t -> Ordering.t
val to_string : t -> string
val of_string : string -> t
val relative : t -> string -> t
val mkdir_p : t -> unit
val basename : t -> string
val parent : t -> t
val initial_cwd : t
val cwd : unit -> t
val extend_basename : t -> suffix:string -> t
val extension : t -> string
val is_suffix : t -> suffix:string -> bool
val split_extension : t -> t * string
val set_extension : t -> ext:string -> t
val as_local : t -> string
end = struct
include Interned.No_interning(struct
let initial_size = 512
let resize_policy = Interned.Greedy
let order = Interned.Natural
end)()
let compare_val x y = String.compare (to_string x) (to_string y)
let as_string x ~f =
to_string x
|> f
|> make
let extend_basename t ~suffix = as_string t ~f:(fun t -> t ^ suffix)
let is_suffix t ~suffix = String.is_suffix (to_string t) ~suffix
let of_string t =
if Filename.is_relative t then
Exn.code_error "Path.External.of_string: relative path given"
[ "t", Sexp.Encoder.string t ];
make t
let to_sexp t = Sexp.Encoder.string (to_string t)
let to_dyn t = Dyn.String (to_string t)
let relative x y =
match y with
| "." -> x
| _ -> make (Filename.concat (to_string x) y)
let rec mkdir_p t =
let t_s = to_string t in
let p_s = Filename.dirname t_s in
let p = make p_s in
if p <> t then
try
Unix.mkdir t_s 0o777
with
| Unix.Unix_error (EEXIST, _, _) -> ()
| Unix.Unix_error (ENOENT, _, _) ->
mkdir_p p;
Unix.mkdir t_s 0o777
let basename t = Filename.basename (to_string t)
let parent t = as_string ~f:Filename.dirname t
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 = cwd ()
let as_local t =
let s = to_string t in
"." ^ s
end
module Local : sig
type t
val to_sexp : t Sexp.Encoder.t
val to_dyn : t -> Dyn.t
val root : t
val is_root : t -> bool
val compare : t -> t -> Ordering.t
val compare_val : t -> t -> Ordering.t
val equal : t -> t -> bool
val of_string : ?error_loc:Loc0.t -> string -> t
val to_string : t -> string
val relative : ?error_loc:Loc0.t -> t -> string -> t
val append : t -> t -> t
val parent : t -> t
val mkdir_p : t -> unit
val descendant : t -> of_:t -> t option
val is_descendant : t -> of_:t -> bool
val reach : t -> from:t -> string
val basename : t -> string
val extend_basename : t -> suffix:string -> t
val extension : t -> string
val is_suffix : t -> suffix:string -> bool
val split_extension : t -> t * string
val pp : Format.formatter -> t -> unit
val set_extension : t -> ext:string -> t
module L : sig
val relative : ?error_loc:Loc0.t -> t -> string list -> t
end
module Set : Set.S with type elt = t
module Prefix : sig
type local = t
type t
val make : local -> t
val drop : t -> local -> local option
val invalid : t
end with type local := t
end = struct
include Interned.No_interning(struct
let initial_size = 512
let resize_policy = Interned.Greedy
let order = Interned.Natural
end)()
let pp ppf s = Format.pp_print_string ppf (to_string s)
let compare_val x y = String.compare (to_string x) (to_string y)
let equal x y =
match compare x y with
| Eq -> true
| Gt | Lt -> false
let root = make "."
let is_root t = t = root
let is_suffix t ~suffix = String.is_suffix (to_string t) ~suffix
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
Exn.code_error "Path.Local.parent called on the root" []
else
let t = to_string t in
match String.rindex_from t (String.length t - 1) '/' with
| exception Not_found -> root
| i -> make (String.take t i)
let basename t =
if is_root t then
Exn.code_error "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
| exception Not_found -> t
| i -> String.sub t ~pos:(i + 1) ~len:(len - i - 1)
let to_sexp t = Sexp.Encoder.string (to_string t)
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
loop (parent t) 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 () ->
Exn.fatalf ?loc:error_loc "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 (
Exn.code_error "Local.relative: received absolute path"
[ "t", to_sexp t
; "path", Sexp.Encoder.string path
]
);
match L.relative_result t (explode_path path) with
| Result.Ok t -> t
| Error () ->
Exn.fatalf ?loc:error_loc "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 of_string ?error_loc s =
match s with
| "" | "." -> root
| _ when is_canonicalized s -> make s
| _ ->
relative root s ?error_loc
let rec mkdir_p t =
if is_root t then
()
else
let t_s = to_string t in
try
Unix.mkdir t_s 0o777
with
| Unix.Unix_error (EEXIST, _, _) -> ()
| Unix.Unix_error (ENOENT, _, _) as e ->
let parent = parent t in
if is_root parent then
raise e
else begin
mkdir_p parent;
Unix.mkdir t_s 0o777
end
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
Exn.code_error "Path.Local.Prefix.make"
[ "path", to_sexp 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
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 ->
Exn.code_error "set_root: cannot set root_dir more than once"
[ "root_dir", External.to_sexp root_dir
; "new_root_dir", External.to_sexp new_root
]
in
let abs_root = lazy (
match !root_dir with
| None ->
Exn.code_error "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
| Local of Local.t
let to_absolute_filename t =
match t with
| External s -> External.to_string s
| Local l ->
External.to_string
(External.relative (Lazy.force abs_root)
(Local.to_string l))
let to_string = function
| Local t -> Local.to_string t
| External t -> External.to_string t
let to_sexp t = Sexp.Encoder.string (to_string t)
let of_string s =
if Filename.is_relative s then
Local (Local.of_string s)
else
External (External.of_string s)
let _ =
let root = Local Local.root in
assert (of_string "" = root);
assert (of_string "." = root)
let _relative ?error_loc t fn =
match t with
| Local t -> Local (Local.relative ?error_loc t fn)
| External t -> External (External.relative t fn)
let mkdir_p = function
| Local t -> Local.mkdir_p t
| External t -> External.mkdir_p t
let append_local x y =
match x with
| Local x -> Local (Local.append x y)
| External x -> External (External.relative x (Local.to_string y))
end
let (build_dir_kind, build_dir_prefix, set_build_dir) =
let build_dir = ref None in
let build_dir_prefix = ref None in
let set_build_dir (new_build_dir : Kind.t) =
match !build_dir with
| None ->
(match new_build_dir with
| External _ -> ()
| Local p ->
if Local.is_root p || Local.parent p <> Local.root then
Exn.fatalf
"@{<error>Error@}: Invalid build directory: %s\n\
The build directory must be an absolute path or \
a sub-directory of the root of the workspace."
(Local.to_string p |> String.maybe_quoted));
build_dir := Some new_build_dir;
build_dir_prefix :=
Some (match new_build_dir with
| Local p -> Local.Prefix.make p
| External _ -> Local.Prefix.invalid)
| Some build_dir ->
Exn.code_error "set_build_dir: cannot set build_dir more than once"
[ "build_dir", Kind.to_sexp build_dir
; "new_build_dir", Kind.to_sexp new_build_dir ]
in
let build_dir = lazy (
match !build_dir with
| None ->
Exn.code_error "build_dir: cannot use build dir before it's set" []
| Some build_dir -> build_dir)
in
let build_dir_prefix = lazy (
match !build_dir_prefix with
| None ->
Exn.code_error "build_dir: cannot use build dir before it's set" []
| Some prefix -> prefix)
in
(build_dir, build_dir_prefix, set_build_dir)
module T : sig
type t = private
| External of External.t
| In_source_tree of Local.t
| In_build_dir of Local.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
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 (Lazy.force build_dir_kind) p
| In_source_tree s -> Kind.Local 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 ->
match Lazy.force build_dir_kind with
| Local 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 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 (Lazy.force 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 of_string ?error_loc s =
match s with
| "" | "." -> in_source_tree Local.root
| s ->
if Filename.is_relative s then
make_local_path (Local.of_string s ?error_loc)
else
external_ (External.of_string s)
let to_sexp t =
let constr f x y = Sexp.Encoder.(pair string f) (x, y) in
match t with
| In_build_dir s -> constr Local.to_sexp "In_build_dir" s
| In_source_tree s -> constr Local.to_sexp "In_source_tree" s
| External s -> constr External.to_sexp "External" s
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])
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 -> begin
match Lazy.force build_dir_kind with
| Local b -> Local.reach t ~from:(Local.append b from)
| External _ -> external_of_in_source_tree t
end
| In_build_dir t, In_source_tree from -> begin
match Lazy.force build_dir_kind with
| Local b -> Local.reach (Local.append b t) ~from
| External b -> external_of_local t ~root:b
end
| In_source_tree t, External _ -> external_of_in_source_tree t
| In_build_dir t, External _ ->
match Lazy.force build_dir_kind with
| Local 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 a b =
match b with
| In_build_dir _ | External _ ->
Exn.code_error "Path.append called with directory that's \
not in the source tree"
[ "a", to_sexp a
; "b", to_sexp b
]
| In_source_tree b -> append_local a b
let basename t =
match kind t with
| Local t -> Local.basename t
| External t -> External.basename t
let parent = function
| External s ->
let parent = External.parent s in
if parent = s then
None
else
Some (external_ parent)
| In_source_tree p | In_build_dir p when Local.is_root p -> None
| In_source_tree l -> Some (in_source_tree (Local.parent l))
| In_build_dir l -> Some (in_build_dir (Local.parent l))
let parent_exn t =
match parent t with
| Some p -> p
| None -> Exn.code_error "Path.parent:exn t is root"
["t", to_sexp 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 is_alias_stamp_file = function
| In_build_dir s -> String.is_prefix (Local.to_string s) ~prefix:".aliases/"
| In_source_tree _
| External _ -> false
let extract_build_context = function
| In_source_tree _
| External _ -> None
| In_build_dir p when Local.is_root p -> None
| In_build_dir t ->
let t = Local.to_string t in
begin match String.lsplit2 t ~on:'/' with
| None ->
Some (t, in_source_tree Local.root )
| Some (before, after) ->
Some
( before
, after
|> Local.of_string
|> in_source_tree )
end
let extract_build_context_exn t =
match extract_build_context t with
| Some t -> t
| None -> Exn.code_error "Path.extract_build_context_exn"
["t", to_sexp t]
let extract_build_context_dir = function
| In_source_tree _
| External _ -> None
| In_build_dir t ->
let t_str = Local.to_string t in
begin match String.lsplit2 t_str ~on:'/' with
| None -> Some (in_build_dir t, in_source_tree Local.root)
| Some (before, after) ->
Some
( in_build_dir (Local.of_string before)
, after
|> Local.of_string
|> in_source_tree
)
end
let extract_build_context_dir_exn t =
match extract_build_context_dir t with
| Some t -> t
| None -> Exn.code_error "Path.extract_build_context_dir_exn"
["t", to_sexp 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 -> Exn.code_error "Path.drop_build_context_exn" [ "t", to_sexp t ]
| Some (_, t) -> t
let drop_optional_build_context t =
match extract_build_context t with
| None -> t
| Some (_, t) -> t
let local_src = Local.of_string "src"
let local_build = Local.of_string "build"
let sandbox_managed_paths ~sandbox_dir t =
match t with
| External _ -> t
| In_source_tree p -> append_local sandbox_dir (Local.append local_src p)
| In_build_dir p -> append_local sandbox_dir (Local.append local_build p)
let split_first_component t =
match kind t, is_root t with
| Local t, false ->
let t = Local.to_string t in
begin match String.lsplit2 t ~on:'/' with
| None -> Some (t, root)
| Some (before, after) ->
Some
( before
, after
|> Local.of_string
|> in_source_tree )
end
| _, _ -> None
let explode t =
match kind t with
| Local p when Local.is_root p -> Some []
| Local s -> Some (String.split (Local.to_string s) ~on:'/')
| External _ -> None
let explode_exn t =
match explode t with
| Some s -> s
| None -> Exn.code_error "Path.explode_exn"
["path", to_sexp t]
let exists t =
try Sys.file_exists (to_string t)
with Sys_error _ -> false
let readdir_unsorted t = Sys.readdir (to_string t) |> Array.to_list
let is_directory t =
try Sys.is_directory (to_string t)
with Sys_error _ -> false
let is_file t = not (is_directory t)
let rmdir t = Unix.rmdir (to_string t)
let win32_unlink fn =
try
Unix.unlink fn
with Unix.Unix_error (Unix.EACCES, _, _) as e ->
try
Unix.chmod fn 0o666;
Unix.unlink fn
with _ ->
raise e
let unlink_operation =
if Sys.win32 then
win32_unlink
else
Unix.unlink
let unlink t =
unlink_operation (to_string t)
let unlink_no_err t = try unlink t with _ -> ()
let build_dir_exists () = is_directory build_dir
let ensure_build_dir_exists () =
match kind build_dir with
| Local p -> Local.mkdir_p p
| External p ->
let p = External.to_string p in
try
Unix.mkdir p 0o777
with
| Unix.Unix_error (EEXIST, _, _) -> ()
| Unix.Unix_error (ENOENT, _, _) ->
Exn.fatalf "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 (Local.extend_basename t ~suffix)
| In_build_dir t -> in_build_dir (Local.extend_basename t ~suffix)
| External t -> external_ (External.extend_basename t ~suffix)
let insert_after_build_dir_exn =
let error a b =
Exn.code_error
"Path.insert_after_build_dir_exn"
[ "path" , to_sexp a
; "insert", Sexp.Encoder.string b
]
in
fun a b ->
match a with
| In_build_dir a -> in_build_dir (Local.append (Local.of_string b) a)
| In_source_tree _
| External _ -> error a b
let rm_rf =
let rec loop dir =
Array.iter (Sys.readdir dir) ~f:(fun fn ->
let fn = Filename.concat dir fn in
match Unix.lstat fn with
| { st_kind = S_DIR; _ } -> loop fn
| _ -> unlink_operation fn);
Unix.rmdir dir
in
fun t ->
if not (is_managed t) then (
Exn.code_error "Path.rm_rf called on external dir"
["t", to_sexp t]
);
let fn = to_string t in
match Unix.lstat fn with
| exception Unix.Unix_error(ENOENT, _, _) -> ()
| _ -> loop fn
let mkdir_p = function
| External s -> External.mkdir_p s
| In_source_tree s ->
Local.mkdir_p s
| In_build_dir k ->
Kind.mkdir_p (Kind.append_local (Lazy.force build_dir_kind) k)
let compare x y =
match x, y with
| External x , External y -> External.compare_val x y
| External _ , _ -> Lt
| _ , External _ -> Gt
| In_source_tree x, In_source_tree y -> Local.compare_val x y
| In_source_tree _, _ -> Lt
| _ , In_source_tree _ -> Gt
| In_build_dir x , In_build_dir y -> Local.compare_val x y
let extension t =
match t with
| External t -> External.extension t
| In_build_dir t | In_source_tree t -> Local.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 = Local.split_extension t in
(in_build_dir t, ext)
| In_source_tree t ->
let t, ext = Local.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 (Local.set_extension t ~ext)
| In_source_tree t -> in_source_tree (Local.set_extension t ~ext)
let pp ppf t = Format.pp_print_string ppf (to_string_maybe_quoted t)
let pp_in_source ppf t =
pp ppf (drop_optional_build_context t)
let pp_debug ppf = function
| In_source_tree s ->
Format.fprintf ppf "(In_source_tree %S)" (Local.to_string s)
| In_build_dir s ->
Format.fprintf ppf "(In_build_dir %S)" (Local.to_string s)
| External s -> Format.fprintf ppf "(External %S)" (External.to_string s)
module Set = struct
include Set.Make(T)
let to_sexp t = Sexp.Encoder.(list to_sexp) (to_list t)
let of_string_set ss ~f =
String.Set.to_list ss
|> List.map ~f
|> of_list
end
let in_source s = in_source_tree (Local.of_string s)
let is_suffix p ~suffix =
match p with
| In_build_dir l
| In_source_tree l -> Local.is_suffix l ~suffix
| External p -> External.is_suffix p ~suffix
module Table = Hashtbl.Make(T)
module Internal = struct
let raw_kind = function
| In_build_dir l -> Kind.Local l
| In_source_tree l -> Local l
| External l -> External l
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 -> l
| In_build_dir l -> l
let stat t = Unix.stat (to_string t)