Source file Config_option.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
module Error = struct
type t =
| Bad_value of string * string
| Malformed of string
| Misplaced of string * string
| Unknown of string * [`Msg of string] option
| Version_mismatch of {read: string; installed: string}
let to_string = function
| Malformed line -> Format.sprintf "Invalid format %S" line
| Misplaced (name, _) -> Format.sprintf "%s not allowed here" name
| Unknown (name, None) -> Format.sprintf "Unknown option %S" name
| Unknown (name, Some (`Msg msg)) ->
Format.sprintf "Unknown option %S: %s" name msg
| Bad_value (name, msg) -> Format.sprintf "For option %S: %s" name msg
| Version_mismatch {read; installed} ->
Format.sprintf
"Project should be formatted using ocamlformat version %S, but \
the installed version is %S"
read installed
end
module type CONFIG = sig
type config
val profile_option_names : string list
val warn : config -> ('a, Format.formatter, unit, unit) format4 -> 'a
end
module Make (C : CONFIG) = struct
open Cmdliner
type config = C.config
type kind = Formatting | Operational
type parsed_from = [`File of Fpath.t * int | `Attribute]
type updated_from = [`Env | `Commandline | `Parsed of parsed_from]
type from =
[ `Default
| `Profile of string * updated_from
| `Updated of updated_from * from option
]
type deprecated = {dmsg: string; dversion: Version.t}
type removed = {rmsg: string; rversion: Version.t}
type status = [`Valid | `Deprecated of deprecated | `Removed of removed]
type 'a t =
{ names: string list
; parse: string -> ('a, [`Msg of string]) Result.t
; update: config -> 'a -> config
; allow_inline: bool
; cmdline_get: unit -> 'a option
; to_string: 'a -> string
; default: 'a
; get_value: config -> 'a
; from: from
; status: status }
type 'a option_decl =
names:string list
-> doc:string
-> kind:kind
-> ?allow_inline:bool
-> ?status:[`Valid | `Deprecated of deprecated]
-> (config -> 'a -> config)
-> (config -> 'a)
-> 'a t
type pack = Pack : 'a t -> pack
let store = ref []
let deprecated ~since:dversion dmsg = {dmsg; dversion}
let removed ~since:rversion rmsg = {rmsg; rversion}
let in_attributes cond = function
| Operational -> ""
| Formatting -> if cond then "" else " Cannot be set in attributes."
let maybe_empty = function "" -> "" | x -> " " ^ x
let pp_deprecated ppf {dmsg; dversion= v} =
Format.fprintf ppf "This option is deprecated since version %a.%s"
Version.pp v (maybe_empty dmsg)
let pp_removed ppf {rmsg; rversion= v} =
Format.fprintf ppf "This option has been removed in version %a.%s"
Version.pp v (maybe_empty rmsg)
let pp_from_src fs = function
| `Parsed (`File (p, i)) ->
Format.fprintf fs " (file %s:%i)"
(Fpath.to_string ~relativize:true p)
i
| `Parsed `Attribute -> Format.fprintf fs " (attribute)"
| `Env -> Format.fprintf fs " (environment variable)"
| `Commandline -> Format.fprintf fs " (command line)"
let rec pp_from fs = function
| `Default -> ()
| `Profile (s, p) -> Format.fprintf fs " (profile %s%a)" s pp_from_src p
| `Updated (x, None) -> pp_from_src fs x
| `Updated (x, Some r) ->
Format.fprintf fs "%a -- Warning (redundant): %a" pp_from_src x
pp_from r
let status_doc ppf = function
| `Valid -> ()
| `Deprecated x -> Format.fprintf ppf " Warning: %a" pp_deprecated x
| `Removed _ -> ()
let generated_flag_doc ~allow_inline ~doc ~kind ~default ~status =
let default = if default then "set" else "unset" in
Format.asprintf "%s The flag is $(b,%s) by default.%s%a" doc default
(in_attributes allow_inline kind)
status_doc status
let generated_doc conv ~allow_inline ~doc ~kind ~default ~status =
let default_doc = Format.asprintf "%a" (Arg.conv_printer conv) default in
let default =
if String.is_empty default_doc then "none" else default_doc
in
Format.asprintf "%s The default value is $(b,%s).%s%a" doc default
(in_attributes allow_inline kind)
status_doc status
let section_name kind status =
match status with
| `Valid -> (
match kind with
| Formatting -> Cmdliner.Manpage.s_options ^ " (CODE FORMATTING STYLE)"
| Operational -> Cmdliner.Manpage.s_options )
| `Deprecated _ -> Cmdliner.Manpage.s_options ^ " (DEPRECATED)"
| `Removed _ -> Cmdliner.Manpage.s_options ^ " (REMOVED)"
let from = `Default
let longest =
let compare x y = compare (String.length x) (String.length y) in
List.max_elt ~compare
let map_status : [`Valid | `Deprecated of deprecated] -> status = function
| `Valid -> `Valid
| `Deprecated x -> `Deprecated x
let flag ~default ~names ~doc ~kind
?(allow_inline = Poly.(kind = Formatting)) ?(status = `Valid) update
get_value =
let open Cmdliner in
let invert_names =
List.filter_map names ~f:(fun n ->
if String.length n = 1 then None else Some ("no-" ^ n) )
in
let doc = generated_flag_doc ~allow_inline ~doc ~kind ~default ~status in
let invert_doc = "Unset $(b," ^ List.last_exn names ^ ")." in
let docs = section_name kind status in
let term =
Arg.(
value
& vflag None
[ (Some true, info names ~doc ~docs)
; (Some false, info invert_names ~doc:invert_doc ~docs) ] )
in
let parse = Arg.conv_parser Arg.bool in
let r = mk ~default:None term in
let to_string = Bool.to_string in
let cmdline_get () = !r in
let opt =
{ names
; parse
; update
; cmdline_get
; allow_inline
; default
; to_string
; get_value
; from
; status= map_status status }
in
store := Pack opt :: !store ;
opt
let any converter ~default ~docv ~names ~doc ~kind
?(allow_inline = Poly.(kind = Formatting)) ?(status = `Valid) update
get_value =
let open Cmdliner in
let doc =
generated_doc converter ~allow_inline ~doc ~kind ~default ~status
in
let docs = section_name kind status in
let term =
Arg.(value & opt (some converter) None & info names ~doc ~docs ~docv)
in
let parse = Arg.conv_parser converter in
let r = mk ~default:None term in
let to_string = Format.asprintf "%a%!" (Arg.conv_printer converter) in
let cmdline_get () = !r in
let opt =
{ names
; parse
; update
; cmdline_get
; allow_inline
; default
; to_string
; get_value
; from
; status= map_status status }
in
store := Pack opt :: !store ;
opt
module Value = struct
type 'a t = string * 'a * string * [`Valid | `Deprecated of deprecated]
let make ?deprecated ~name value doc =
match deprecated with
| None -> (name, value, doc, `Valid)
| Some x -> (name, value, doc, `Deprecated x)
let pp_deprecated s ppf {dmsg= msg; dversion= v} =
Format.fprintf ppf "Value `%s` is deprecated since version %a. %s" s
Version.pp v msg
let pp_deprecated_with_name ~opt ~val_ ppf {dmsg= msg; dversion= v} =
Format.fprintf ppf
"option `%s`: value `%s` is deprecated since version %a. %s" opt val_
Version.pp v msg
let status_doc s ppf = function
| `Valid -> ()
| `Deprecated x ->
Format.fprintf ppf " Warning: %a" (pp_deprecated s) x
let warn_if_deprecated conf opt (s, _, _, status) =
match status with
| `Valid -> ()
| `Deprecated d ->
C.warn conf "%a" (pp_deprecated_with_name ~opt ~val_:s) d
end
module Value_removed = struct
type t = {name: string; version: Version.t; msg: string}
let make ~name ~since ~msg = {name; version= since; msg}
let make_list ~names ~since ~msg =
List.map names ~f:(fun name -> make ~name ~since ~msg)
let add_parse_errors values conv =
let parse s =
match List.find values ~f:(fun {name; _} -> String.equal name s) with
| Some {name; version; msg} ->
Format.kasprintf
(fun s -> Error (`Msg s))
"value `%s` has been removed in version %a.%s" name Version.pp
version (maybe_empty msg)
| None -> Arg.conv_parser conv s
in
Arg.conv (parse, Arg.conv_printer conv)
end
let choice ~all ?(removed_values = []) ~names ~doc ~kind
?(allow_inline = Poly.(kind = Formatting)) ?status update =
let _, default, _, _ = List.hd_exn all in
let name = Option.value_exn (longest names) in
let opt_names = List.map all ~f:(fun (x, y, _, _) -> (x, y)) in
let conv =
Value_removed.add_parse_errors removed_values (Arg.enum opt_names)
in
let doc =
let open Format in
asprintf "%s %a" doc
(pp_print_list
~pp_sep:(fun fs () -> fprintf fs "@,")
(fun fs (s, _, d, st) ->
fprintf fs "%s%a" d (Value.status_doc s) st ) )
all
in
let docv =
let open Format in
asprintf "@[<1>{%a}@]"
(pp_print_list
~pp_sep:(fun fs () -> fprintf fs "@,|")
(fun fs (v, _, _, _) -> fprintf fs "%s" v) )
all
in
let update conf x =
( match List.find all ~f:(fun (_, v, _, _) -> Poly.(x = v)) with
| Some value -> Value.warn_if_deprecated conf name value
| None -> () ) ;
update conf x
in
any conv ~default ~docv ~names ~doc ~kind ~allow_inline ?status update
let removed_option ~names ~since ~msg =
let removed = {rversion= since; rmsg= msg} in
let status = `Removed removed in
let msg = Format.asprintf "%a" pp_removed removed in
let parse _ = Error (`Msg msg) in
let converter = Arg.conv (parse, fun _ () -> ()) in
let update conf _ = conf and get_value _ = () in
let kind = Formatting in
let docs = section_name kind status in
let term =
Arg.(value & opt (some converter) None & info names ~doc:msg ~docs)
in
let r = mk ~default:None term in
let to_string _ = "" in
let cmdline_get () = !r in
let opt =
{ names
; parse
; update
; cmdline_get
; allow_inline= true
; default= ()
; to_string
; get_value
; from
; status }
in
store := Pack opt :: !store
let update_from config name from redundant =
let is_profile_option_name x =
List.exists C.profile_option_names ~f:(String.equal x)
in
let on_pack (Pack {names; get_value; to_string; _}) =
if is_profile_option_name (List.hd_exn names) then
Some (to_string (get_value config))
else None
in
let on_pack (Pack ({names; status; _} as p)) =
if is_profile_option_name name then
if is_profile_option_name (List.hd_exn names) then
Pack {p with from= `Updated (from, redundant)}
else
let profile_name = List.find_map_exn !store ~f:on_pack in
Pack {p with from= `Profile (profile_name, from)}
else if List.exists names ~f:(String.equal name) then (
( match status with
| `Deprecated d -> C.warn config "%s: %a" name pp_deprecated d
| _ -> () ) ;
Pack {p with from= `Updated (from, redundant)} )
else Pack p
in
store := List.map !store ~f:on_pack
let update ~config ~from:new_from ~name ~value ~inline =
List.find_map !store
~f:(fun
(Pack
{ names
; parse
; update
; allow_inline
; from
; get_value
; to_string
; _ } )
->
if List.exists names ~f:(String.equal name) then
if inline && not allow_inline then
Some (Error (Error.Misplaced (name, value)))
else
match parse value with
| Ok packed_value ->
let new_config = update config packed_value in
let redundant =
match from with
| `Profile _ ->
let old_value = to_string @@ get_value config in
let new_value = to_string @@ get_value new_config in
if String.equal old_value new_value then Some from
else None
| _ -> None
in
update_from new_config name new_from redundant ;
Some (Ok new_config)
| Error (`Msg error) ->
Some (Error (Error.Bad_value (name, error)))
else
match
List.find names ~f:(fun x -> String.equal ("no-" ^ x) name)
with
| Some valid_name ->
let error =
Format.sprintf
"%S is the short form for \"%s=false\". It is only \
accepted on command line, please use \"%s=false\" or \
\"%s=true\" instead."
name valid_name valid_name valid_name
in
Some (Error (Error.Unknown (name, Some (`Msg error))))
| None -> None )
|> Option.value ~default:(Error (Error.Unknown (name, None)))
let default {default; _} = default
let update_using_cmdline config =
let on_pack config (Pack {cmdline_get; update; names; _}) =
match cmdline_get () with
| None -> config
| Some x ->
let config = update config x in
update_from config (List.hd_exn names) `Commandline None ;
config
in
List.fold !store ~init:config ~f:on_pack
let print_config c =
let on_pack (Pack {names; to_string; get_value; from; status; _}) =
let name = Option.value_exn (longest names) in
let value = to_string (get_value c) in
match status with
| `Valid | `Deprecated _ ->
Format.eprintf "%s=%s%a\n%!" name value pp_from from
| `Removed _ -> ()
in
List.iter !store ~f:on_pack
end