Merge pull request #6 from 0wQ/notify-retry-limit
✨ 添加 `config.NOTIFY_RETRY_MAX` 通知最大重发次数
This commit is contained in:
commit
9cf38d402a
@ -46,6 +46,9 @@ return {
|
|||||||
-- 通知内容追加更多信息 (通知内容增加会导致流量消耗增加)
|
-- 通知内容追加更多信息 (通知内容增加会导致流量消耗增加)
|
||||||
NOTIFY_APPEND_MORE_INFO = true,
|
NOTIFY_APPEND_MORE_INFO = true,
|
||||||
--
|
--
|
||||||
|
-- 通知最大重发次数
|
||||||
|
NOTIFY_RETRY_MAX = 100,
|
||||||
|
--
|
||||||
-- 开启低功耗模式, USB 断开连接无法查看日志, RNDIS 网卡会断开
|
-- 开启低功耗模式, USB 断开连接无法查看日志, RNDIS 网卡会断开
|
||||||
LOW_POWER_MODE = false,
|
LOW_POWER_MODE = false,
|
||||||
}
|
}
|
||||||
|
@ -245,7 +245,7 @@ end
|
|||||||
|
|
||||||
--- 发送通知
|
--- 发送通知
|
||||||
-- @param msg 消息内容
|
-- @param msg 消息内容
|
||||||
-- @return true: 发送成功 or 出错但无需重试, false: 发送失败, 需要重发
|
-- @return true: 无需重发, false: 需要重发
|
||||||
function util_notify.send(msg)
|
function util_notify.send(msg)
|
||||||
log.info("util_notify.send", "发送通知", config.NOTIFY_TYPE)
|
log.info("util_notify.send", "发送通知", config.NOTIFY_TYPE)
|
||||||
|
|
||||||
@ -288,21 +288,37 @@ function util_notify.send(msg)
|
|||||||
|
|
||||||
local code, headers, body = notify(msg)
|
local code, headers, body = notify(msg)
|
||||||
if code == nil then
|
if code == nil then
|
||||||
|
log.info("util_notify.send", "发送通知失败, 无需重发", "code:", code, "body:", body)
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
if code >= 200 and code < 500 then
|
if code == -6 then
|
||||||
|
-- 发生在 url 过长时, 重发也不会成功
|
||||||
|
log.info("util_notify.send", "发送通知失败, 无需重发", "code:", code, "body:", body)
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
if code >= 200 and code < 300 then
|
||||||
|
-- http 2xx 成功
|
||||||
log.info("util_notify.send", "发送通知成功", "code:", code, "body:", body)
|
log.info("util_notify.send", "发送通知成功", "code:", code, "body:", body)
|
||||||
return true
|
return true
|
||||||
else
|
|
||||||
log.error("util_notify.send", "发送通知失败", "code:", code, "body:", body)
|
|
||||||
return false
|
|
||||||
end
|
end
|
||||||
|
if code >= 300 and code < 400 then
|
||||||
|
-- http 3xx 重定向, 重发也不会成功
|
||||||
|
log.info("util_notify.send", "发送通知失败, 无需重发", "code:", code, "body:", body)
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
if code >= 400 and code < 500 then
|
||||||
|
-- http 4xx 客户端错误, 重发也不会成功
|
||||||
|
log.info("util_notify.send", "发送通知失败, 无需重发", "code:", code, "body:", body)
|
||||||
|
return true
|
||||||
|
end
|
||||||
|
log.error("util_notify.send", "发送通知失败, 等待重发", "code:", code, "body:", body)
|
||||||
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
--- 添加到消息队列
|
--- 添加到消息队列
|
||||||
-- @param msg 消息内容
|
-- @param msg 消息内容
|
||||||
function util_notify.add(msg)
|
function util_notify.add(msg)
|
||||||
table.insert(msg_queue, msg)
|
table.insert(msg_queue, {msg = msg, retry = 0})
|
||||||
sys.publish("NEW_MSG")
|
sys.publish("NEW_MSG")
|
||||||
log.debug("util_notify.add", "添加到消息队列, 当前队列长度:", #msg_queue)
|
log.debug("util_notify.add", "添加到消息队列, 当前队列长度:", #msg_queue)
|
||||||
end
|
end
|
||||||
@ -311,18 +327,28 @@ end
|
|||||||
-- 发送成功则从消息队列中删除
|
-- 发送成功则从消息队列中删除
|
||||||
-- 发送失败则等待下次轮询
|
-- 发送失败则等待下次轮询
|
||||||
local function poll()
|
local function poll()
|
||||||
local msg
|
local item, result
|
||||||
while true do
|
while true do
|
||||||
-- 消息队列非空, 且网络已注册
|
-- 消息队列非空, 且网络已注册
|
||||||
if next(msg_queue) ~= nil and mobile.status() == 1 then
|
if next(msg_queue) ~= nil and mobile.status() == 1 then
|
||||||
log.debug("util_notify.poll", "轮询消息队列中, 当前队列长度:", #msg_queue)
|
log.debug("util_notify.poll", "轮询消息队列中, 当前队列长度:", #msg_queue)
|
||||||
msg = msg_queue[1]
|
|
||||||
if util_notify.send(msg) then
|
item = msg_queue[1]
|
||||||
table.remove(msg_queue, 1)
|
table.remove(msg_queue, 1)
|
||||||
sys.wait(50)
|
|
||||||
|
if item.retry > (config.NOTIFY_RETRY_MAX or 100) then
|
||||||
|
log.error("util_notify.poll", "超过最大重发次数", "msg:", item.msg)
|
||||||
else
|
else
|
||||||
sys.wait(2000)
|
result = util_notify.send(item.msg)
|
||||||
|
item.retry = item.retry + 1
|
||||||
|
|
||||||
|
if not result then
|
||||||
|
-- 发送失败, 移到队尾
|
||||||
|
table.insert(msg_queue, item)
|
||||||
|
sys.wait(5000)
|
||||||
end
|
end
|
||||||
|
end
|
||||||
|
sys.wait(50)
|
||||||
else
|
else
|
||||||
sys.waitUntil("NEW_MSG", 1000 * 10)
|
sys.waitUntil("NEW_MSG", 1000 * 10)
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user