2008-03-02 21:52:58 +00:00
|
|
|
--[[
|
2008-05-25 17:00:30 +00:00
|
|
|
LuCI - Utility library
|
2008-03-02 21:52:58 +00:00
|
|
|
|
|
|
|
Description:
|
|
|
|
Several common useful Lua functions
|
|
|
|
|
|
|
|
FileId:
|
|
|
|
$Id$
|
|
|
|
|
|
|
|
License:
|
|
|
|
Copyright 2008 Steven Barth <steven@midlink.org>
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
|
|
|
|
]]--
|
|
|
|
|
2008-05-25 17:00:30 +00:00
|
|
|
module("luci.util", package.seeall)
|
2008-03-02 21:52:58 +00:00
|
|
|
|
2008-03-12 20:52:28 +00:00
|
|
|
|
2008-03-16 18:11:22 +00:00
|
|
|
-- Lua simplified Python-style OO class support emulation
|
2008-03-12 20:52:28 +00:00
|
|
|
function class(base)
|
2008-03-16 18:11:22 +00:00
|
|
|
local class = {}
|
2008-03-12 20:52:28 +00:00
|
|
|
|
2008-03-16 18:11:22 +00:00
|
|
|
local create = function(class, ...)
|
|
|
|
local inst = {}
|
|
|
|
setmetatable(inst, {__index = class})
|
|
|
|
|
|
|
|
if inst.__init__ then
|
2008-03-24 15:39:32 +00:00
|
|
|
local stat, err = pcall(inst.__init__, inst, ...)
|
|
|
|
if not stat then
|
|
|
|
error(err)
|
|
|
|
end
|
2008-03-16 18:11:22 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
return inst
|
|
|
|
end
|
|
|
|
|
|
|
|
local classmeta = {__call = create}
|
2008-03-12 20:52:28 +00:00
|
|
|
|
|
|
|
if base then
|
2008-03-16 18:11:22 +00:00
|
|
|
classmeta.__index = base
|
2008-03-12 20:52:28 +00:00
|
|
|
end
|
|
|
|
|
2008-03-16 18:11:22 +00:00
|
|
|
setmetatable(class, classmeta)
|
|
|
|
return class
|
2008-03-12 20:52:28 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
2008-03-25 23:34:21 +00:00
|
|
|
-- Clones an object (deep on-demand)
|
|
|
|
function clone(object, deep)
|
|
|
|
local copy = {}
|
|
|
|
|
|
|
|
for k, v in pairs(object) do
|
|
|
|
if deep and type(v) == "table" then
|
|
|
|
v = clone(v, deep)
|
|
|
|
end
|
|
|
|
copy[k] = v
|
|
|
|
end
|
|
|
|
|
|
|
|
setmetatable(copy, getmetatable(object))
|
|
|
|
|
|
|
|
return copy
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2008-05-24 14:11:15 +00:00
|
|
|
-- Combines two or more numerically indexed tables into one
|
|
|
|
function combine(...)
|
|
|
|
local result = {}
|
|
|
|
for i, a in ipairs(arg) do
|
|
|
|
for j, v in ipairs(a) do
|
|
|
|
table.insert(result, v)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return result
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2008-03-02 21:52:58 +00:00
|
|
|
-- Checks whether a table has an object "value" in it
|
|
|
|
function contains(table, value)
|
|
|
|
for k,v in pairs(table) do
|
|
|
|
if value == v then
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2008-06-01 12:12:18 +00:00
|
|
|
-- Dumps and strips a Lua-Function
|
|
|
|
function dump(f)
|
|
|
|
local d = string.dump(f)
|
|
|
|
return d and strip_bytecode(d)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2008-03-02 21:52:58 +00:00
|
|
|
-- Dumps a table to stdout (useful for testing and debugging)
|
|
|
|
function dumptable(t, i)
|
|
|
|
i = i or 0
|
|
|
|
for k,v in pairs(t) do
|
|
|
|
print(string.rep("\t", i) .. k, v)
|
|
|
|
if type(v) == "table" then
|
|
|
|
dumptable(v, i+1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
-- Escapes all occurences of c in s
|
|
|
|
function escape(s, c)
|
|
|
|
c = c or "\\"
|
|
|
|
return s:gsub(c, "\\" .. c)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
-- Populate obj in the scope of f as key
|
|
|
|
function extfenv(f, key, obj)
|
|
|
|
local scope = getfenv(f)
|
|
|
|
scope[key] = obj
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2008-03-17 21:38:03 +00:00
|
|
|
-- Checks whether an object is an instanceof class
|
|
|
|
function instanceof(object, class)
|
|
|
|
local meta = getmetatable(object)
|
|
|
|
while meta and meta.__index do
|
|
|
|
if meta.__index == class then
|
|
|
|
return true
|
|
|
|
end
|
|
|
|
meta = getmetatable(meta.__index)
|
|
|
|
end
|
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2008-03-29 18:22:21 +00:00
|
|
|
-- Creates valid XML PCDATA from a string
|
|
|
|
function pcdata(value)
|
|
|
|
value = value:gsub("&", "&")
|
|
|
|
value = value:gsub('"', """)
|
|
|
|
value = value:gsub("'", "'")
|
|
|
|
value = value:gsub("<", "<")
|
|
|
|
return value:gsub(">", ">")
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2008-03-21 19:30:53 +00:00
|
|
|
-- Resets the scope of f doing a shallow copy of its scope into a new table
|
|
|
|
function resfenv(f)
|
2008-03-26 20:55:14 +00:00
|
|
|
setfenv(f, clone(getfenv(f)))
|
2008-03-21 19:30:53 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
2008-04-21 17:25:01 +00:00
|
|
|
-- Splits a string into an array
|
|
|
|
function split(str, pat, max, regex)
|
2008-03-26 20:55:14 +00:00
|
|
|
pat = pat or "\n"
|
2008-04-21 17:25:01 +00:00
|
|
|
max = max or #str
|
2008-03-26 20:55:14 +00:00
|
|
|
|
|
|
|
local t = {}
|
2008-04-21 17:25:01 +00:00
|
|
|
local c = 1
|
2008-03-26 20:55:14 +00:00
|
|
|
|
2008-04-22 18:01:41 +00:00
|
|
|
if #str == 0 then
|
|
|
|
return {""}
|
|
|
|
end
|
|
|
|
|
2008-04-21 17:25:01 +00:00
|
|
|
if #pat == 0 then
|
|
|
|
return nil
|
2008-03-26 20:55:14 +00:00
|
|
|
end
|
|
|
|
|
2008-04-21 17:25:01 +00:00
|
|
|
if max == 0 then
|
|
|
|
return str
|
2008-03-26 20:55:14 +00:00
|
|
|
end
|
|
|
|
|
2008-04-21 17:25:01 +00:00
|
|
|
repeat
|
|
|
|
local s, e = str:find(pat, c, not regex)
|
|
|
|
table.insert(t, str:sub(c, s and s - 1))
|
|
|
|
max = max - 1
|
|
|
|
c = e and e + 1 or #str + 1
|
|
|
|
until not s or max < 0
|
|
|
|
|
2008-03-26 20:55:14 +00:00
|
|
|
return t
|
|
|
|
end
|
|
|
|
|
2008-06-01 12:12:18 +00:00
|
|
|
|
|
|
|
-- Bytecode stripping function by Peter Cawley from http://lua-users.org/lists/lua-l/2008-02/msg01158.html
|
|
|
|
function strip_bytecode(dump)
|
|
|
|
local version, format, endian, int, size, ins, num = dump:byte(5, 11)
|
|
|
|
local subint
|
|
|
|
if endian == 1 then
|
|
|
|
subint = function(dump, i, l)
|
|
|
|
local val = 0
|
|
|
|
for n = l, 1, -1 do
|
|
|
|
val = val * 256 + dump:byte(i + n - 1)
|
|
|
|
end
|
|
|
|
return val, i + l
|
|
|
|
end
|
|
|
|
else
|
|
|
|
subint = function(dump, i, l)
|
|
|
|
local val = 0
|
|
|
|
for n = 1, l, 1 do
|
|
|
|
val = val * 256 + dump:byte(i + n - 1)
|
|
|
|
end
|
|
|
|
return val, i + l
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local strip_function
|
|
|
|
strip_function = function(dump)
|
|
|
|
local count, offset = subint(dump, 1, size)
|
|
|
|
local stripped, dirty = string.rep("\0", size), offset + count
|
|
|
|
offset = offset + count + int * 2 + 4
|
|
|
|
offset = offset + int + subint(dump, offset, int) * ins
|
|
|
|
count, offset = subint(dump, offset, int)
|
|
|
|
for n = 1, count do
|
|
|
|
local t
|
|
|
|
t, offset = subint(dump, offset, 1)
|
|
|
|
if t == 1 then
|
|
|
|
offset = offset + 1
|
|
|
|
elseif t == 4 then
|
|
|
|
offset = offset + size + subint(dump, offset, size)
|
|
|
|
elseif t == 3 then
|
|
|
|
offset = offset + num
|
|
|
|
end
|
|
|
|
end
|
|
|
|
count, offset = subint(dump, offset, int)
|
|
|
|
stripped = stripped .. dump:sub(dirty, offset - 1)
|
|
|
|
for n = 1, count do
|
|
|
|
local proto, off = strip_function(dump:sub(offset, -1))
|
|
|
|
stripped, offset = stripped .. proto, offset + off - 1
|
|
|
|
end
|
|
|
|
offset = offset + subint(dump, offset, int) * int + int
|
|
|
|
count, offset = subint(dump, offset, int)
|
|
|
|
for n = 1, count do
|
|
|
|
offset = offset + subint(dump, offset, size) + size + int * 2
|
|
|
|
end
|
|
|
|
count, offset = subint(dump, offset, int)
|
|
|
|
for n = 1, count do
|
|
|
|
offset = offset + subint(dump, offset, size) + size
|
|
|
|
end
|
|
|
|
stripped = stripped .. string.rep("\0", int * 3)
|
|
|
|
return stripped, offset
|
|
|
|
end
|
|
|
|
|
|
|
|
return dump:sub(1,12) .. strip_function(dump:sub(13,-1))
|
|
|
|
end
|
|
|
|
|
|
|
|
|
2008-04-02 10:10:32 +00:00
|
|
|
-- Removes whitespace from beginning and end of a string
|
2008-05-07 20:23:42 +00:00
|
|
|
function trim(str)
|
|
|
|
local s = str:gsub("^%s*(.-)%s*$", "%1")
|
2008-04-22 18:01:41 +00:00
|
|
|
return s
|
2008-04-02 10:10:32 +00:00
|
|
|
end
|
2008-03-26 20:55:14 +00:00
|
|
|
|
2008-06-01 12:12:18 +00:00
|
|
|
|
2008-03-26 20:55:14 +00:00
|
|
|
-- Updates given table with new values
|
|
|
|
function update(t, updates)
|
|
|
|
for k, v in pairs(updates) do
|
|
|
|
t[k] = v
|
|
|
|
end
|
2008-03-25 23:34:21 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
|
2008-03-02 21:52:58 +00:00
|
|
|
-- Updates the scope of f with "extscope"
|
|
|
|
function updfenv(f, extscope)
|
2008-03-26 20:55:14 +00:00
|
|
|
update(getfenv(f), extscope)
|
2008-03-02 21:52:58 +00:00
|
|
|
end
|
|
|
|
|
2008-03-17 21:38:03 +00:00
|
|
|
|
2008-03-20 17:30:33 +00:00
|
|
|
-- Validates a variable
|
2008-03-27 23:14:01 +00:00
|
|
|
function validate(value, cast_number, cast_int)
|
2008-03-20 17:30:33 +00:00
|
|
|
if cast_number or cast_int then
|
|
|
|
value = tonumber(value)
|
|
|
|
end
|
|
|
|
|
2008-03-24 21:50:48 +00:00
|
|
|
if cast_int and value and not(value % 1 == 0) then
|
2008-03-20 17:30:33 +00:00
|
|
|
value = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
return value
|
2008-03-02 21:52:58 +00:00
|
|
|
end
|