From: Roman Bazalevskiy Date: Tue, 31 Oct 2017 06:05:43 +0000 (+0300) Subject: "Умная" генерация ID клиента для обеспечения одновременной работы нескольких экземпля... X-Git-Url: https://git.rvb.name/openhab-process.git/commitdiff_plain/4a431531b59156140584a3b0f2e5f4e5188a1f75 "Умная" генерация ID клиента для обеспечения одновременной работы нескольких экземпляров скрипта. --- diff --git a/mqtt-bt/scan-beacons b/mqtt-bt/scan-beacons index 34de7dc..f91e59c 100644 --- a/mqtt-bt/scan-beacons +++ b/mqtt-bt/scan-beacons @@ -22,7 +22,11 @@ function getConfig(configname) mqtt_passwd = cur.get(config,"mqtt","password") if mqtt_host and not mqtt_id then - mqtt_id="beaconmon" + socket = require("socket") + posix = require("posix") + hostname = socket.dns.gethostname() + pid = posix.getpid() + mqtt_id="beaconmon-"..hostname.."-"..pid end if mqtt_host and not mqtt_port then @@ -77,7 +81,7 @@ function open_dump() f = assert(io.popen ("/usr/bin/hcidump --raw")) run_command("/usr/bin/hciconfig hci0 down") run_command("/usr/bin/hciconfig hci0 up") - f_null = assert(io.popen ("/usr/bin/hcitool lescan --duplicates")) + f_null = assert(io.popen ("/usr/bin/hcitool lescan --duplicates --passive")) return f @@ -102,8 +106,9 @@ function trim(s) end function mqtt_pub(path,value) - printLog("Pub "..path.." "..value) - return mqtt_client:publish(path,value) + res=mqtt_client:publish(path,value) + printLog("Pub "..path.." "..value.." returned "..res); + return res end function process_packet(packet) @@ -136,12 +141,19 @@ function process_packet(packet) type="" mac=bytes[13]..':'..bytes[12]..':'..bytes[11]..':'..bytes[10]..':'..bytes[9]..':'..bytes[8] flags=bytes[14] - power=tonumber("0x"..bytes[len-1])-256 - tx=tonumber("0x"..bytes[len])-256 local j = 15 + tx=tonumber("0x"..bytes[len])-256 while j