Skip to content

Instantly share code, notes, and snippets.

@cloudwu
Last active September 23, 2017 09:58
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save cloudwu/63c08b7d6f9be1d0950f to your computer and use it in GitHub Desktop.
Save cloudwu/63c08b7d6f9be1d0950f to your computer and use it in GitHub Desktop.
A timeout tunnel service (skynet)
local skynet = require "skynet"
require "skynet.manager"
local mode = ...
if mode == "slave" then
skynet.start(function()
skynet.dispatch("lua", function(session, address, ti, ...)
if session == 0 then
print("==>", ti, ...)
return
end
skynet.sleep(ti)
skynet.ret(skynet.pack(...))
end)
end)
else
skynet.start(function()
local slave = skynet.newservice(SERVICE_NAME , "slave")
-- default time is 1 second
local tun = skynet.launch("snlua", "totun", slave, 1)
skynet.send(tun, "lua", "send")
print(skynet.call(tun, "lua", 50, "ping", 50))
print(skynet.call(tun, "lua", 99, "ping", 99))
print(skynet.call(tun, "lua", 200, "ping", 200))
end)
end
-- timeout tunnel
local c = require "skynet.core"
local dest, timeout = ...
dest = tonumber(dest)
timeout = tonumber(timeout or 1) * 10
local req = {}
local expired = {}
for i=1,timeout do
expired[i] = {}
end
local current = 1
local current_time = c.intcommand("NOW")
local send = c.send
local function exit()
for _, pack_session in pairs(req) do
send(pack_session & 0xffffffff, 7, pack_session >> 32, "")
end
c.command("EXIT")
end
local function forward(type, msg, sz, session, source)
if type == 1 then
if source == dest then
local pack_session = req[session]
if pack_session then
-- response
req[session] = nil
send(pack_session & 0xffffffff, 1, pack_session >> 32, msg, sz)
else
c.trash(msg,sz)
c.error(string.format("Timeout message from :%08x", source))
end
elseif source == 0 then
-- timer, ignore the session
local t = c.intcommand("NOW")
c.intcommand("TIMEOUT", current_time + 10 - t) -- next tick (0.1s)
current_time = current_time + 10
current = current + 1
if current > timeout then
current = 1
end
local e = expired[current]
-- clear timeout session
for idx, session in ipairs(e) do
local pack_session = req[session]
if pack_session then
req[session] = nil
source = pack_session & 0xffffffff
-- the session is timeout, raise an error (7 is skynet.PTYPE_ERROR)
c.error(string.format(":%08x timeout: session = %x", source, session))
if not send(source , 7, pack_session >> 32, "") then
exit()
return
end
end
req[session] = nil
e[idx] = nil
end
else
c.trash(msg,sz)
c.error("Trash message")
end
else
local s = session == 0 and 0 or nil
local session_id = send(dest, type, s, msg, sz)
if not session_id then
c.trash(msg,sz)
send(source, 7, session, "")
c.error(string.format(":%08x dead",dest))
exit()
return
end
if not s then
req[session_id] = session << 32 | source
local e = expired[current]
e[#e+1] = session_id
end
end
end
c.callback(forward, true)
c.intcommand("TIMEOUT",10) -- 10 ticks / second
@feihuroger
Copy link

在现在版本,pre skynet 1.1下, 这个例子运行起来,但没有达到效果。并且有错误信息
调试一下后,发现这句:
local current_time = c.intcommand("NOW")
current_time 为nil。

求解惑?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment