/usr/lib/ocaml/oasis/ArgExt.ml is in liboasis-ocaml-dev 0.3.0-4.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | (******************************************************************************)
(* OASIS: architecture for building OCaml libraries and applications *)
(* *)
(* Copyright (C) 2008-2010, OCamlCore SARL *)
(* *)
(* This library 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 2.1 of the License, or (at *)
(* your option) any later version, with the OCaml static compilation *)
(* exception. *)
(* *)
(* This library 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 file COPYING for more *)
(* details. *)
(* *)
(* You should have received a copy of the GNU Lesser General Public License *)
(* along with this library; if not, write to the Free Software Foundation, *)
(* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA *)
(******************************************************************************)
(** Parsing of command line arguments
*)
open OASISGettext
open BaseMessage
open SubCommand
open OASISUtils
open Format
open FormatExt
open FormatMarkdown
let global_options =
ref []
let add_global_options lst =
global_options := lst @ !global_options
let specs, usage_msg =
[
"-C",
Arg.String (fun str -> Sys.chdir str),
(s_ "dir Change directory before running.");
]
@ (BaseContext.args ())
@ !global_options,
("OASIS v" ^ OASISVersion.string_of_version OASISConf.version_full
^ " (C) 2009-2010 OCamlCore SARL\n"
^ s_ "\n\
oasis [global-options*] subcommand [subcommand-options*]\n\
\n\
Environment variables: \n\
\n\
OASIS_PAGER: pager to use to display long textual output.\n\
\n\
Global command line options:")
type help_extent =
| NoSubCommand
| SubCommand of string
| AllSubCommand
type help_style =
| Markdown
| Output
let pp_print_help hext hsty fmt () =
(* Print with a precise length *)
let pp_print_justified sz fmt str =
let ns =
String.make sz ' '
in
String.blit str 0 ns 0 (String.length str);
pp_print_string fmt ns
in
(* Print definition for the output style *)
let pp_print_output_def sz fmt (term, def) =
pp_print_string fmt " ";
pp_print_justified sz fmt term;
pp_print_string fmt " ";
pp_open_box fmt 0;
pp_print_string_spaced fmt def;
pp_close_box fmt ();
pp_print_newline fmt ()
in
let pp_print_specs spec_help fmt specs =
let help_specs =
List.rev_append
(List.rev_map
(fun (cli, t, hlp) ->
let arg, hlp =
match OASISString.nsplit hlp ' ' with
| hd :: tl ->
hd, (String.concat " " tl)
| [] ->
"", ""
in
let arg =
match t with
| Arg.Symbol (lst, _) ->
"{"^(String.concat "|" lst)^"}"
| _ ->
arg
in
let term =
if arg <> "" then
cli^" "^arg
else
cli
in
term, hlp)
specs)
(if spec_help then
["-help|--help", s_ "Display this list of options"]
else
[])
in
let sz =
List.fold_left
(fun acc (s, _) -> max (String.length s) acc)
0
help_specs
in
let pp_print_spec fmt (term, hlp) =
match hsty with
| Markdown ->
pp_print_def fmt
("`"^term^"`")
[pp_print_string_spaced, hlp]
| Output ->
pp_print_output_def
sz fmt (term, hlp)
in
pp_print_list pp_print_spec "" fmt help_specs;
if hsty = Output then
pp_print_newline fmt ()
in
let pp_print_scmds fmt () =
let sz =
SubCommand.fold
(fun c sz ->
max sz (String.length c.scmd_name))
0
in
pp_print_para fmt (s_ "Available subcommands:");
SubCommand.fold
(fun c () ->
match hsty with
| Markdown ->
pp_print_def fmt ("`"^c.scmd_name^"`")
[pp_print_string_spaced, c.scmd_synopsis]
| Output ->
pp_print_output_def
sz fmt (c.scmd_name, c.scmd_synopsis))
();
if hsty = Output then
pp_print_newline fmt ()
in
let pp_print_scmd fmt ~global_options scmd =
pp_print_title 2 fmt
(Printf.sprintf (f_ "Subcommand %s") scmd.scmd_name);
pp_print_string fmt scmd.scmd_help;
pp_print_endblock
~check_last_char:scmd.scmd_help
fmt ();
fprintf fmt (f_ "Usage: oasis [global-options*] %s %s") scmd.scmd_name scmd.scmd_usage;
pp_print_endblock fmt ();
if global_options then
begin
pp_print_para fmt (s_ "Global options: ");
pp_print_specs true fmt specs
end;
if scmd.scmd_specs <> [] then
begin
pp_print_para fmt (s_ "Options: ");
pp_print_specs false fmt scmd.scmd_specs
end
in
begin
match hext with
| NoSubCommand | AllSubCommand ->
begin
pp_print_string fmt usage_msg;
pp_print_endblock fmt ();
pp_print_string fmt CLIData.main_mkd;
pp_print_endblock
~check_last_char:CLIData.main_mkd
fmt ();
pp_print_specs true fmt specs;
pp_print_scmds fmt ();
end
| SubCommand _ ->
()
end;
begin
match hext with
| NoSubCommand ->
()
| SubCommand nm ->
pp_print_scmd fmt
~global_options:true
(SubCommand.find nm)
| AllSubCommand ->
SubCommand.fold
(fun scmd () ->
pp_print_scmd fmt ~global_options:false scmd)
()
end
let parse () =
let pos =
ref 0
in
let scmd =
ref
(SubCommand.make
(s_ "none")
""
""
(fun () ->
pp_print_help NoSubCommand Output err_formatter ();
failwith
(s_ "No subcommand defined, call 'oasis help' for help")))
in
let scmd_args =
ref [||]
in
let set_scmd s =
scmd := SubCommand.find s;
(* Get the rest of arguments *)
scmd_args :=
Array.sub Sys.argv !pos ((Array.length Sys.argv) - !pos);
(* Skip arguments *)
pos := !pos + Array.length !scmd_args
in
let handle_error exc hext =
let get_bad str =
match split_newline ~trim:false str with
| fst :: _ ->
fst
| [] ->
s_ "Unknown error on the command line"
in
match exc with
| Arg.Bad txt ->
pp_print_help hext Output err_formatter ();
prerr_newline ();
prerr_endline (get_bad txt);
exit 2
| Arg.Help txt ->
pp_print_help hext Output std_formatter ();
exit 0
| e ->
raise e
in
(* Parse global options and set scmd *)
begin
try
Arg.parse_argv
~current:pos
Sys.argv
(Arg.align specs)
set_scmd
usage_msg
with e ->
handle_error e NoSubCommand
end;
(* Parse subcommand options *)
begin
try
Arg.parse_argv
~current:(ref 0)
!scmd_args
(Arg.align !scmd.scmd_specs)
!scmd.scmd_anon
(Printf.sprintf
(f_ "Subcommand %s options:\n")
!scmd.scmd_name)
with e ->
handle_error e (SubCommand !scmd.scmd_name)
end;
!scmd.scmd_main
|