You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
164 lines
5.3 KiB
164 lines
5.3 KiB
--
|
|
-- Copyright 2013-2020 SipWise Team <development@sipwise.com>
|
|
--
|
|
-- This program is free software: you can redistribute it and/or modify
|
|
-- it under the terms of the GNU General Public License as published by
|
|
-- the Free Software Foundation, either version 3 of the License, or
|
|
-- (at your option) any later version.
|
|
--
|
|
-- This package is distributed in the hope that it will be useful,
|
|
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
-- GNU General Public License for more details.
|
|
--
|
|
-- You should have received a copy of the GNU General Public License
|
|
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
-- .
|
|
-- On Debian systems, the complete text of the GNU General
|
|
-- Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
|
|
--
|
|
local utils = require 'ngcp.utils'
|
|
local utable = utils.table
|
|
|
|
-- class NGCPXAvp
|
|
local NGCPXAvp = {
|
|
__class__ = 'NGCPXAvp'
|
|
}
|
|
local NGCPXAvp_MT = {
|
|
__index = NGCPXAvp
|
|
}
|
|
-- luacheck: globals KSR
|
|
function NGCPXAvp:new(level,group,l)
|
|
local t = NGCPXAvp.init(level,group,l)
|
|
NGCPXAvp_MT.__call = function(s, key, value)
|
|
if not key then
|
|
error("key is empty")
|
|
end
|
|
local id = string.format("$xavp(%s[0]=>%s)", s.name, key)
|
|
if not value then
|
|
return KSR.pv.get(id)
|
|
elseif type(value) == "number" then
|
|
utable.add(s.keys, key)
|
|
--KSR.dbg(string.format("seti: [%s]:%d\n", id, value))
|
|
KSR.pv.seti(id, value)
|
|
elseif type(value) == "string" then
|
|
utable.add(s.keys, key)
|
|
--KSR.dbg(string.format("sets: [%s]:%s\n", id, value))
|
|
KSR.pv.sets(id, value)
|
|
elseif type(value) == "table" then
|
|
utable.add(s.keys, key)
|
|
for i = #value, 1, -1 do
|
|
local v = value[i]
|
|
if type(v) == "number" then
|
|
KSR.pv.seti(id, v)
|
|
elseif type(v) == "string" then
|
|
KSR.pv.sets(id, v)
|
|
else
|
|
error("unknown type: %s", type(v))
|
|
end
|
|
end
|
|
else
|
|
error("value is not a number or string")
|
|
end
|
|
end
|
|
NGCPXAvp_MT.__tostring = function (s)
|
|
local output
|
|
|
|
local ll = KSR.pvx.xavp_getd_p1(s.name, 0)
|
|
if ll then
|
|
output = utable.tostring(ll)
|
|
end
|
|
KSR.dbg(string.format("output:%s\n", output))
|
|
return output
|
|
end
|
|
setmetatable( t, NGCPXAvp_MT )
|
|
return t
|
|
end
|
|
|
|
function NGCPXAvp.init(level,group,l)
|
|
if level ~= 'caller' and level ~= 'callee' then
|
|
error("unknown level. It has to be [caller|callee]")
|
|
end
|
|
if not l then
|
|
l = {}
|
|
end
|
|
|
|
local t = {
|
|
group = group,
|
|
level = level,
|
|
name = level .. '_' .. group,
|
|
keys = {}
|
|
}
|
|
NGCPXAvp._create(t, l)
|
|
return t
|
|
end
|
|
|
|
function NGCPXAvp._setvalue(id, vtype, value)
|
|
local check
|
|
-- KSR.log("info", string.format("vtype:[%s]:%d", type(vtype), vtype))
|
|
if type(vtype) == "string" then
|
|
vtype = tonumber(vtype)
|
|
end
|
|
if vtype == 0 then
|
|
KSR.dbg(string.format("KSR.pv.sets->%s:%s\n", id, value))
|
|
if type(value) == 'number' then
|
|
value = tostring(value)
|
|
end
|
|
KSR.pv.sets(id, value)
|
|
elseif vtype == 1 then
|
|
if type(value) == "string" then
|
|
value = tonumber(value)
|
|
end
|
|
KSR.pv.seti(id, value)
|
|
else
|
|
KSR.err(string.format("can't set value:%s of type:%s\n",
|
|
tostring(value), tostring(vtype)))
|
|
end
|
|
if value and id then
|
|
check = KSR.pv.get(id)
|
|
if check then
|
|
if type(check) == 'table' then
|
|
utable.tostring(check)
|
|
end
|
|
else
|
|
--error(string.format("%s:nil", id))
|
|
KSR.err(string.format("%s:nil\n", id))
|
|
end
|
|
end
|
|
end
|
|
|
|
function NGCPXAvp:_create(l)
|
|
local name = string.format("$xavp(%s=>dummy)", self.name)
|
|
if not KSR.pv.get(name) then
|
|
NGCPXAvp._setvalue(name, 0, self.level)
|
|
KSR.dbg(string.format("%s created with dummy value:%s\n",
|
|
name, self.level))
|
|
end
|
|
for i=1,#l do
|
|
name = string.format("$xavp(%s[0]=>%s)", tostring(self.name), tostring(l[i].attribute))
|
|
utable.add(self.keys, l[i].attribute)
|
|
NGCPXAvp._setvalue(name, l[i].type, l[i].value)
|
|
end
|
|
end
|
|
|
|
function NGCPXAvp:all(key)
|
|
if key then
|
|
local t = KSR.pvx.xavp_getd_p1(self.name, 0)
|
|
if t then
|
|
return t[key];
|
|
end
|
|
end
|
|
end
|
|
|
|
function NGCPXAvp:clean(key)
|
|
if key then
|
|
local id = string.format("$xavp(%s[0]=>%s[*])", self.name, key)
|
|
KSR.pv.unset(id)
|
|
else
|
|
KSR.pv.unset(string.format("$xavp(%s)", self.name))
|
|
KSR.pv.sets(string.format("$xavp(%s=>dummy)", self.name), self.level)
|
|
end
|
|
end
|
|
-- class
|
|
return NGCPXAvp
|