Overhaul of command line argument parsing. Now supports "-abc" as 3
flags, and stores them as .a, .b, .c instead of ."-a", etc. (same for --args)
This commit is contained in:
parent
7762c8c45b
commit
6edf6a2755
26
nomsu.lua
26
nomsu.lua
@ -110,17 +110,25 @@ local parser = re.compile([[ args <- {| (flag %sep)*
|
|||||||
/ {~ '' %sep? -> 'nomsu://tools/repl.nom' ~}) |} :})
|
/ {~ '' %sep? -> 'nomsu://tools/repl.nom' ~}) |} :})
|
||||||
{:nomsu_args: {| (nomsu_flag %sep)* {:extras: {| ({[^%sep]+} %sep)* |} :} |} :}
|
{:nomsu_args: {| (nomsu_flag %sep)* {:extras: {| ({[^%sep]+} %sep)* |} :} |} :}
|
||||||
|} !.
|
|} !.
|
||||||
flag <-
|
|
||||||
{:optimization: "-O" (%sep? %number)? :}
|
flag <- longflag / shortflag / "-" shortboolflag+
|
||||||
/ ({:check_syntax: "-s" %true:})
|
longflag <-
|
||||||
/ ({:compile: "-c" %true:})
|
{:help: "--help" %true :}
|
||||||
/ {:verbose: "-v" %true :}
|
|
||||||
/ {:help: ("-h" / "--help") %true :}
|
|
||||||
/ {:version: "--version" %true :}
|
/ {:version: "--version" %true :}
|
||||||
/ {:no_core: "--no-core" %true :}
|
/ {:no_core: "--no-core" %true :}
|
||||||
/ {:debugger: ("-d" %sep? {[^%sep]*}) :}
|
shortflag <-
|
||||||
/ {:requested_version: "-V" (%sep? {([0-9.])+})? :}
|
{:optimization: "-O" %sep? %number :}
|
||||||
nomsu_flag <- {| ({:key: ('-' [a-z]) :} {:value: %true :}) / ({:key: ('--' [^%sep=]+) :} {:value: ('=' {[^%sep]+}) / %true :}) |}
|
/ {:debugger: ("-d" %sep? {[^%sep]+}) :}
|
||||||
|
/ {:requested_version: "-V" %sep? {([0-9.])+} :}
|
||||||
|
shortboolflag <-
|
||||||
|
{:check_syntax: "s" %true:}
|
||||||
|
/ {:compile: "c" %true:}
|
||||||
|
/ {:verbose: "v" %true :}
|
||||||
|
/ {:help: "h" %true :}
|
||||||
|
|
||||||
|
nomsu_flag <- nomsu_longflag / "-" nomsu_shortboolflag+
|
||||||
|
nomsu_shortboolflag <- {| {:key: [a-zA-Z] :} {:value: %true :} |}
|
||||||
|
nomsu_longflag <- '--' {| {:key: [^%sep=]+ :} {:value: ('=' {[^%sep]+}) / %true :} |}
|
||||||
]], {
|
]], {
|
||||||
["true"] = lpeg.Cc(true),
|
["true"] = lpeg.Cc(true),
|
||||||
number = lpeg.R("09") ^ 1 / tonumber,
|
number = lpeg.R("09") ^ 1 / tonumber,
|
||||||
|
26
nomsu.moon
26
nomsu.moon
@ -69,17 +69,25 @@ parser = re.compile([[
|
|||||||
/ {~ '' %sep? -> 'nomsu://tools/repl.nom' ~}) |} :})
|
/ {~ '' %sep? -> 'nomsu://tools/repl.nom' ~}) |} :})
|
||||||
{:nomsu_args: {| (nomsu_flag %sep)* {:extras: {| ({[^%sep]+} %sep)* |} :} |} :}
|
{:nomsu_args: {| (nomsu_flag %sep)* {:extras: {| ({[^%sep]+} %sep)* |} :} |} :}
|
||||||
|} !.
|
|} !.
|
||||||
flag <-
|
|
||||||
{:optimization: "-O" (%sep? %number)? :}
|
flag <- longflag / shortflag / "-" shortboolflag+
|
||||||
/ ({:check_syntax: "-s" %true:})
|
longflag <-
|
||||||
/ ({:compile: "-c" %true:})
|
{:help: "--help" %true :}
|
||||||
/ {:verbose: "-v" %true :}
|
|
||||||
/ {:help: ("-h" / "--help") %true :}
|
|
||||||
/ {:version: "--version" %true :}
|
/ {:version: "--version" %true :}
|
||||||
/ {:no_core: "--no-core" %true :}
|
/ {:no_core: "--no-core" %true :}
|
||||||
/ {:debugger: ("-d" %sep? {[^%sep]*}) :}
|
shortflag <-
|
||||||
/ {:requested_version: "-V" (%sep? {([0-9.])+})? :}
|
{:optimization: "-O" %sep? %number :}
|
||||||
nomsu_flag <- {| ({:key: ('-' [a-z]) :} {:value: %true :}) / ({:key: ('--' [^%sep=]+) :} {:value: ('=' {[^%sep]+}) / %true :}) |}
|
/ {:debugger: ("-d" %sep? {[^%sep]+}) :}
|
||||||
|
/ {:requested_version: "-V" %sep? {([0-9.])+} :}
|
||||||
|
shortboolflag <-
|
||||||
|
{:check_syntax: "s" %true:}
|
||||||
|
/ {:compile: "c" %true:}
|
||||||
|
/ {:verbose: "v" %true :}
|
||||||
|
/ {:help: "h" %true :}
|
||||||
|
|
||||||
|
nomsu_flag <- nomsu_longflag / "-" nomsu_shortboolflag+
|
||||||
|
nomsu_shortboolflag <- {| {:key: [a-zA-Z] :} {:value: %true :} |}
|
||||||
|
nomsu_longflag <- '--' {| {:key: [^%sep=]+ :} {:value: ('=' {[^%sep]+}) / %true :} |}
|
||||||
]], {
|
]], {
|
||||||
true:lpeg.Cc(true), number:lpeg.R("09")^1/tonumber, sep:lpeg.P(sep)
|
true:lpeg.Cc(true), number:lpeg.R("09")^1/tonumber, sep:lpeg.P(sep)
|
||||||
})
|
})
|
||||||
|
@ -21,7 +21,7 @@ use "lib/consolecolor.nom"
|
|||||||
|
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
$wildcard = ($(COMMAND LINE ARGS)."--wildcard" or "%*")
|
$wildcard = ($(COMMAND LINE ARGS).wildcard or "%*")
|
||||||
$pattern = $(COMMAND LINE ARGS).extras.1
|
$pattern = $(COMMAND LINE ARGS).extras.1
|
||||||
if (any of [not $pattern, $pattern == "*", $pattern == "**"]):
|
if (any of [not $pattern, $pattern == "*", $pattern == "**"]):
|
||||||
barf ("
|
barf ("
|
||||||
@ -84,7 +84,7 @@ for $filename in $filenames:
|
|||||||
if ($sub is syntax tree):
|
if ($sub is syntax tree):
|
||||||
recurse $t on $sub
|
recurse $t on $sub
|
||||||
|
|
||||||
if $(COMMAND LINE ARGS)."-l":
|
if $(COMMAND LINE ARGS).l:
|
||||||
if ((#$results) > 0):
|
if ((#$results) > 0):
|
||||||
say $filename
|
say $filename
|
||||||
..else:
|
..else:
|
||||||
|
@ -4,6 +4,7 @@
|
|||||||
nomsu -t format [-i] file1 file2...
|
nomsu -t format [-i] file1 file2...
|
||||||
|
|
||||||
If the "-i" flag is used, the file will be edited in-place.
|
If the "-i" flag is used, the file will be edited in-place.
|
||||||
|
If the "-q" flag is used and an error occurs, the original file will be printed.
|
||||||
If no files are passed in, this will read from stdin.
|
If no files are passed in, this will read from stdin.
|
||||||
|
|
||||||
use "lib/os.nom"
|
use "lib/os.nom"
|
||||||
@ -26,7 +27,7 @@ for $filename in $filenames:
|
|||||||
try:
|
try:
|
||||||
$tree = ($code parsed)
|
$tree = ($code parsed)
|
||||||
..and if it barfs $msg:
|
..and if it barfs $msg:
|
||||||
if $(COMMAND LINE ARGS)."-q":
|
if $(COMMAND LINE ARGS).q:
|
||||||
$formatted = $file
|
$formatted = $file
|
||||||
..else:
|
..else:
|
||||||
say $msg
|
say $msg
|
||||||
@ -36,7 +37,7 @@ for $filename in $filenames:
|
|||||||
"\$leading_indent\($tree as nomsu, text, with "\n" -> "\n\$leading_indent")"
|
"\$leading_indent\($tree as nomsu, text, with "\n" -> "\n\$leading_indent")"
|
||||||
|
|
||||||
if $formatted:
|
if $formatted:
|
||||||
if $(COMMAND LINE ARGS)."-i":
|
if $(COMMAND LINE ARGS).i:
|
||||||
write $formatted to file $filename
|
write $formatted to file $filename
|
||||||
..else:
|
..else:
|
||||||
say $formatted inline
|
say $formatted inline
|
||||||
|
@ -33,14 +33,14 @@ for $filename in $(COMMAND LINE ARGS).extras:
|
|||||||
sort $file_tests by $ -> $.source
|
sort $file_tests by $ -> $.source
|
||||||
lua> "io.write('[ .. ] ', \$filename); io.flush()"
|
lua> "io.write('[ .. ] ', \$filename); io.flush()"
|
||||||
|
|
||||||
if (command line args)."-v": say ""
|
if (command line args).v: say ""
|
||||||
|
|
||||||
for $ in $file_tests:
|
for $ in $file_tests:
|
||||||
if (command line args)."-v":
|
if (command line args).v:
|
||||||
say " \(yellow ($.test, with "\n" -> "\n "))"
|
say " \(yellow ($.test, with "\n" -> "\n "))"
|
||||||
run $.test
|
run $.test
|
||||||
|
|
||||||
if (command line args)."-v":
|
if (command line args).v:
|
||||||
say (green "PASS")
|
say (green "PASS")
|
||||||
..else:
|
..else:
|
||||||
say "\r[\(green "PASS")"
|
say "\r[\(green "PASS")"
|
||||||
|
@ -11,10 +11,10 @@ use "lib/consolecolor.nom"
|
|||||||
|
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
|
||||||
$inplace = ($(COMMAND LINE ARGS)."-i" or $(COMMAND LINE ARGS)."--inplace")
|
$inplace = ($(COMMAND LINE ARGS).i or $(COMMAND LINE ARGS).inplace)
|
||||||
$start_version = $(COMMAND LINE ARGS)."--upgrade-from"
|
$start_version = $(COMMAND LINE ARGS)."upgrade-from"
|
||||||
$version = ($(COMMAND LINE ARGS)."--upgrade-to" or (Nomsu version))
|
$version = ($(COMMAND LINE ARGS)."upgrade-to" or (Nomsu version))
|
||||||
$test = ($(COMMAND LINE ARGS)."-t" or $(COMMAND LINE ARGS)."--test")
|
$test = ($(COMMAND LINE ARGS).t or $(COMMAND LINE ARGS).test)
|
||||||
for $filename in $(COMMAND LINE ARGS).extras:
|
for $filename in $(COMMAND LINE ARGS).extras:
|
||||||
$file = (read file $filename)
|
$file = (read file $filename)
|
||||||
unless $file:
|
unless $file:
|
||||||
|
Loading…
Reference in New Issue
Block a user