-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathsh.lua
108 lines (96 loc) · 2.38 KB
/
sh.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
local M = {}
-- converts key and it's argument to "-k" or "-k=v" or just ""
local function arg(k, a)
if not a then return k end
if type(a) == 'string' and #a > 0 then return k..'=\''..a..'\'' end
if type(a) == 'number' then return k..'='..tostring(a) end
if type(a) == 'boolean' and a == true then return k end
error('invalid argument type', type(a), a)
end
-- converts nested tables into a flat list of arguments and concatenated input
local function flatten(t)
local result = {args = {}, input = ''}
local function f(t)
local keys = {}
for k = 1, #t do
keys[k] = true
local v = t[k]
if type(v) == 'table' then
f(v)
else
table.insert(result.args, v)
end
end
for k, v in pairs(t) do
if k == '__input' then
result.input = result.input .. v
elseif not keys[k] and k:sub(1, 1) ~= '_' then
local key = '-'..k
if #k > 1 then key = '-' ..key end
table.insert(result.args, arg(key, v))
end
end
end
f(t)
return result
end
-- returns a function that executes the command with given args and returns its
-- output, exit status etc
local function command(cmd, ...)
local prearg = {...}
return function(...)
local args = flatten({...})
local s = cmd
for _, v in ipairs(prearg) do
s = s .. ' ' .. v
end
for k, v in pairs(args.args) do
s = s .. ' ' .. v
end
if args.input then
local f = io.open(M.tmpfile, 'w')
f:write(args.input)
f:close()
s = s .. ' <'..M.tmpfile
end
local p = io.popen(s, 'r')
local output = p:read('*a')
local _, exit, status = p:close()
os.remove(M.tmpfile)
local t = {
__input = output,
__exitcode = exit == 'exit' and status or 127,
__signal = exit == 'signal' and status or 0,
}
local mt = {
__index = function(self, k, ...)
return _G[k] --, ...
end,
__tostring = function(self)
-- return trimmed command output as a string
return self.__input:match('^%s*(.-)%s*$')
end
}
return setmetatable(t, mt)
end
end
-- get global metatable
local mt = getmetatable(_G)
if mt == nil then
mt = {}
setmetatable(_G, mt)
end
-- set hook for undefined variables
mt.__index = function(t, cmd)
return command(cmd)
end
-- export command() function and configurable temporary "input" file
M.command = command
M.tmpfile = '/tmp/shluainput'
-- allow to call sh to run shell commands
setmetatable(M, {
__call = function(_, cmd, ...)
return command(cmd, ...)
end
})
return M