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
|
--[[
LuCIRPCd
(c) 2009 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
$Id$
]]--
local uci = require "luci.model.uci"
local tostring, getmetatable, pairs = tostring, getmetatable, pairs
local error, type = error, type
local nixio = require "nixio"
local srv = require "luci.lucid.rpc.server"
module "luci.lucid.rpc.ruci"
function _factory()
local m = srv.Module("Remote UCI API")
for k, v in pairs(_M) do
if type(v) == "function" and v ~= _factory then
m:add(k, srv.Method.extended(v))
end
end
return m
end
local function getinst(session, name)
return session.ruci and session.ruci[name]
end
local function setinst(session, obj)
session.ruci = session.ruci or {}
local name = tostring(obj):match("0x([a-z0-9]+)")
session.ruci[name] = obj
return name
end
local Cursor = getmetatable(uci.cursor())
for name, func in pairs(Cursor) do
_M[name] = function(session, inst, ...)
inst = getinst(session, inst)
return inst[name](inst, ...)
end
end
function cursor(session, ...)
return setinst(session, uci.cursor(...))
end
function cursor_state(session, ...)
return setinst(session, uci.cursor_state(...))
end
function foreach(session, inst, config, sectiontype)
local inst = getinst(session, inst)
local secs = {}
inst:foreach(config, sectiontype, function(s) secs[#secs+1] = s end)
return secs
end
|