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
open! Core
open! Import
include Enum_intf
module Single = struct
module type S = Sexp_of
type 'a t = (module S with type t = 'a)
let command_friendly_name s =
s
|> String.tr ~target:'_' ~replacement:'-'
|> String.lowercase
|> String.filter ~f:(Char.( <> ) '\'')
;;
let atom (type a) (m : a t) a =
let module M = (val m) in
match [%sexp_of: M.t] a with
| Atom s -> s
| List _ as sexp -> raise_s [%sexp "Enum.t expects atomic sexps.", (sexp : Sexp.t)]
;;
let to_string_hum m a = command_friendly_name (atom m a)
let check_field_name t a field =
[%test_eq: string] (to_string_hum t a) (command_friendly_name (Field.name field))
;;
end
type 'a t = (module S with type t = 'a)
let to_string_hum (type a) ((module M) : a t) a = Single.to_string_hum (module M) a
let check_field_name (type a) ((module M) : a t) a field =
Single.check_field_name (module M) a field
;;
let enum (type a) ((module M) : a t) =
List.map M.all ~f:(fun a -> to_string_hum (module M) a, a)
;;
let assert_alphabetic_order_exn here (type a) ((module M) : a t) =
let as_strings = List.map M.all ~f:(Single.atom (module M)) in
[%test_result: string list]
~here:[ here ]
~message:"This enumerable type is intended to be defined in alphabetic order"
~expect:(List.sort as_strings ~compare:String.compare)
as_strings
;;
module Rewrite_sexp_of (S : S) : S with type t = S.t = struct
include S
let sexp_of_t t = to_string_hum (module S) t |> Sexp.of_string
end
let arg_type
(type t)
?case_sensitive
?key
?list_values_in_help
(module S : S with type t = t)
=
Command.Arg_type.enumerated_sexpable
?key
?list_values_in_help
?case_sensitive
(module Rewrite_sexp_of (S))
;;
module Make_param = struct
type 'a t =
{ arg_type : 'a Command.Arg_type.t
; doc : string
}
let create ?key ?represent_choice_with ?list_values_in_help ~doc m =
let doc =
match represent_choice_with with
| None -> " " ^ doc
| Some represent_choice_with -> represent_choice_with ^ " " ^ doc
in
{ arg_type = arg_type ?key ?list_values_in_help m; doc }
;;
end
type ('a, 'b) make_param =
?represent_choice_with:string
-> ?list_values_in_help:bool
-> ?aliases:string list
-> ?key:'a Univ_map.Multi.Key.t
-> string
-> doc:string
-> 'a t
-> 'b Command.Param.t
let make_param
~f
?represent_choice_with
?list_values_in_help
?aliases
?key
flag_name
~doc
m
=
let { Make_param.arg_type; doc } =
Make_param.create ?key ?represent_choice_with ?list_values_in_help ~doc m
in
Command.Param.flag ?aliases flag_name ~doc (f arg_type)
;;
let make_param_optional_with_default_doc
(type a)
~default
?represent_choice_with
?list_values_in_help
?aliases
?key
flag_name
~doc
(m : a t)
=
let { Make_param.arg_type; doc } =
Make_param.create ?key ?represent_choice_with ?list_values_in_help ~doc m
in
Command.Param.flag_optional_with_default_doc
?aliases
flag_name
arg_type
(fun default -> Sexp.Atom (to_string_hum (module (val m)) default))
~default
~doc
;;
let make_param_one_of_flags
?(if_nothing_chosen = Command.Param.If_nothing_chosen.Raise)
?aliases
~doc
m
=
Command.Param.choose_one
~if_nothing_chosen
(List.map (enum m) ~f:(fun (name, enum) ->
let aliases = Option.map aliases ~f:(fun aliases -> aliases enum) in
let doc = doc enum in
Command.Param.flag ?aliases name (Command.Param.no_arg_some enum) ~doc))
;;
module Make_stringable (M : S) = struct
let to_string = to_string_hum (module M)
let of_string =
let known_values =
lazy
(List.fold
[%all: M.t]
~init:(Map.empty (module String))
~f:(fun map t -> Map.set map ~key:(to_string t) ~data:t))
in
fun s ->
match Map.find (force known_values) s with
| None ->
let known_values = Map.keys (force known_values) in
raise_s [%message "Unknown value." s (known_values : string list)]
| Some t -> t
;;
end