代码拉取完成,页面将自动刷新
同步操作将从 赵建辉/lua-eco 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
-- SPDX-License-Identifier: MIT
-- Author: Jianhui Zhao <zhaojh329@gmail.com>
local ubus = require 'eco.core.ubus'
local M = {}
local global_timeout = 30.0
local methods = {}
for _, method in ipairs({'close', 'call', 'reply', 'send', 'objects', 'settimeout', 'auto_reconnect'}) do
methods[method] = function(self, ...)
local con = self.con
return con[method](con, ...)
end
end
function methods:add(object, ms)
local con = self.con
for _, m in pairs(ms) do
local cb = m[1]
assert(type(cb) == 'function')
m[1] = function(req, msg)
eco.run(function()
local rc = cb(req, msg)
if type(rc) ~= 'number' then rc = 0 end
con:complete_deferred_request(req, rc)
end)
end
end
local o, err = con:add(object, ms)
if not o then
return false, err
end
return true
end
function methods:listen(event, cb)
local e, err = self.con:listen(event, function(...)
eco.run(cb, ...)
end)
if not e then
return false, err
end
return true
end
local metatable = {
__index = methods
}
function M.connect(path)
local con, err = ubus.connect(path)
if not con then
return nil, err
end
con:settimeout(global_timeout)
return setmetatable({
con = con,
}, metatable)
end
for _, method in ipairs({'call', 'send', 'objects'}) do
M[method] = function(...)
local con, err = M.connect()
if not con then
return nil, err
end
local res, err = con[method](con, ...)
con:close()
if res then
return res
end
return nil, err
end
end
function M.settimeout(timeout)
global_timeout = timeout
end
return setmetatable(M, { __index = ubus })
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。