caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: "T. Kurt Bond" <tkb@access.mountain.net>
To: caml-list@inria.fr
Cc: tkb@access.mountain.net
Subject: Treating arguments that start with `-' as anonymous arguments
Date: Tue, 13 Jan 1998 20:55:47 -0500 (EST)	[thread overview]
Message-ID: <199801140155.UAA12622@bc.mountain.net> (raw)

[I apologize for the lack of a French version of this message.]

When using the standard module Arg, I would sometimes like to be able
to define an keyword like the POSIX getopt keyword `--', which causes
all the rest of the command line arguments to be treated as anonymous
arguments.  The following patch (against 1.07) adds to the Arg.spec
type a constructor, Arg.End, which allows the user to specify this.
For instance, if the following

    let speclist = [
      ("-a", Arg.Unit (fun () -> prerr_endline "this was -a"), "a keyword");
      ("--", Arg.End, "Stop interpreting keywords")
    ] in
    Arg.parse speclist (fun s -> prerr_endline ("anon arg: " ^ s))
      "usage info goes here."

is compiled into a.out and run as follows

    $ ./a.out -a anon -- -a
    this was -a
    anon arg: anon
    anon arg: -a

the second -a gets treated as an anonymous argument.

--- arg.ml.orig	Tue Jan 13 20:10:08 1998
+++ arg.ml	Tue Jan 13 20:21:11 1998
@@ -18,6 +18,7 @@
   | String of (string -> unit) (* Call the function with a string argument *)
   | Int of (int -> unit)       (* Call the function with an int argument *)
   | Float of (float -> unit)   (* Call the function with a float argument *)
+  | End			       (* Treat rest as anonymous arguments *)
 
 exception Bad of string
 
@@ -42,6 +43,9 @@
 ;;
 
 let current = ref 0;;
+(* True if checking options; False if rest of arguments are to be interpeted
+   as anonymous arguments. *)
+let checking_opts = ref true;;
 
 let parse speclist anonfun errmsg =
   let initpos = !current in
@@ -67,7 +71,7 @@
   incr current;
   while !current < l do
     let s = Sys.argv.(!current) in
-    if String.length s >= 1 & String.get s 0 = '-' then begin
+    if !checking_opts & String.length s >= 1 & String.get s 0 = '-' then begin
       let action =
         try assoc3 s speclist
         with Not_found -> stop (Unknown s)
@@ -91,6 +95,7 @@
             let arg = Sys.argv.(!current+1) in
             f (float_of_string arg);
             incr current;
+	| End -> checking_opts := false;
         | _ -> stop (Missing s)
       with Bad m -> stop (Message m);
       end;
--- arg.mli.orig	Tue Jan 13 20:10:09 1998
+++ arg.mli	Tue Jan 13 20:21:34 1998
@@ -42,6 +42,7 @@
   | String of (string -> unit) (* Call the function with a string argument *)
   | Int of (int -> unit)       (* Call the function with an int argument *)
   | Float of (float -> unit)   (* Call the function with a float argument *)
+  | End			       (* Treat rest as anonymous arguments *)
         (* The concrete type describing the behavior associated
            with a keyword. *)
 


-- 
T. Kurt Bond, tkb@access.mountain.net






             reply	other threads:[~1998-01-14  8:35 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1998-01-14  1:55 T. Kurt Bond [this message]
1998-01-14 11:14 Damien Doligez

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=199801140155.UAA12622@bc.mountain.net \
    --to=tkb@access.mountain.net \
    --cc=caml-list@inria.fr \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).