2024-01-13 12:19:28 +00:00
|
|
|
math.randomseed(os.time())
|
|
|
|
|
|
|
|
-- TODO look for popen command and fall back to outputting to file if its unavailable
|
|
|
|
function os.command(command)
|
|
|
|
local file = assert(io.popen(command, 'r'))
|
2024-01-13 22:43:38 +00:00
|
|
|
local output = assert(file:read('*all'))
|
2024-01-13 12:19:28 +00:00
|
|
|
file:close()
|
|
|
|
return output
|
|
|
|
end
|
|
|
|
|
|
|
|
-- trim6 from Lua users wiki (best all-round pure Lua performance)
|
|
|
|
function string.trim(s)
|
|
|
|
return s:match'^()%s*$' and '' or s:match'^%s*(.*%S)'
|
|
|
|
end
|
|
|
|
|
|
|
|
local utility = {}
|
|
|
|
|
|
|
|
-- NOTE: This will print errors sometimes. :D
|
|
|
|
utility.required_program = function(name)
|
|
|
|
if os.execute("where " .. tostring(name)) ~= 0 then
|
|
|
|
error(tostring(name) .. " must be installed and in the path")
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- modified from my fork of lume
|
|
|
|
utility.uuid = function()
|
|
|
|
local fn = function(x)
|
|
|
|
local r = math.random(16) - 1
|
|
|
|
r = (x == "x") and (r + 1) or (r % 4) + 9
|
|
|
|
return ("0123456789abcdef"):sub(r, r)
|
|
|
|
end
|
|
|
|
return (("xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx"):gsub("[xy]", fn))
|
|
|
|
end
|
|
|
|
|
2024-01-13 22:43:38 +00:00
|
|
|
utility.tmp_file_name = function()
|
|
|
|
return ".tmp." .. utility.uuid()
|
|
|
|
end
|
|
|
|
|
2024-01-13 12:19:28 +00:00
|
|
|
utility.escape_quotes = function(input)
|
|
|
|
input = input:gsub("\\", "\\\\")
|
|
|
|
input = input:gsub("\"", "\\\"")
|
|
|
|
return input
|
|
|
|
end
|
|
|
|
|
|
|
|
return utility
|