forked from rescript-lang/rescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbsb_arg.ml
159 lines (135 loc) · 4.85 KB
/
bsb_arg.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
(* Copyright (C) 2020- Authors of BuckleScript
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* In addition to the permissions granted to you by the LGPL, you may combine
* or link a "work that uses the Library" with a publicly distributed version
* of this file to produce a combined library or application, then distribute
* that combined work under the terms of your choosing, with no requirement
* to comply with the obligations normally placed on you by section 4 of the
* LGPL version 3 (or the corresponding section of a later version of the LGPL
* should you choose to use a later version).
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *)
type key = string
type doc = string
type anon_fun = rev_args:string list -> unit
type string_action =
| String_call of (string -> unit)
| String_set of string ref
type unit_action =
| Unit_call of (unit -> unit)
| Unit_set of bool ref
type spec =
| Unit of unit_action
| String of string_action
exception Bad of string
type error =
| Unknown of string
| Missing of string
type t = (string * spec * string) list
let rec assoc3 (x : string) (l : t) =
match l with
| [] -> None
| (y1, y2, _) :: _ when y1 = x -> Some y2
| _ :: t -> assoc3 x t
;;
let (+>) = Ext_buffer.add_string
let usage_b (buf : Ext_buffer.t) ~usage speclist =
buf +> usage;
buf +> "\nOptions:\n";
let max_col = ref 0 in
Ext_list.iter speclist (fun (key,_,_) ->
if String.length key > !max_col then
max_col := String.length key
);
Ext_list.iter speclist (fun (key,_,doc) ->
if not (Ext_string.starts_with doc "*internal*") then begin
buf +> " ";
buf +> key ;
buf +> (String.make (!max_col - String.length key + 2 ) ' ');
let cur = ref 0 in
let doc_length = String.length doc in
while !cur < doc_length do
match String.index_from_opt doc !cur '\n' with
| None ->
if !cur <> 0 then begin
buf +> "\n";
buf +> String.make (!max_col + 4) ' ' ;
end;
buf +> String.sub doc !cur (String.length doc - !cur );
cur := doc_length
| Some new_line_pos ->
if !cur <> 0 then begin
buf +> "\n";
buf +> String.make (!max_col + 4) ' ' ;
end;
buf +> String.sub doc !cur (new_line_pos - !cur );
cur := new_line_pos + 1
done ;
buf +> "\n"
end
)
;;
let stop_raise ~usage ~(error : error) speclist =
let b = Ext_buffer.create 200 in
begin match error with
| Unknown ("-help" | "--help" | "-h") ->
usage_b b ~usage speclist ;
Ext_buffer.output_buffer stdout b;
exit 0
| Unknown s ->
b +> "unknown option: '";
b +> s ;
b +> "'.\n"
| Missing s ->
b +> "option '";
b +> s;
b +> "' needs an argument.\n"
end;
usage_b b ~usage speclist ;
raise (Bad (Ext_buffer.contents b))
let parse_exn ~usage ~argv ?(start=1) ?(finish=Array.length argv) (speclist : t) anonfun =
let current = ref start in
let rev_list = ref [] in
while !current < finish do
let s = argv.(!current) in
incr current;
if s <> "" && s.[0] = '-' then begin
match assoc3 s speclist with
| Some action -> begin
begin match action with
| Unit r ->
begin match r with
| Unit_set r -> r.contents <- true
| Unit_call f -> f ()
end
| String f ->
if !current >= finish then stop_raise ~usage ~error:(Missing s) speclist
else begin
let arg = argv.(!current) in
incr current;
match f with
| String_call f ->
f arg
| String_set u -> u.contents <- arg
end
end;
end;
| None -> stop_raise ~usage ~error:(Unknown s) speclist
end else begin
rev_list := s :: !rev_list;
end;
done;
anonfun ~rev_args:!rev_list
;;