如何在 LUA 中使用 table 来 ping 多个设备并检测变量状态的变化

How can I use a table in LUA for pinging multiple devices and detecting change in variable status

我正在尝试以定义的时间间隔 ping 本地网络上的多个 IP 地址,然后仅在设备连接时发送消息。我设法让它在单个设备上工作,但是当我向 table 添加其他设备时,代码失败。 提前谢谢了。

没有 table 且只有一个 IP 地址的早期版本可以完美运行。但是添加 table 和 "for key,value loop" 仅当 table.

中有单个条目时才有效
local tble = {
    ["device name"] = "192.168.1.204"
}
for key,value in pairs(tble) do

statuscheckIP=os.execute("arping -f -w 3 " .. value)


if statuscheckIP  ~= lastcheckIP then
if statuscheckIP == 0 and lastcheckIP == 256 then
subject ="" ..key.. " , ( IP Address " ..value.. ") Connected"
message = "Connection Alert\nThe device named " ..key.. ", with the IP address " ..value.. " has just connected to the WiFi network"
  --send email notification
  luup.call_action("urn:upnp-org:serviceId:SmtpNotification1", "SendEmail", { Recipient_Name="SomeOne", Recipient_eMail="someone@somewhere.com", Subject= subject, Message=message }, 24)luup.call_action("urn:upnporg:serviceId:SmtpNotification1","ResetCount",{}, 24)
  else
  end
 end
end
lastcheckIP = statuscheckIP

您发布的代码有效。由于 table.

中的条目较多,导致失败的原因并不多

os.execute Execute an operating system shell command. This is like the C system() function. The system dependent status code is returned.

运行 os.execute 将启动一个 arping 和 return 一个退出代码。那么你正在比较 statuscheckIP == 0lastcheckIP == 256。 if 之前是多余的。如果为真,您正在发送消息并继续。

完成所有条目后,您将 lastcheckIP 设置为 statusCheckIP,这可能是您的错误。它应该在最后一个 if 之前并且在你的循环中。但即便如此,如果 0 是唯一正确的 return 代码,那也没有意义。如果将 lastcheckIP 设置为任何其他值,那么您的两个 if 将永远不会再次成立。

要么你的最后一行 lastcheckIP = statuscheckIP 放错了,lastcheckIP 从未初始化为 256,要么你应该重新考虑你的整个程序。

编辑:

在了解所提供程序的意图后,我创建了一个可能有效的示例。这应该向您展示如何轻松地将 Lua 中的 table 用作结构。我无法测试以下代码。

local WAIT_TIME = 10

local STATUS_CODE_CONNECTED = 0
local STATUS_CODE_NOT_CONNECT = 256 -- not sure about this (return code from arping for failure)

local device_table = 
{
    ["device_name1"] =
    {
        ip = "<ip address>",
        status_code = STATUS_CODE_NOT_CONNECT
    },
    ["device_name1"] =
    {
        ip = "<ip address>",
        status_code = STATUS_CODE_NOT_CONNECT
    } 
    -- , ...
}

while true do
    -- check for changed return codes
    for device_name, device in pairs(device_table) do
        local temp_status_code = os.execute("arping -f -w 3 " .. device.ip)

        -- status code changed
        if temp_status_code ~= device.status_code then

            -- device connected
            if temp_status_code == STATUS_CODE_CONNECTED then
                local subject = "" .. device_name .. " , ( IP Address " .. device.ip .. ") Connected"
                local message = "Connection Alert\nThe device named " .. device_name .. ", with the IP address " .. device.ip .. " has just connected to the WiFi network"

                --send email notification

                luup.call_action(
                    "urn:upnp-org:serviceId:SmtpNotification1", 
                    "SendEmail", 
                    { 
                        Recipient_Name = "SomeOne", 
                        Recipient_eMail = "someone@somewhere.com", 
                        Subject = subject, 
                        Message = message 
                    }, 24)
                luup.call_action(
                    "urn:upnporg:serviceId:SmtpNotification1", 
                    "ResetCount",
                    { }, 24)
            end

            -- update last device status_code if changed
            device.status_code = temp_status_code
        end
    end

    os.execute("sleep " .. tonumber(WAIT_TIME)) -- wait some time for next check
end

如果我对你的理解有误,你要么不想一直使用这个程序 运行,要么不想把所有地址都放在一个 table 中,那么你应该再问一遍或其他地方,因为那将是题外话。