* [PATCH 1/6] Add infrastructure for option parsing to cg-Xlib
@ 2005-06-09 11:15 Dan Holmsand
0 siblings, 0 replies; only message in thread
From: Dan Holmsand @ 2005-06-09 11:15 UTC (permalink / raw)
To: git; +Cc: Petr Baudis
[-- Attachment #1: Type: text/plain, Size: 837 bytes --]
Adds a new function, optparse, that handles combined options
just like optget (cg-log -cf, for example).
When called without any argument, it returns 0 if there is any
option to parse.
When called as "optparse -f" or "optparse --foo" it returns 0
if the current option in $ARGS (at $ARGPOS) matches.
When called as "optparse -f= or "optparse --foo=" it requires
an argument.
For long options, it takes an optional second argument, specifying
the number of characters in the option name that has to be present
(defaults to 1). So "optparse --foo 2" will match "--fo", but not
"--f".
Just as with optget, options can be given after arguments as
well, as in "cg-log Documentation -rorigin". Option parsing
stops after "--".
optparse leaves unparsed arguments in the $ARGS array.
Signed-off-by: Dan Holmsand <holmsand@gmail.com>
---
[-- Attachment #2: 1-optparse.patch.txt --]
[-- Type: text/plain, Size: 1740 bytes --]
cg-Xlib | 49 +++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 49 insertions(+), 0 deletions(-)
diff --git a/cg-Xlib b/cg-Xlib
--- a/cg-Xlib
+++ b/cg-Xlib
@@ -137,11 +137,60 @@ print_help () {
}
for option in "$@"; do
+ [ "$option" = -- ] && break
if [ "$option" = "-h" -o "$option" = "--help" ]; then
print_help ${_cg_cmd##cg-}
fi
done
+ARGS=("$@")
+ARGPOS=0
+
+optshift() {
+ unset ARGS[$ARGPOS]
+ ARGS=("${ARGS[@]}")
+ [ -z "$1" -o -n "${ARGS[$ARGPOS]}" ] ||
+ die "option \`$1' requires an argument"
+}
+
+optfail() {
+ die "unrecognized option \`${ARGS[$ARGPOS]}'"
+}
+
+optconflict() {
+ die "conflicting option \`$CUROPT'"
+}
+
+optparse() {
+ unset OPTARG
+ [ -z "$1" ] && case ${ARGS[$ARGPOS]} in
+ --) optshift; return 1 ;;
+ -*) return 0 ;;
+ *) while (( ${#ARGS[@]} > ++ARGPOS )); do
+ [[ "${ARGS[$ARGPOS]}" == -- ]] && return 1
+ [[ "${ARGS[$ARGPOS]}" == -* ]] && return 0
+ done; return 1 ;;
+ esac
+
+ CUROPT=${ARGS[$ARGPOS]}
+ local match=${1%=} minmatch=${2:-1} opt=$CUROPT o=$CUROPT val
+ [[ $1 == *= ]] && val=$match
+ case $match in
+ --*) [ "$val" ] && o=${o%%=*}
+ [ ${#o} -ge $((2 + $minmatch)) -a \
+ "${match:0:${#o}}" = "$o" ] || return 1
+ [[ -n "$val" && "$opt" == *=?* ]] && ARGS[$ARGPOS]=${opt#*=} ||
+ optshift $val ;;
+ -?) [[ $o == $match* ]] || return 1
+ [[ $o != -?-* || -n "$val" ]] || optfail
+ ARGS[$ARGPOS]=${o#$match}
+ [ "${ARGS[$ARGPOS]}" ] &&
+ { [ "$val" ] || ARGS[$ARGPOS]=-${ARGS[$ARGPOS]}; } ||
+ optshift $val ;;
+ *) die "optparse cannot handle $1" ;;
+ esac
+ [ -z "$val" ] || { OPTARG=${ARGS[$ARGPOS]}; optshift; }
+}
# Check if we have something to work on, unless the script can do w/o it.
if [ ! "$_git_repo_unneeded" ]; then
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-06-09 12:19 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-06-09 11:15 [PATCH 1/6] Add infrastructure for option parsing to cg-Xlib Dan Holmsand
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).