allow non-options in commandlines and return them

also call qerror() on error, not os.exit
develop
Myk Taylor 2020-11-03 16:19:40 -08:00 committed by myk002
parent 20276be50f
commit 3b45878d41
No known key found for this signature in database
GPG Key ID: 8A39CA0FA0C16E78
1 changed files with 126 additions and 128 deletions

@ -21,39 +21,46 @@
-- based on https://github.com/LuaDist/alt-getopt/blob/master/alt_getopt.lua -- based on https://github.com/LuaDist/alt-getopt/blob/master/alt_getopt.lua
-- MIT licence -- MIT licence
-- modified to support non-options and to not call os.exit() -- modified to support aggregation of non-options and to call qerror instead of
-- intended to be used via utils.processArgs2() -- os.exit() on error. can be used directly or via the utils.processArgs2()
-- wrapper.
-- sh_opts should be in standard getopt format: a string of letters that
-- represent options, each followed by a colon if that option takes an argument.
-- e.g.: 'ak:hv' has three flags (options with no arguments): 'a', 'h', and 'v'
-- and one option that takes an argument: 'k'.
--
-- Options passed to the module to parse can be in any of the following formats:
-- -kVALUE, -k VALUE, --key=VALUE, --key VALUE
-- -abcd is equivalent to -a -b -c -d if none of them accept arguments.
-- -abckVALUE and -abck VALUE are also acceptable (where k is the only option
-- in the string that takes a value).
local _ENV = mkmodule('alt_getopt') local _ENV = mkmodule('3rdparty.alt_getopt')
local function convert_short2long (opts) local function get_opt_map(opts)
local i = 1 local i = 1
local len = #opts local len = #opts
local ret = {} local options = {}
for short_opt, accept_arg in opts:gmatch("(%w)(:?)") do
ret[short_opt]=#accept_arg
end
return ret for short_opt, accept_arg in opts:gmatch('(%w)(:?)') do
options[short_opt] = #accept_arg
end end
local function exit_with_error (msg, exit_status) return options
io.stderr:write (msg)
os.exit (exit_status)
end end
local function err_unknown_opt(opt) local function err_unknown_opt(opt)
exit_with_error ("Unknown option `-" .. qerror(string.format('Unknown option "-%s%s"', #opt > 1 and '-' or '', opt))
(#opt > 1 and "-" or "") .. opt .. "'\n", 1)
end end
local function canonize (options, opt) -- resolve aliases into their canonical forms
local function canonicalize(options, opt)
if not options[opt] then if not options[opt] then
err_unknown_opt(opt) err_unknown_opt(opt)
end end
while type (options [opt]) == "string" do while type(options[opt]) == 'string' do
opt = options[opt] opt = options[opt]
if not options[opt] then if not options[opt] then
@ -61,102 +68,93 @@ local function canonize (options, opt)
end end
end end
if type(options[opt]) ~= 'number' then
qerror(string.format(
'Option "%s" resolves to non-number for has_arg flag', opt))
end
return opt return opt
end end
function get_ordered_opts (arg, sh_opts, long_opts) local function has_arg(options, opt)
local i = 1 return options[canonicalize(options, opt)] == 1
local count = 1 end
local opts = {}
local optarg = {}
local options = convert_short2long (sh_opts) -- returns vectors for opts, optargs, and nonoptions
function get_ordered_opts(args, sh_opts, long_opts)
local optind, count, opts, optargs, nonoptions = 1, 1, {}, {}, {}
local options = get_opt_map(sh_opts)
for k,v in pairs(long_opts) do for k,v in pairs(long_opts) do
options[k] = v options[k] = v
end end
while i <= #arg do while optind <= #args do
local a = arg [i] local a = args[optind]
if a == '--' then
if a == "--" then optind = optind + 1
i = i + 1 elseif a:sub(1, 2) == '--' then
break local pos = a:find('=', 1, true)
elseif a == "-" then
break
elseif a:sub (1, 2) == "--" then
local pos = a:find ("=", 1, true)
if pos then if pos then
local opt = a:sub(3, pos-1) local opt = a:sub(3, pos-1)
if not has_arg(options, opt) then
opt = canonize (options, opt) qerror(string.format('Bad usage of option "%s"', a))
if options [opt] == 0 then
exit_with_error ("Bad usage of option `" .. a .. "'\n", 1)
end end
optarg [count] = a:sub (pos+1)
opts[count] = opt opts[count] = opt
optargs[count] = a:sub(pos+1)
else else
local opt = a:sub(3) local opt = a:sub(3)
opt = canonize (options, opt)
if options [opt] == 0 then
opts[count] = opt opts[count] = opt
else if has_arg(options, opt) then
if i == #arg then if i == #args then
exit_with_error ("Missed value for option `" .. a .. "'\n", 1) qerror(string.format(
'Missing value for option "%s"', a))
end end
optargs[count] = args[optind+1]
optarg [count] = arg [i+1] optind = optind + 1
opts [count] = opt
i = i + 1
end end
end end
count = count + 1 count = count + 1
elseif a:sub(1, 1) == '-' then
elseif a:sub (1, 1) == "-" then
local j local j
for j=2,a:len () do for j=2,#a do
local opt = canonize (options, a:sub (j, j)) local opt = canonicalize(options, a:sub(j, j))
if not has_arg(options, opt) then
if options [opt] == 0 then
opts[count] = opt opts[count] = opt
count = count + 1 count = count + 1
elseif a:len () == j then elseif j == #a then
if i == #arg then if optind == #args then
exit_with_error ("Missed value for option `-" .. opt .. "'\n", 1) qerror(string.format(
'Missing value for option "-%s"', opt))
end end
optarg [count] = arg [i+1]
opts[count] = opt opts[count] = opt
i = i + 1 optargs[count] = args[optind+1]
optind = optind + 1
count = count + 1 count = count + 1
break
else else
optarg [count] = a:sub (j+1)
opts[count] = opt opts[count] = opt
optargs[count] = a:sub(j+1)
count = count + 1 count = count + 1
break break
end end
end end
else else
break table.insert(nonoptions, args[optind])
end end
optind = optind + 1
i = i + 1
end end
for i=optind,#args do
return opts,i,optarg table.insert(nonoptions, args[i])
end
return opts, optargs, nonoptions
end end
function get_opts (arg, sh_opts, long_opts) -- returns a map of options to their optargs (or 1 if the option doesn't take an
-- argument), and a vector for nonoptions
function get_opts(args, sh_opts, long_opts)
local ret = {} local ret = {}
local opts,optind,optarg = get_ordered_opts (arg, sh_opts, long_opts) local opts,optargs,nonoptions = get_ordered_opts(args, sh_opts, long_opts)
for i,v in ipairs(opts) do for i,v in ipairs(opts) do
if optarg[i] then if optarg[i] then
ret[v] = optarg[i] ret[v] = optarg[i]
@ -165,7 +163,7 @@ function get_opts (arg, sh_opts, long_opts)
end end
end end
return ret,optind return ret, nonoptions
end end
return _ENV return _ENV