2009-06-20 12:57:22 +00:00
|
|
|
#!/usr/bin/env lua
|
|
|
|
|
|
|
|
--
|
|
|
|
-- flukso.lua: flukso deamon running on openwrt
|
|
|
|
-- Copyright (c) 2008-2009 jokamajo.org
|
2010-04-19 21:34:07 +00:00
|
|
|
-- 2010 flukso.net
|
2009-06-20 12:57:22 +00:00
|
|
|
--
|
|
|
|
-- This program is free software; you can redistribute it and/or
|
|
|
|
-- modify it under the terms of the GNU General Public License
|
|
|
|
-- as published by the Free Software Foundation; either version 2
|
|
|
|
-- of the License, or (at your option) any later version.
|
|
|
|
--
|
|
|
|
-- This program is distributed in the hope that it will be useful,
|
|
|
|
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
-- GNU General Public License for more details.
|
|
|
|
--
|
|
|
|
-- You should have received a copy of the GNU General Public License
|
|
|
|
-- along with this program; if not, write to the Free Software
|
|
|
|
-- Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
--
|
2009-06-22 12:54:51 +00:00
|
|
|
-- $Id$
|
2009-06-20 12:57:22 +00:00
|
|
|
--
|
|
|
|
|
|
|
|
require 'posix'
|
|
|
|
require 'xmlrpc.http'
|
|
|
|
|
|
|
|
data = require 'flukso.data'
|
|
|
|
auth = require 'flukso.auth'
|
|
|
|
dbg = require 'flukso.dbg'
|
|
|
|
|
|
|
|
local param = {xmlrpcaddress = 'http://logger.flukso.net/xmlrpc',
|
|
|
|
xmlrpcversion = '1',
|
|
|
|
xmlrpcmethod = 'logger.measurementAdd',
|
2010-03-01 13:15:52 +00:00
|
|
|
pwraddress = '255.255.255.255',
|
|
|
|
pwrport = 26488,
|
|
|
|
pwrenable = false,
|
2009-06-20 12:57:22 +00:00
|
|
|
device = '/dev/ttyS0',
|
|
|
|
interval = 300}
|
|
|
|
|
2010-04-19 21:34:07 +00:00
|
|
|
function receive(child, device, pwraddress, pwrport, pwrenable)
|
|
|
|
return coroutine.create(function()
|
2009-06-20 12:57:22 +00:00
|
|
|
-- open the connection to the syslog deamon, specifying our identity
|
|
|
|
posix.openlog('flukso')
|
|
|
|
posix.syslog(30, 'starting the flukso deamon')
|
|
|
|
posix.syslog(30, 'listening for pulses on '..device..'...')
|
|
|
|
|
2010-03-01 13:15:52 +00:00
|
|
|
-- open a UDP socket for transmitting the pwr messages
|
|
|
|
local udp = assert(socket.udp())
|
|
|
|
udp:setoption('broadcast', true)
|
|
|
|
assert(udp:setpeername(pwraddress, pwrport))
|
|
|
|
|
2009-06-20 12:57:22 +00:00
|
|
|
for line in io.lines(device) do
|
|
|
|
if line:sub(1, 3) == 'pls' and line:len() == 47 and line:find(':') == 37 then -- user data + additional data integrity checks
|
|
|
|
posix.syslog(30, 'received pulse from '..device..': '..line:sub(5))
|
|
|
|
|
|
|
|
-- flash the power led for 50ms
|
2010-03-01 13:15:52 +00:00
|
|
|
os.execute('gpioctl clear 4 > /dev/null')
|
2009-06-20 12:57:22 +00:00
|
|
|
socket.select(nil, nil, 0.05)
|
2010-03-01 13:15:52 +00:00
|
|
|
os.execute('gpioctl set 4 > /dev/null')
|
2009-06-20 12:57:22 +00:00
|
|
|
|
|
|
|
local meter, value = line:sub(5, 36), tonumber(line:sub(38))
|
2010-04-19 21:34:07 +00:00
|
|
|
coroutine.resume(child, meter, os.time(), value)
|
2010-03-01 14:03:06 +00:00
|
|
|
elseif line:sub(1, 3) == 'pwr' and line:len() == 47 and line:find(':') == 37 then -- user data + additional data integrity checks
|
|
|
|
if pwrenable then udp:send(line) end
|
2009-06-20 12:57:22 +00:00
|
|
|
elseif line:sub(1, 3) == 'msg' then -- control data
|
|
|
|
posix.syslog(31, 'received message from '..device..': '..line:sub(5))
|
|
|
|
else
|
|
|
|
posix.syslog(27, 'input error on '..device..': '..line)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
posix.syslog(30, 'closing down the flukso deamon')
|
|
|
|
os.exit()
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2010-04-19 21:34:07 +00:00
|
|
|
function buffer(child, interval)
|
|
|
|
return coroutine.create(function(meter, timestamp, value)
|
2009-06-20 12:57:22 +00:00
|
|
|
local measurements = data.new()
|
|
|
|
local threshold = os.time() + interval
|
|
|
|
|
|
|
|
while true do
|
|
|
|
if meter ~= nil and timestamp > 1234567890 then measurements:add(meter, timestamp, value) end
|
|
|
|
if timestamp > threshold and next(measurements) then --checking whether table is not empty
|
2010-04-19 21:34:07 +00:00
|
|
|
coroutine.resume(child, measurements)
|
2009-06-20 12:57:22 +00:00
|
|
|
threshold = timestamp + interval
|
|
|
|
end
|
2010-04-19 21:34:07 +00:00
|
|
|
meter, timestamp, value = coroutine.yield()
|
2009-06-20 12:57:22 +00:00
|
|
|
end
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2010-04-19 21:34:07 +00:00
|
|
|
function filter(child, span, offset)
|
|
|
|
return coroutine.create(function(measurements)
|
2009-06-20 12:57:22 +00:00
|
|
|
while true do
|
|
|
|
measurements:filter(span, offset)
|
2010-04-19 21:34:07 +00:00
|
|
|
coroutine.resume(child, measurements)
|
|
|
|
measurements = coroutine.yield()
|
2009-06-20 12:57:22 +00:00
|
|
|
end
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2010-04-19 21:34:07 +00:00
|
|
|
function send(child, address, version, method)
|
|
|
|
return coroutine.create(function(measurements)
|
2009-06-20 12:57:22 +00:00
|
|
|
while true do
|
|
|
|
local auth = auth.new()
|
|
|
|
auth:load()
|
|
|
|
auth:hmac(measurements)
|
|
|
|
|
|
|
|
local status, ret_or_err, res = pcall(xmlrpc.http.call,
|
|
|
|
address..'/'..version,
|
|
|
|
method,
|
|
|
|
auth,
|
|
|
|
measurements)
|
|
|
|
|
|
|
|
if status then
|
|
|
|
posix.syslog(30, tostring(res))
|
|
|
|
if ret_or_err then --successful xmlrpc call
|
|
|
|
measurements:clear()
|
|
|
|
end
|
|
|
|
else
|
|
|
|
posix.syslog(27, tostring(ret_or_err)..' '..address..' '..tostring(res))
|
|
|
|
end
|
2010-04-19 21:34:07 +00:00
|
|
|
coroutine.resume(child, measurements)
|
|
|
|
measurements = coroutine.yield()
|
2009-06-20 12:57:22 +00:00
|
|
|
end
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
2010-04-19 21:34:07 +00:00
|
|
|
function gc(child)
|
|
|
|
return coroutine.create(function(measurements)
|
2009-06-20 12:57:22 +00:00
|
|
|
while true do
|
|
|
|
posix.syslog(31, tostring(collectgarbage('count')*1024)..' bytes of memory used by Lua before garbage collection cycle')
|
|
|
|
collectgarbage() -- force a complete garbage collection cycle
|
|
|
|
posix.syslog(31, tostring(collectgarbage('count')*1024)..' bytes of memory used by Lua after garbage collection cycle')
|
2010-04-19 21:34:07 +00:00
|
|
|
coroutine.resume(child, measurements)
|
|
|
|
measurements = coroutine.yield()
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
|
|
|
function debug()
|
|
|
|
return coroutine.create(function(measurements)
|
|
|
|
while true do
|
|
|
|
dbg.vardump(measurements)
|
|
|
|
measurements = coroutine.yield()
|
2009-06-20 12:57:22 +00:00
|
|
|
end
|
|
|
|
end)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- receive: listen to the serial port for incoming pulses
|
|
|
|
-- buffer: buffer the pulses in a measurement object
|
|
|
|
-- filter: sweep recursively to filter all redundant entries
|
|
|
|
-- send: report the measurements to the server via xmlrpc
|
|
|
|
-- gc: perform a full garbage collection cycle
|
2010-04-19 21:34:07 +00:00
|
|
|
-- debug: dump measurements table to stdout
|
|
|
|
|
|
|
|
local chain = receive(
|
|
|
|
buffer(
|
|
|
|
filter(
|
|
|
|
filter(
|
|
|
|
filter(
|
|
|
|
send(
|
|
|
|
gc(
|
|
|
|
debug()
|
|
|
|
)
|
|
|
|
, param.xmlrpcaddress, param.xmlrpcversion, param.xmlrpcmethod)
|
|
|
|
, 86400, 172800)
|
|
|
|
, 900, 7200)
|
|
|
|
, 60, 0)
|
|
|
|
, param.interval)
|
|
|
|
, param.device, param.pwraddress, param.pwrport, param.pwrenable)
|
|
|
|
|
|
|
|
coroutine.resume(chain)
|