| |
| |
| |
| |
| |
|
|
| local io,package,require = _G.io, _G.package, _G.require |
| local utils = require 'pl.utils' |
| local path = require 'pl.path' |
|
|
| local app = {} |
|
|
| local function check_script_name () |
| if _G.arg == nil then error('no command line args available\nWas this run from a main script?') end |
| return _G.arg[0] |
| end |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| function app.require_here (base) |
| local p = path.dirname(check_script_name()) |
| if not path.isabs(p) then |
| p = path.join(path.currentdir(),p) |
| end |
| if p:sub(-1,-1) ~= path.sep then |
| p = p..path.sep |
| end |
| if base then |
| p = p..base..path.sep |
| end |
| local so_ext = path.is_windows and 'dll' or 'so' |
| local lsep = package.path:find '^;' and '' or ';' |
| local csep = package.cpath:find '^;' and '' or ';' |
| package.path = ('%s?.lua;%s?%sinit.lua%s%s'):format(p,p,path.sep,lsep,package.path) |
| package.cpath = ('%s?.%s%s%s'):format(p,so_ext,csep,package.cpath) |
| return p |
| end |
|
|
| |
| |
| |
| |
| |
| |
| function app.appfile (file) |
| local sname = path.basename(check_script_name()) |
| local name,ext = path.splitext(sname) |
| local dir = path.join(path.expanduser('~'),'.'..name) |
| if not path.isdir(dir) then |
| local ret = path.mkdir(dir) |
| if not ret then return utils.raise ('cannot create '..dir) end |
| end |
| return path.join(dir,file) |
| end |
|
|
| |
| |
| function app.platform() |
| if path.is_windows then |
| return 'Windows' |
| else |
| local f = io.popen('uname') |
| local res = f:read() |
| if res == 'Darwin' then res = 'OSX' end |
| f:close() |
| return res |
| end |
| end |
|
|
| |
| |
| |
| |
| function app.lua () |
| local args = _G.arg or error "not in a main program" |
| local imin = 0 |
| for i in pairs(args) do |
| if i < imin then imin = i end |
| end |
| local cmd, append = {}, table.insert |
| for i = imin,-1 do |
| append(cmd, utils.quote_arg(args[i])) |
| end |
| return table.concat(cmd,' '),args[imin] |
| end |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| function app.parse_args (args,flags_with_values) |
| if not args then |
| args = _G.arg |
| if not args then error "Not in a main program: 'arg' not found" end |
| end |
| flags_with_values = flags_with_values or {} |
| local _args = {} |
| local flags = {} |
| local i = 1 |
| while i <= #args do |
| local a = args[i] |
| local v = a:match('^-(.+)') |
| local is_long |
| if v then |
| if v:find '^-' then |
| is_long = true |
| v = v:sub(2) |
| end |
| if flags_with_values[v] then |
| if i == #args or args[i+1]:find '^-' then |
| return utils.raise ("no value for '"..v.."'") |
| end |
| flags[v] = args[i+1] |
| i = i + 1 |
| else |
| |
| local var,val = utils.splitv (v,'=') |
| var = var or v |
| val = val or true |
| if not is_long then |
| if #var > 1 then |
| if var:find '.%d+' then |
| val = var:sub(2) |
| var = var:sub(1,1) |
| else |
| for i = 1,#var do |
| flags[var:sub(i,i)] = true |
| end |
| val = nil |
| end |
| else |
| val = val or true |
| end |
| end |
| if val then |
| flags[var] = val |
| end |
| end |
| else |
| _args[#_args+1] = a |
| end |
| i = i + 1 |
| end |
| return flags,_args |
| end |
|
|
| return app |
|
|