2022-03-25 16:17:46 +00:00
|
|
|
--
|
|
|
|
-- Nuclear Generation Facility SCADA Coordinator
|
|
|
|
--
|
|
|
|
|
2022-05-14 17:32:42 +00:00
|
|
|
require("/initenv").init_env()
|
|
|
|
|
2022-06-05 19:09:02 +00:00
|
|
|
local log = require("scada-common.log")
|
|
|
|
local ppm = require("scada-common.ppm")
|
2022-05-04 17:37:01 +00:00
|
|
|
local util = require("scada-common.util")
|
2022-03-25 16:17:46 +00:00
|
|
|
|
2022-07-05 16:47:02 +00:00
|
|
|
local apisessions = require("coordinator.apisessions")
|
2022-06-05 19:09:02 +00:00
|
|
|
local config = require("coordinator.config")
|
2022-05-11 15:31:02 +00:00
|
|
|
local coordinator = require("coordinator.coordinator")
|
2022-06-05 19:09:02 +00:00
|
|
|
local renderer = require("coordinator.renderer")
|
2022-03-25 16:17:46 +00:00
|
|
|
|
2022-07-19 18:03:02 +00:00
|
|
|
local COORDINATOR_VERSION = "alpha-v0.3.4"
|
2022-03-25 16:17:46 +00:00
|
|
|
|
2022-04-29 17:32:37 +00:00
|
|
|
local print = util.print
|
|
|
|
local println = util.println
|
2022-03-25 16:17:46 +00:00
|
|
|
local print_ts = util.print_ts
|
2022-04-29 17:32:37 +00:00
|
|
|
local println_ts = util.println_ts
|
2022-03-25 16:17:46 +00:00
|
|
|
|
2022-07-05 16:47:02 +00:00
|
|
|
local log_graphics = coordinator.log_graphics
|
|
|
|
local log_sys = coordinator.log_sys
|
|
|
|
local log_boot = coordinator.log_boot
|
|
|
|
local log_comms = coordinator.log_comms
|
2022-07-06 03:48:01 +00:00
|
|
|
local log_comms_connecting = coordinator.log_comms_connecting
|
2022-07-05 16:47:02 +00:00
|
|
|
|
2022-06-05 19:09:02 +00:00
|
|
|
----------------------------------------
|
|
|
|
-- config validation
|
|
|
|
----------------------------------------
|
|
|
|
|
|
|
|
local cfv = util.new_validator()
|
|
|
|
|
|
|
|
cfv.assert_port(config.SCADA_SV_PORT)
|
|
|
|
cfv.assert_port(config.SCADA_SV_LISTEN)
|
|
|
|
cfv.assert_port(config.SCADA_API_LISTEN)
|
|
|
|
cfv.assert_type_int(config.NUM_UNITS)
|
2022-07-05 16:47:02 +00:00
|
|
|
cfv.assert_type_bool(config.RECOLOR)
|
2022-06-05 19:09:02 +00:00
|
|
|
cfv.assert_type_str(config.LOG_PATH)
|
|
|
|
cfv.assert_type_int(config.LOG_MODE)
|
|
|
|
cfv.assert_type_bool(config.SECURE)
|
|
|
|
cfv.assert_type_str(config.PASSWORD)
|
|
|
|
assert(cfv.valid(), "bad config file: missing/invalid fields")
|
|
|
|
|
|
|
|
----------------------------------------
|
|
|
|
-- log init
|
|
|
|
----------------------------------------
|
|
|
|
|
2022-05-29 18:34:09 +00:00
|
|
|
log.init(config.LOG_PATH, config.LOG_MODE)
|
2022-04-29 17:32:37 +00:00
|
|
|
|
2022-05-04 17:37:01 +00:00
|
|
|
log.info("========================================")
|
|
|
|
log.info("BOOTING coordinator.startup " .. COORDINATOR_VERSION)
|
|
|
|
log.info("========================================")
|
2022-05-01 19:34:44 +00:00
|
|
|
println(">> SCADA Coordinator " .. COORDINATOR_VERSION .. " <<")
|
2022-03-25 16:17:46 +00:00
|
|
|
|
2022-06-05 19:09:02 +00:00
|
|
|
----------------------------------------
|
|
|
|
-- startup
|
|
|
|
----------------------------------------
|
|
|
|
|
2022-04-29 17:32:37 +00:00
|
|
|
-- mount connected devices
|
|
|
|
ppm.mount_all()
|
2022-03-25 16:17:46 +00:00
|
|
|
|
2022-05-29 18:34:09 +00:00
|
|
|
-- setup monitors
|
|
|
|
local configured, monitors = coordinator.configure_monitors(config.NUM_UNITS)
|
|
|
|
if not configured then
|
|
|
|
println("boot> monitor setup failed")
|
|
|
|
log.fatal("monitor configuration failed")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2022-06-25 22:39:21 +00:00
|
|
|
log.info("monitors ready, dmesg output incoming...")
|
2022-03-25 16:17:46 +00:00
|
|
|
|
2022-05-29 18:34:09 +00:00
|
|
|
-- init renderer
|
|
|
|
renderer.set_displays(monitors)
|
2022-07-05 16:47:02 +00:00
|
|
|
renderer.reset(config.RECOLOR)
|
2022-05-29 18:34:09 +00:00
|
|
|
renderer.init_dmesg()
|
|
|
|
|
2022-07-05 16:47:02 +00:00
|
|
|
log_graphics("displays connected and reset")
|
|
|
|
log_sys("system start on " .. os.date("%c"))
|
|
|
|
log_boot("starting " .. COORDINATOR_VERSION)
|
2022-05-29 18:34:09 +00:00
|
|
|
|
|
|
|
-- get the communications modem
|
|
|
|
local modem = ppm.get_wireless_modem()
|
2022-03-25 16:17:46 +00:00
|
|
|
if modem == nil then
|
2022-07-05 16:47:02 +00:00
|
|
|
log_comms("wireless modem not found")
|
2022-05-29 18:34:09 +00:00
|
|
|
println("boot> wireless modem not found")
|
|
|
|
log.fatal("no wireless modem on startup")
|
2022-03-25 16:17:46 +00:00
|
|
|
return
|
2022-07-05 16:47:02 +00:00
|
|
|
else
|
|
|
|
log_comms("wireless modem connected")
|
2022-03-25 16:17:46 +00:00
|
|
|
end
|
2022-05-29 18:34:09 +00:00
|
|
|
|
2022-07-05 16:47:02 +00:00
|
|
|
-- create connection watchdog
|
|
|
|
local conn_watchdog = util.new_watchdog(5)
|
|
|
|
conn_watchdog.cancel()
|
|
|
|
log.debug("boot> conn watchdog created")
|
|
|
|
|
|
|
|
-- start comms, open all channels
|
|
|
|
local coord_comms = coordinator.comms(COORDINATOR_VERSION, modem, config.SCADA_SV_PORT, config.SCADA_SV_LISTEN, config.SCADA_API_LISTEN, conn_watchdog)
|
|
|
|
log.debug("boot> comms init")
|
|
|
|
log_comms("comms initialized")
|
|
|
|
|
2022-07-06 03:48:01 +00:00
|
|
|
-- base loop clock (2Hz, 10 ticks)
|
|
|
|
local MAIN_CLOCK = 0.5
|
2022-07-05 16:47:02 +00:00
|
|
|
local loop_clock = util.new_clock(MAIN_CLOCK)
|
2022-06-06 19:42:39 +00:00
|
|
|
|
2022-07-06 03:48:01 +00:00
|
|
|
local tick_waiting, task_done = log_comms_connecting("attempting to connect to configured supervisor on channel " .. config.SCADA_SV_PORT)
|
|
|
|
|
|
|
|
-- attempt to establish a connection with the supervisory computer
|
|
|
|
if not coord_comms.sv_connect(60, tick_waiting, task_done) then
|
|
|
|
log_comms("supervisor connection failed")
|
|
|
|
println("boot> failed to connect to supervisor")
|
|
|
|
log.fatal("failed to connect to supervisor")
|
|
|
|
log_sys("system shutdown")
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2022-07-05 16:47:02 +00:00
|
|
|
----------------------------------------
|
2022-06-25 20:21:57 +00:00
|
|
|
-- start the UI
|
2022-07-05 16:47:02 +00:00
|
|
|
----------------------------------------
|
2022-06-25 20:21:57 +00:00
|
|
|
|
2022-07-05 16:47:02 +00:00
|
|
|
log_graphics("starting UI...")
|
2022-06-25 20:21:57 +00:00
|
|
|
-- util.psleep(3)
|
2022-06-06 19:42:39 +00:00
|
|
|
|
2022-07-05 16:47:02 +00:00
|
|
|
local draw_start = util.time_ms()
|
|
|
|
|
2022-06-16 15:24:35 +00:00
|
|
|
local ui_ok, message = pcall(renderer.start_ui)
|
2022-06-06 19:42:39 +00:00
|
|
|
if not ui_ok then
|
2022-07-05 16:47:02 +00:00
|
|
|
renderer.close_ui(config.RECOLOR)
|
|
|
|
log_graphics(util.c("UI crashed: ", message))
|
2022-06-25 20:21:57 +00:00
|
|
|
println_ts("UI crashed")
|
|
|
|
log.fatal(util.c("ui crashed with error ", message))
|
2022-07-05 16:47:02 +00:00
|
|
|
else
|
|
|
|
log_graphics("first UI draw took " .. (util.time_ms() - draw_start) .. "ms")
|
|
|
|
|
|
|
|
-- start clock
|
|
|
|
loop_clock.start()
|
|
|
|
end
|
|
|
|
|
|
|
|
----------------------------------------
|
|
|
|
-- main event loop
|
|
|
|
----------------------------------------
|
|
|
|
|
|
|
|
-- start connection watchdog
|
|
|
|
conn_watchdog.feed()
|
|
|
|
log.debug("boot> conn watchdog started")
|
|
|
|
|
|
|
|
-- event loop
|
|
|
|
-- ui_ok will never change in this loop, same as while true or exit if UI start failed
|
|
|
|
while ui_ok do
|
|
|
|
---@diagnostic disable-next-line: undefined-field
|
|
|
|
local event, param1, param2, param3, param4, param5 = os.pullEventRaw()
|
|
|
|
|
|
|
|
-- handle event
|
|
|
|
if event == "peripheral_detach" then
|
|
|
|
local type, device = ppm.handle_unmount(param1)
|
|
|
|
|
|
|
|
if type ~= nil and device ~= nil then
|
|
|
|
if type == "modem" then
|
|
|
|
-- we only really care if this is our wireless modem
|
|
|
|
if device == modem then
|
|
|
|
log_sys("comms modem disconnected")
|
|
|
|
println_ts("wireless modem disconnected!")
|
|
|
|
log.error("comms modem disconnected!")
|
|
|
|
else
|
|
|
|
log_sys("non-comms modem disconnected")
|
|
|
|
log.warning("non-comms modem disconnected")
|
|
|
|
end
|
|
|
|
elseif type == "monitor" then
|
|
|
|
-- @todo: handle monitor loss
|
|
|
|
end
|
|
|
|
end
|
|
|
|
elseif event == "peripheral" then
|
|
|
|
local type, device = ppm.mount(param1)
|
|
|
|
|
|
|
|
if type ~= nil and device ~= nil then
|
|
|
|
if type == "modem" then
|
|
|
|
if device.isWireless() then
|
|
|
|
-- reconnected modem
|
|
|
|
modem = device
|
|
|
|
coord_comms.reconnect_modem(modem)
|
|
|
|
|
|
|
|
log_sys("comms modem reconnected")
|
|
|
|
println_ts("wireless modem reconnected.")
|
|
|
|
else
|
|
|
|
log_sys("wired modem reconnected")
|
|
|
|
end
|
|
|
|
elseif type == "monitor" then
|
|
|
|
-- @todo: handle monitor reconnect
|
|
|
|
end
|
|
|
|
end
|
|
|
|
elseif event == "timer" then
|
|
|
|
if loop_clock.is_clock(param1) then
|
|
|
|
-- main loop tick
|
|
|
|
|
|
|
|
-- free any closed sessions
|
|
|
|
--apisessions.free_all_closed()
|
|
|
|
|
|
|
|
loop_clock.start()
|
|
|
|
elseif conn_watchdog.is_timer(param1) then
|
|
|
|
-- supervisor watchdog timeout
|
|
|
|
local msg = "supervisor server timeout"
|
|
|
|
log_comms(msg)
|
|
|
|
println_ts(msg)
|
|
|
|
log.warning(msg)
|
|
|
|
else
|
|
|
|
-- a non-clock/main watchdog timer event, check API watchdogs
|
|
|
|
--apisessions.check_all_watchdogs(param1)
|
|
|
|
end
|
|
|
|
elseif event == "modem_message" then
|
|
|
|
-- got a packet
|
|
|
|
local packet = coord_comms.parse_packet(param1, param2, param3, param4, param5)
|
|
|
|
coord_comms.handle_packet(packet)
|
|
|
|
end
|
|
|
|
|
|
|
|
-- check for termination request
|
|
|
|
if event == "terminate" or ppm.should_terminate() then
|
|
|
|
log_comms("terminate requested, closing sessions...")
|
|
|
|
println_ts("closing sessions...")
|
|
|
|
apisessions.close_all()
|
|
|
|
log_comms("api sessions closed")
|
|
|
|
break
|
|
|
|
end
|
2022-06-06 19:42:39 +00:00
|
|
|
end
|
2022-06-25 20:21:57 +00:00
|
|
|
|
2022-07-05 16:47:02 +00:00
|
|
|
renderer.close_ui(config.RECOLOR)
|
|
|
|
log_sys("system shutdown")
|
2022-06-25 20:21:57 +00:00
|
|
|
|
|
|
|
println_ts("exited")
|
|
|
|
log.info("exited")
|