-
Notifications
You must be signed in to change notification settings - Fork 371
/
Copy pathopamEnv.ml
1444 lines (1355 loc) · 50.7 KB
/
opamEnv.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
(**************************************************************************)
(* *)
(* Copyright 2012-2020 OCamlPro *)
(* Copyright 2012 INRIA *)
(* *)
(* All rights reserved. This file is distributed under the terms of the *)
(* GNU Lesser General Public License version 2.1, with the special *)
(* exception on linking described in the file LICENSE. *)
(* *)
(**************************************************************************)
open OpamTypes
open OpamStateTypes
open OpamTypesBase
open OpamStd.Op
open OpamFilename.Op
let log fmt = OpamConsole.log "ENV" fmt
let slog = OpamConsole.slog
(* Path format & separator handling *)
let default_separator = if Sys.win32 then SSemiColon else SColon
let default_format = Target
(* Predefined default separators and format for some environment variables *)
let default_sep_fmt_str var =
match String.uppercase_ascii var with
| "PATH" when Sys.win32 ->
SSemiColon, Target_quoted
| "MANPATH" ->
SColon, Host
| _ -> default_separator, default_format
let default_sep_fmt var = default_sep_fmt_str (OpamStd.Env.Name.to_string var)
(* sepfmt argument:
- None: no rewrite
- Some None: rewrite with defaults for given variable
- Some (Some (separator, path_format): use given separator & path format
*)
type sep_path_format = [
| `norewrite (* not a path, rewrite *)
| `rewrite_default of string (* path, default of variable *)
| `rewrite of separator * path_format (* path, rewrite using sep & fmt *)
]
type transform = {
tr_entry: string; (* Entry (directory) in native, normalised form *)
tr_raw: string; (* Actual string to put into the final variable *)
tr_sep: char; (* Separator to use if (and only if) any entries follow *)
}
let transform_format ~(sepfmt:sep_path_format) var =
match sepfmt with
| `norewrite ->
fun arg ->
{ tr_entry = arg;
tr_raw = arg;
tr_sep = OpamTypesBase.char_of_separator (fst (default_sep_fmt var));
}
| (`rewrite_default _ | `rewrite _) as sepfmt ->
let separator, format =
match sepfmt with
| `rewrite_default var -> default_sep_fmt_str var
| `rewrite (sep, fmt) -> sep, fmt
in
let translate =
match format with
| Target | Target_quoted ->
(match sepfmt with
| `rewrite_default _ -> fun x -> x
| `rewrite _ -> OpamSystem.forward_to_back)
| Host | Host_quoted ->
(* noop on non windows *)
(Lazy.force OpamSystem.get_cygpath_path_transform) ~pathlist:false
in
let separator = OpamTypesBase.char_of_separator separator in
match format with
| Target | Host ->
fun arg ->
let path = translate arg in
{ tr_entry = path;
tr_raw = path;
tr_sep = separator;
}
| Target_quoted | Host_quoted ->
fun arg ->
let path = translate arg in
let quoted_path =
if String.contains path separator then
"\""^path^"\"" else path
in
{ tr_entry = path;
tr_raw = quoted_path;
tr_sep = separator;
}
let resolve_separator_and_format :
type r. (r, 'a) env_update -> (spf_resolved, 'a) env_update =
let env fv =
let fv = OpamVariable.Full.variable fv in
OpamStd.Option.(Op.(
of_Not_found
(OpamStd.List.assoc OpamVariable.equal fv)
OpamSysPoll.variables >>= Lazy.force))
in
let resolve var to_str formula =
let evaluated =
OpamFormula.map (fun (x, filter) ->
let eval = OpamFilter.eval_to_bool ~default:false env filter in
if eval then Atom (x, FBool true) else Empty)
formula
|> OpamFormula.map_formula (function
| Block x -> x
| x -> x)
in
match evaluated with
| Empty -> None
| Atom (x, FBool true) -> Some x
| _ ->
let sep, pfmt = default_sep_fmt_str var in
OpamConsole.error
"Formula can't be completely resolved : %s %s. Using default '%c' '%s'."
var
(OpamFormula.string_of_formula (fun (s, f) ->
"\""^to_str s ^ "\" " ^
OpamFilter.to_string f) formula)
(char_of_separator sep)
(string_of_path_format pfmt);
None
in
fun upd ->
let var = upd.envu_var in
let envu_rewrite =
match upd.envu_rewrite with
| Some (SPF_Unresolved (sep_f, pfmt_f)) ->
let def_sep, def_pfmt = default_sep_fmt_str var in
let sep =
resolve upd.envu_var
(fun sep -> String.make 1 (char_of_separator sep))
sep_f
in
let pfmt =
resolve upd.envu_var string_of_path_format pfmt_f
in
let sep_pfmt =
match sep, pfmt with
| Some sep, Some pfmt -> Some (sep, pfmt)
| Some sep, None -> Some (sep, def_pfmt)
| None, Some pfmt -> Some (def_sep, pfmt)
| None, None -> None
in
Some (SPF_Resolved (sep_pfmt))
| Some (SPF_Resolved _) -> upd.envu_rewrite
| None -> None
in
{ upd with envu_rewrite }
let split_path_variable path sep =
let length = String.length path in
let rec f acc index current current_raw last normal =
if (index : int) = length then
let final = String.sub path last (index - last) in
let current = current ^ final in
let current_raw = current_raw ^ final in
let elem = {tr_entry = current; tr_raw = current_raw; tr_sep = sep } in
List.rev (elem::acc)
else
let c = path.[index]
and next = succ index in
if c = sep && normal || c = '"' then
let segment = String.sub path last (index - last) in
let current = current ^ segment in
let current_raw = current_raw ^ segment in
let elem = {tr_entry = current; tr_raw = current_raw; tr_sep = sep } in
if c = '"' then
f acc next current (current_raw ^ "\"") next (not normal)
else if (next : int) = length then (* path ends with a separator *)
let empty = { tr_entry = ""; tr_raw = ""; tr_sep = sep } in
List.rev (empty::elem::acc)
else (* c = sep; text follows *)
f (elem::acc) next "" "" next true
else
f acc next current current_raw last normal
in
f [] 0 "" "" 0 true
(* - Environment and updates handling - *)
let split_var ~(sepfmt:sep_path_format) var value =
match sepfmt with
| `norewrite ->
let sep = char_of_separator (fst (default_sep_fmt var)) in
List.map (fun s ->
{ tr_entry = s; tr_raw = s; tr_sep = sep})
(OpamStd.String.split_delim value sep)
| (`rewrite_default _ | `rewrite _) as sepfmt ->
let separator, format =
match sepfmt with
| `rewrite_default var -> default_sep_fmt_str var
| `rewrite (sep, fmt) -> sep, fmt
in
let sep = OpamTypesBase.char_of_separator separator in
if (value : string) = String.make 1 sep then
[{ tr_entry = ""; tr_raw = value; tr_sep = sep }]
else
match format with
| Target | Host ->
List.map (fun s ->
{ tr_entry = s; tr_raw = s; tr_sep = sep})
(OpamStd.String.split_delim value sep)
| Target_quoted | Host_quoted ->
split_path_variable value sep
(* Auxiliaries for join_var - cf. String.concat *)
let rec sum_lengths acc = function
| [{ tr_raw = raw; _}] -> acc + String.length raw
| { tr_raw = raw; _}::tl -> sum_lengths (acc + String.length raw + 1) tl
| [] -> acc (* semantically unreachable *)
let rec unsafe_blits dst pos = function
| [] ->
Bytes.unsafe_to_string dst
| [{ tr_raw = raw; _}] ->
String.unsafe_blit raw 0 dst pos (String.length raw);
Bytes.unsafe_to_string dst
| { tr_raw = raw; tr_sep = sep; _}::tl ->
let length = String.length raw in
String.unsafe_blit raw 0 dst pos length;
Bytes.unsafe_set dst (pos + length) sep;
unsafe_blits dst (pos + length + 1) tl
let join_var values =
if values = [] then "" else
unsafe_blits (Bytes.create (sum_lengths 0 values)) 0 values
let separator_char_for ~sepfmt var =
let (separator, _) =
match sepfmt with
| `norewrite -> default_sep_fmt var
| `rewrite_default var -> default_sep_fmt_str var
| `rewrite spf -> spf
in
OpamTypesBase.char_of_separator separator
(* To allow in-place updates, we store intermediate values of path-like as a
pair of list [(rl1, l2)] such that the value is [List.rev_append rl1 l2] and
the place where the new value should be inserted is in front of [l2] *)
let unzip_to ~sepfmt var elt current =
(* If [r = l @ rs] then [remove_prefix l r] is [Some rs], otherwise [None] *)
let rec remove_prefix l r =
match l, r with
| {tr_entry = l; _}::ls, { tr_entry = r; _}::rs when l = r ->
remove_prefix ls rs
| ([], rs) -> Some rs
| _ -> None
in
(* Split elt if necessary *)
let elts =
if String.equal elt "" then
[{ tr_entry = ""; tr_raw = "";
tr_sep = separator_char_for ~sepfmt var }]
else
match sepfmt with
| `norewrite ->
(* Given FOO += "<value1><sep><value2>", then even with
`norewrite it is necessary to split the value as FOO itself
will have been split - i.e. if we don't split elt here then
it cannot be reverted if it contains multiple directories
(which would regression #4861) *)
let sepfmt = `rewrite_default (var :> string) in
split_var ~sepfmt var elt
| `rewrite_default _ ->
(* If no rewrite has been specified at all, then split elt as,
again, #4861 would be regressed otherwise. *)
split_var ~sepfmt var elt
| `rewrite _ ->
(* If a rewrite rule _is_ in effect, then opam 2.2's limited
(but compatible) semantics for setenv and build-env mean that
we're _assuming_ that elt only contains a single path. This
should be addressed in opam 3.0 by having a somewhat richer
syntax for environment changes to make clear the "type" of
the value in FOO += "bar". *)
[{ tr_entry = elt; tr_raw = elt;
tr_sep = separator_char_for ~sepfmt var }]
in
match elts with
| [] -> invalid_arg "OpamEnv.unzip_to"
| { tr_entry = hd; _}::tl ->
let rec aux acc = function
| [] -> None
| ({ tr_entry = x; _} as v)::r ->
if String.equal x hd then
match remove_prefix tl r with
| Some r -> Some (acc, r)
| None -> aux (v::acc) r
else aux (v::acc) r
in
aux [] current
let rezip ?insert (l1, l2) =
List.rev_append l1 (match insert with None -> l2 | Some i -> i::l2)
let rezip_to_string ?insert z =
join_var (rezip ?insert z)
let cygwin_non_shadowed_programs =
[ "bash.exe"; "make.exe"; "sort.exe"; "tar.exe";
"install.exe"; (* from Vim for Windows *)
]
let apply_op_zip ~sepfmt var op arg (rl1,l2 as zip) =
let arg = transform_format ~sepfmt var arg in
let empty_tr = { tr_entry = ""; tr_raw = ""; tr_sep = arg.tr_sep } in
let cygwin path =
let contains_in {tr_entry = dir; _} item =
Sys.file_exists (Filename.concat dir item)
in
let shadow_list =
List.filter (contains_in arg) ("git.exe" :: cygwin_non_shadowed_programs)
in
let rec loop acc = function
| [] -> acc, [arg]
| (d::rest) as suffix ->
if List.exists (contains_in d) shadow_list then
acc, arg::suffix
else
loop (d::acc) rest
in
loop [] path
in
match op with
| Eq ->
(* Existing zip discarded - new value to l2; no prefix *)
[], [arg]
| PlusEq ->
(* New value goes at head of existing list; no prefix *)
begin match rezip zip with
| [{ tr_entry = ""; tr_raw = raw; _}] ->
if raw = "" then
[], [arg]
else
[], [arg; empty_tr]
| zip -> [], arg::zip
end
| EqPlus ->
(* NB List.rev_append l2 rl1 is equivalent to
List.rev (List.rev_append rl1 l2)
Place new value at the end *)
begin match List.rev_append l2 rl1 with
| [{ tr_entry = ""; tr_raw = raw; _}] ->
if raw = "" then
[], [arg]
else
[], [empty_tr; arg]
| zip -> zip, [arg]
end
| Cygwin ->
cygwin (rezip zip)
| EqPlusEq ->
(* Add the value where the last value was reverted (i.e. as PlusEq but
without the rezip) *)
rl1, arg::l2
| ColonEq ->
begin match rezip zip with
| [{ tr_entry = ""; _}] | [] -> (* empty or unset *)
[], [arg; empty_tr]
| ({ tr_entry = ""; _} as lead)::{ tr_entry = ""; _}::([] as zip) ->
(* VAR=':' *)
[], lead::arg::zip
| zip ->
[], arg::zip
end
| EqColon ->
begin match List.rev_append l2 rl1 with
| [{ tr_entry = ""; _}] | [] -> (* empty or unset *)
[], [empty_tr; arg]
| ({ tr_entry = ""; _} as lead)::{ tr_entry = ""; _}::([] as zip) ->
(* VAR=':' *)
[], List.rev (lead::arg::zip)
| zip ->
[], List.rev (arg::zip)
end
(** Undoes previous updates done by opam, useful for not duplicating already
done updates; this is obviously not perfect, as all operators are not
reversible.
[cur_value] is provided as a list split at path_sep.
None is returned if the revert doesn't match. Otherwise, a zip (pair of lists
[(preceding_elements_reverted, following_elements)]) is returned, to keep the
position of the matching element and allow [=+=] to be applied later. A pair
or empty lists is returned if the variable should be unset or has an unknown
previous value. *)
let reverse_env_update ~sepfmt var op arg cur_value =
let { tr_entry = arg; _} = transform_format ~sepfmt var arg in
if String.equal arg "" && op <> Eq then None else
match op with
| Eq ->
if arg = join_var cur_value
then Some ([],[]) else None
| PlusEq | EqPlusEq -> unzip_to var ~sepfmt arg cur_value
| EqPlus | Cygwin ->
(match unzip_to ~sepfmt var arg (List.rev cur_value) with
| None -> None
| Some (rl1, l2) -> Some (l2, List.rev rl1))
| ColonEq ->
(match unzip_to var ~sepfmt arg cur_value with
| Some ([], [{ tr_entry = ""; _}]) -> Some ([], [])
| r -> r)
| EqColon ->
(match unzip_to ~sepfmt var arg (List.rev cur_value) with
| Some ([], [{ tr_entry = ""; _}]) -> Some ([], [])
| Some (rl1, l2) -> Some (l2, List.rev rl1)
| None -> None)
let map_update_names env_keys updates =
let convert upd =
let { envu_var = k; _ } = upd in
let k =
try
let k = OpamStd.Env.Name.of_string k in
(OpamStd.Env.Name.(Set.find (equal k) env_keys) :> string)
with Not_found -> k
in
{ upd with envu_var = k }
in
List.map convert updates
let global_env_keys = lazy (
OpamStd.Env.list ()
|> List.map fst
|> OpamStd.Env.Name.Set.of_list)
let updates_from_previous_instance = lazy (
let get_env env_file =
OpamStd.Option.map
(map_update_names (Lazy.force global_env_keys))
(OpamFile.Environment.read_opt env_file)
in
let open OpamStd.Option.Op in
(OpamStd.Env.getopt "OPAM_LAST_ENV"
>>= fun env_file ->
try
OpamFilename.of_string env_file
|> OpamFile.make
|> get_env
with e -> OpamStd.Exn.fatal e; None)
>>+ (fun () ->
OpamStd.Env.getopt "OPAM_SWITCH_PREFIX"
>>= fun pfx ->
let env_file =
OpamPath.Switch.env_relative_to_prefix (OpamFilename.Dir.of_string pfx)
in
try get_env env_file
with e -> OpamStd.Exn.fatal e; None))
let expand updates =
let updates =
if Sys.win32 then
(* Preserve the case of updates which are already in env *)
map_update_names (Lazy.force global_env_keys) updates
else
updates
in
let pick_assoc3 eq x l =
let rec aux acc = function
| [] -> None, l
| (k,v,_) as b::r ->
if eq k x then Some v, List.rev_append acc r
else aux (b::acc) r
in
aux [] l
in
(* Reverse all previous updates, in reverse order, on current environment *)
let reverts =
match Lazy.force updates_from_previous_instance with
| None -> []
| Some updates ->
List.fold_right (fun upd defs0 ->
let { envu_var = var; envu_op = op; envu_value = arg;
envu_rewrite; _} = upd
in
let sepfmt =
match envu_rewrite with
| None -> `norewrite
| Some (SPF_Resolved None) -> `rewrite_default var
| Some (SPF_Resolved (Some spf)) -> `rewrite spf
in
let var = OpamStd.Env.Name.of_string var in
let v_opt, defs =
pick_assoc3 OpamStd.Env.Name.equal var defs0
in
let v =
match Option.map rezip v_opt with
| Some v -> v
| None ->
OpamStd.Option.map_default (split_var ~sepfmt var) []
(OpamStd.Env.getopt (var :> string))
in
match reverse_env_update ~sepfmt var op arg v with
| Some v -> (var, v, sepfmt)::defs
| None -> defs0)
updates []
in
(* OPAM_LAST_ENV and OPAM_SWITCH_PREFIX must be reverted if they were set *)
let reverts =
if OpamStd.Env.getopt "OPAM_LAST_ENV" <> None then
(OpamStd.Env.Name.of_string "OPAM_LAST_ENV", ([], []),
`rewrite_default "OPAM_LAST_ENV")
::reverts
else
reverts
in
let reverts =
if OpamStd.Env.getopt "OPAM_SWITCH_PREFIX" <> None then
(OpamStd.Env.Name.of_string "OPAM_SWITCH_PREFIX", ([], []),
`rewrite_default "OPAM_SWITCH_PREFIX")
::reverts
else
reverts
in
(* And apply the new ones *)
let rec apply_updates reverts acc lst =
match lst with
| upd :: updates ->
let { envu_var = svar; envu_op = op;
envu_value = arg; envu_comment = doc;
envu_rewrite } = upd
in
let sepfmt =
match envu_rewrite with
| None -> `norewrite
| Some (SPF_Resolved None) -> `rewrite_default svar
| Some (SPF_Resolved (Some spf)) -> `rewrite spf
in
let var = OpamStd.Env.Name.of_string svar in
let zip, reverts =
match OpamStd.List.find_opt (fun (v, _, _, _) ->
OpamStd.Env.Name.equal var v) acc with
| Some (_, z, _doc, _) -> z, reverts
| None ->
match pick_assoc3 OpamStd.Env.Name.equal var reverts with
| Some z, reverts -> z, reverts
| None, _ ->
match OpamStd.Env.getopt svar with
| Some s -> ([], split_var var s ~sepfmt), reverts
| None -> ([], []), reverts
in
let acc =
if String.equal arg "" && op <> Eq then acc else
((var, apply_op_zip ~sepfmt var op arg zip, doc, sepfmt)
:: acc)
in
apply_updates
reverts
acc
updates
| [] ->
List.rev
@@ List.rev_append
(List.rev_map (fun (var, z, doc, _sepfmt) ->
var, rezip_to_string z, doc) acc)
@@ List.rev_map (fun (var, z, _sepfmt) ->
var, rezip_to_string z,
Some "Reverting previous opam update")
reverts
in
apply_updates reverts [] updates
let add (env: env) updates : env =
let updates =
if Sys.win32 then
(* Preserve the case of updates which are already in env *)
map_update_names (OpamStd.Env.Name.Set.of_list
(List.map (fun (k, _, _) -> k) env)) updates
else
updates
in
let updates = expand updates in
let update_keys =
List.fold_left (fun m (var, _, _) ->
OpamStd.Env.Name.(Set.add var m))
OpamStd.Env.Name.Set.empty updates
in
let env =
List.filter (fun (k,_,_) ->
not (OpamStd.Env.Name.Set.mem k update_keys))
env
in
env @ updates
let env_expansion ?opam st upd =
let fenv v =
try OpamPackageVar.resolve st ?opam v
with Not_found ->
log "Undefined variable: %s" (OpamVariable.Full.to_string v);
None
in
let s =
OpamFilter.expand_string ~default:(fun _ -> "") fenv upd.envu_value
in
{ upd with envu_value = s }
(* [env_update_resolved_with_default] creates an environment update with a fully
evaluated rewrite rule. It's used internally because the updates in question
are single directories only, which means that the update will then never be
subject to splitting in [unzip_to] *)
let env_update_resolved_with_default ?comment var =
let rewrite = Some (SPF_Resolved (Some (default_sep_fmt_str var))) in
env_update_resolved ?comment ~rewrite var
let compute_updates ?(force_path=false) st =
(* Todo: put these back into their packages!
let perl5 = OpamPackage.Name.of_string "perl5" in
let add_to_perl5lib = OpamPath.Switch.lib t.root t.switch t.switch_config perl5 in
let new_perl5lib = "PERL5LIB", "+=", OpamFilename.Dir.to_string add_to_perl5lib in
*)
let bindir =
OpamPath.Switch.bin st.switch_global.root st.switch st.switch_config
in
let path =
env_update_resolved_with_default "PATH"
(if force_path then PlusEq else EqPlusEq)
(OpamFilename.Dir.to_string bindir)
~comment:("Binary dir for opam switch "^OpamSwitch.to_string st.switch)
in
let man_path =
let open OpamStd.Sys in
match os () with
| OpenBSD | NetBSD | FreeBSD | Darwin | DragonFly ->
[] (* MANPATH is a global override on those, so disabled for now *)
| _ ->
[ env_update_resolved_with_default "MANPATH" EqColon
(OpamFilename.Dir.to_string
(OpamPath.Switch.man_dir st.switch_global.root
st.switch st.switch_config))
~comment:"Current opam switch man dir"
]
in
let switch_env =
(env_update_resolved_with_default "OPAM_SWITCH_PREFIX" Eq
(OpamFilename.Dir.to_string
(OpamPath.Switch.root st.switch_global.root st.switch))
~comment:"Prefix of the current opam switch")
::
List.map (env_expansion st) (OpamFile.Switch_config.env st.switch_config)
in
let pkg_env = (* XXX: Does this need a (costly) topological sort? *)
let updates =
OpamPackage.Set.fold (fun nv acc ->
match OpamPackage.Map.find_opt nv st.opams with
| Some opam ->
List.map (env_expansion ~opam st) (OpamFile.OPAM.env opam) @ acc
| None -> acc)
st.installed []
in
List.map resolve_separator_and_format updates
in
switch_env @ pkg_env @ man_path @ [path]
let updates_common ~set_opamroot ~set_opamswitch root switch =
let root =
if set_opamroot then
[ env_update_resolved_with_default "OPAMROOT" Eq
(OpamFilename.Dir.to_string root)
~comment:"Opam root in use" ]
else []
in
let switch =
if set_opamswitch then
[ env_update_resolved_with_default "OPAMSWITCH" Eq
(OpamSwitch.to_string switch) ]
else [] in
root @ switch
let updates ~set_opamroot ~set_opamswitch ?force_path st =
let common =
updates_common ~set_opamroot ~set_opamswitch st.switch_global.root st.switch
in
common @ compute_updates ?force_path st
let get_pure ?(updates=[]) () =
let env = List.map (fun (v,va) -> v,va,None) (OpamStd.Env.list ()) in
add env updates
let get_opam ~set_opamroot ~set_opamswitch ~force_path st =
add [] (updates ~set_opamroot ~set_opamswitch ~force_path st)
let get_opam_raw_updates ~set_opamroot ~set_opamswitch ~force_path root switch =
let env_file = OpamPath.Switch.environment root switch in
let upd = OpamFile.Environment.safe_read env_file in
let upd =
let from_op, to_op =
if force_path then
EqPlusEq, PlusEq
else
PlusEq, EqPlusEq
in
List.map (function
| { envu_var; envu_op; _} as upd when
String.uppercase_ascii envu_var = "PATH" && envu_op = from_op ->
{ upd with envu_op = to_op }
| e -> e) upd
in
updates_common ~set_opamroot ~set_opamswitch root switch @ upd
let get_opam_raw ~set_opamroot ~set_opamswitch ?(base=[]) ~force_path
root switch =
let upd =
get_opam_raw_updates ~set_opamroot ~set_opamswitch ~force_path root switch
in
add base upd
let hash_env_updates upd =
(* Should we use OpamFile.Environment.write_to_string ? cons: it contains
tabulations *)
let to_string { envu_var; envu_op; envu_value; _} =
String.escaped envu_var
^ OpamPrinter.FullPos.env_update_op_kind (raw_of_op envu_op)
^ String.escaped envu_value
in
List.rev_map to_string upd
|> String.concat "\n"
|> Digest.string
|> Digest.to_hex
let get_full
~set_opamroot ~set_opamswitch ~force_path ?updates:(u=[]) ?(scrub=[])
st =
let env =
let env = OpamStd.Env.list () in
let scrub =
let add set elt =
OpamStd.Env.Name.(Set.add (of_string elt) set)
in
List.fold_left add OpamStd.Env.Name.Set.empty scrub
in
List.filter (fun (name, _) -> not (OpamStd.Env.Name.Set.mem name scrub)) env
in
let env0 = List.map (fun (v,va) -> v,va,None) env in
let u =
(List.map resolve_separator_and_format u) in
let updates =
u @ updates ~set_opamroot ~set_opamswitch ~force_path st in
add env0 updates
let is_up_to_date_raw ?(skip=OpamStateConfig.(!r.no_env_notice)) updates =
skip ||
let not_utd =
List.fold_left (fun notutd upd ->
let { envu_var = var; envu_op = op; envu_value = arg;
envu_rewrite; _} = upd in
let sepfmt =
match envu_rewrite with
| None -> `norewrite
| Some (SPF_Resolved None) -> `rewrite_default var
| Some (SPF_Resolved (Some spf)) -> `rewrite spf
in
let var = OpamStd.Env.Name.of_string var in
match OpamStd.Env.getopt_full var with
| _, None -> upd::notutd
| var, Some v ->
if reverse_env_update ~sepfmt var op arg
(split_var ~sepfmt var v) = None then upd::notutd
else List.filter (fun upd ->
not (OpamStd.Env.Name.equal_string var upd.envu_var)) notutd)
[]
updates
in
let r = not_utd = [] in
if not r then
log "Not up-to-date env variables: [%a]"
(slog @@ String.concat " " @* List.map (fun upd -> upd.envu_var)) not_utd
else log "Environment is up-to-date";
r
let is_up_to_date_switch root switch =
let env_file = OpamPath.Switch.environment root switch in
try
match OpamFile.Environment.read_opt env_file with
| Some upd -> is_up_to_date_raw upd
| None -> true
with e -> OpamStd.Exn.fatal e; true
let switch_path_update ~force_path root switch =
let bindir =
OpamPath.Switch.bin root switch
(OpamStateConfig.Switch.safe_load_t
~lock_kind:`Lock_read root switch)
in
[ env_update_resolved_with_default "PATH"
(if force_path then PlusEq else EqPlusEq)
(OpamFilename.Dir.to_string bindir)
~comment:"Current opam switch binary dir" ]
let path ~force_path root switch =
let env = expand (switch_path_update ~force_path root switch) in
let (_, path_value, _) =
List.find (fun (v, _, _) -> OpamStd.Env.Name.equal_string v "PATH") env
in
path_value
let full_with_path ~force_path ?(updates=[]) root switch =
let env0 = List.map (fun (v,va) -> v,va,None) (OpamStd.Env.list ()) in
add env0 (switch_path_update ~force_path root switch @ updates)
let is_up_to_date ?skip st =
is_up_to_date_raw ?skip
(updates ~set_opamroot:false ~set_opamswitch:false ~force_path:false st)
(** Returns shell-appropriate statement to evaluate [cmd]. *)
let shell_eval_invocation shell cmd =
match shell with
| SH_pwsh _ ->
Printf.sprintf "(& %s) -split '\\r?\\n' | ForEach-Object { Invoke-Expression $_ }" cmd
| SH_fish ->
Printf.sprintf "eval (%s)" cmd
| SH_csh ->
Printf.sprintf "eval `%s`" cmd
| SH_cmd ->
Printf.sprintf {|for /f "tokens=*" %%i in ('%s') do @%%i|} cmd
| _ ->
Printf.sprintf "eval $(%s)" cmd
(** Returns if the file path needs to be quoted by any supported {!shell}.
This function does not concern itself with how the file path should be
quoted.
This function treats variable expansions ($) and array expansions for
PowerShell (@) and history expansions (!) as needing quotes.
All other characters come from the following references:
Bash (metacharacter)
https://www.gnu.org/software/bash/manual/html_node/Definitions.html
SPACE TAB | & ; ( ) < >
PowerShell
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_special_characters?view=powershell-5.1
https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.core/about/about_quoting_rules?view=powershell-5.1
SPACE `
Command Prompt
https://ss64.com/nt/syntax-esc.html
SPACE TAB & \ < > ^ | % = ( )
*)
let filepath_needs_quote path =
let f = function
| '$' | '@' | '!'
| ' ' | '\t' | '|' | '&' | ';' | '(' | ')' | '<' | '>'
| '`'
| '\\' | '^' | '%' -> true
| _ -> false
in
OpamCompat.String.exists f path
(** Returns "opam env" invocation string together with optional root and switch
overrides *)
let opam_env_invocation ?root ?switch ?(set_opamswitch=false) shell =
let shell_arg argname pathval =
let quoted = match shell with
| SH_cmd | SH_pwsh _ ->
Printf.sprintf " \"--%s=%s\"" argname
| SH_sh | SH_bash | SH_zsh | SH_csh | SH_fish ->
Printf.sprintf " '--%s=%s'" argname
in
if filepath_needs_quote pathval then
quoted pathval
else
Printf.sprintf " --%s=%s" argname pathval
in
let root = OpamStd.Option.map_default (shell_arg "root") "" root in
let switch = OpamStd.Option.map_default (shell_arg "switch") "" switch in
let setswitch = if set_opamswitch then " --set-switch" else "" in
Printf.sprintf "opam env%s%s%s" root switch setswitch
let eval_string gt ?(set_opamswitch=false) switch =
let root =
let opamroot_cur = OpamFilename.Dir.to_string gt.root in
let opamroot_env =
OpamStd.Option.Op.(
OpamStateConfig.E.root () +!
OpamFilename.Dir.to_string OpamStateConfig.(default.root_dir)
) in
if opamroot_cur <> opamroot_env then
Some opamroot_cur
else
None
in
let switch =
(* Returns the switch only if it is different from the one determined by the
environment *)
let f sw =
let sw_cur = OpamSwitch.to_string sw in
let sw_env =
OpamStd.Option.Op.(
OpamStateConfig.E.switch () ++
(OpamStateConfig.get_current_switch_from_cwd gt.root >>|
OpamSwitch.to_string) ++
(OpamFile.Config.switch gt.config >>| OpamSwitch.to_string)
)
in
if Some sw_cur <> sw_env then Some sw_cur else None
in
OpamStd.Option.replace f switch
in
let shell = OpamStd.Sys.guess_shell_compat () in
shell_eval_invocation shell (opam_env_invocation ?root ?switch ~set_opamswitch shell)
(* -- Shell and init scripts handling -- *)
(** The shells for which we generate init scripts (bash and sh are the same
entry) *)
let shells_list = [ SH_sh; SH_zsh; SH_csh; SH_fish; SH_pwsh Powershell; SH_cmd ]
let complete_file = function
| SH_sh | SH_bash -> Some "complete.sh"
| SH_zsh -> Some "complete.zsh"
| SH_csh | SH_fish | SH_pwsh _ | SH_cmd -> None
let env_hook_file = function
| SH_sh | SH_bash -> Some "env_hook.sh"
| SH_zsh -> Some "env_hook.zsh"
| SH_csh -> Some "env_hook.csh"
| SH_fish -> Some "env_hook.fish"
| SH_pwsh _ | SH_cmd -> None
let variables_file = function
| SH_sh | SH_bash | SH_zsh -> "variables.sh"
| SH_csh -> "variables.csh"
| SH_fish -> "variables.fish"
| SH_pwsh _ -> "variables.ps1"
| SH_cmd -> "variables.cmd"
let init_file = function
| SH_sh | SH_bash -> "init.sh"
| SH_zsh -> "init.zsh"
| SH_csh -> "init.csh"
| SH_fish -> "init.fish"
| SH_pwsh _ -> "init.ps1"
| SH_cmd -> "init.cmd"
let complete_script = function
| SH_sh | SH_bash -> Some OpamScript.complete
| SH_zsh -> Some OpamScript.complete_zsh
| SH_csh | SH_fish -> None
| SH_pwsh _ | SH_cmd -> None
let env_hook_script_base = function
| SH_sh | SH_bash -> Some OpamScript.env_hook
| SH_zsh -> Some OpamScript.env_hook_zsh
| SH_csh -> Some OpamScript.env_hook_csh
| SH_fish -> Some OpamScript.env_hook_fish
| SH_pwsh _ | SH_cmd -> None
let export_in_shell shell =
let make_comment comment_opt =
OpamStd.Option.to_string (Printf.sprintf "# %s\n") comment_opt
in
let sh (k,v,comment) =
Printf.sprintf "%s%s=%s; export %s;\n"
(make_comment comment) k v k in
let csh (k,v,comment) =
Printf.sprintf "%sif ( ! ${?%s} ) setenv %s \"\"\nsetenv %s %s\n"
(make_comment comment) k k k v in
let fish (k,v,comment) =
(* Fish converts some colon-separated vars to arrays, which have to be
treated differently. MANPATH is handled automatically, so better not to
set it at all when not already defined *)
let to_arr_string v =
OpamStd.List.concat_map " "
(fun v ->
if v = Printf.sprintf "\"$%s\"" k then
"$"^k (* remove quotes *)
else v)
(OpamStd.String.split v ':')
in
match k with
| "PATH" ->
Printf.sprintf "%sset -gx %s %s;\n"
(make_comment comment) k (to_arr_string v)
| "MANPATH" ->
Printf.sprintf "%sif [ (count $%s) -gt 0 ]; set -gx %s %s; end;\n"
(make_comment comment) k k (to_arr_string v)
| _ ->
(* Regular string variables *)
Printf.sprintf "%sset -gx %s %s;\n"
(make_comment comment) k v
in
let pwsh (k,v,comment) =
Printf.sprintf "%s$env:%s=%s\n"
(make_comment comment) k v in
let cmd (k,v,comment) =
let make_cmd_comment comment_opt =