2022-01-14 21:33:09 +00:00
|
|
|
--
|
|
|
|
-- Reactor Programmable Logic Controller
|
|
|
|
--
|
|
|
|
|
2022-05-14 17:32:42 +00:00
|
|
|
require("/initenv").init_env()
|
|
|
|
|
2022-11-13 20:56:27 +00:00
|
|
|
local crash = require("scada-common.crash")
|
2022-05-31 18:14:17 +00:00
|
|
|
local log = require("scada-common.log")
|
|
|
|
local mqueue = require("scada-common.mqueue")
|
|
|
|
local ppm = require("scada-common.ppm")
|
|
|
|
local util = require("scada-common.util")
|
2022-03-14 18:19:14 +00:00
|
|
|
|
2022-05-31 18:14:17 +00:00
|
|
|
local config = require("reactor-plc.config")
|
|
|
|
local plc = require("reactor-plc.plc")
|
2022-05-11 15:31:02 +00:00
|
|
|
local threads = require("reactor-plc.threads")
|
2022-01-14 21:33:09 +00:00
|
|
|
|
2023-02-20 19:50:20 +00:00
|
|
|
local R_PLC_VERSION = "beta-v0.11.1"
|
2022-01-14 21:33:09 +00:00
|
|
|
|
2022-04-05 21:29:27 +00:00
|
|
|
local print = util.print
|
|
|
|
local println = util.println
|
2022-01-14 21:33:09 +00:00
|
|
|
local print_ts = util.print_ts
|
2022-04-05 21:29:27 +00:00
|
|
|
local println_ts = util.println_ts
|
2022-01-14 21:33:09 +00:00
|
|
|
|
2022-06-05 19:09:02 +00:00
|
|
|
----------------------------------------
|
|
|
|
-- config validation
|
|
|
|
----------------------------------------
|
|
|
|
|
|
|
|
local cfv = util.new_validator()
|
|
|
|
|
|
|
|
cfv.assert_type_bool(config.NETWORKED)
|
|
|
|
cfv.assert_type_int(config.REACTOR_ID)
|
|
|
|
cfv.assert_port(config.SERVER_PORT)
|
|
|
|
cfv.assert_port(config.LISTEN_PORT)
|
2023-02-07 22:31:22 +00:00
|
|
|
cfv.assert_type_int(config.TRUSTED_RANGE)
|
2023-02-13 17:27:22 +00:00
|
|
|
cfv.assert_type_num(config.COMMS_TIMEOUT)
|
2023-02-13 17:29:59 +00:00
|
|
|
cfv.assert_min(config.COMMS_TIMEOUT, 2)
|
2022-06-05 19:09:02 +00:00
|
|
|
cfv.assert_type_str(config.LOG_PATH)
|
|
|
|
cfv.assert_type_int(config.LOG_MODE)
|
2023-02-13 17:27:22 +00:00
|
|
|
|
2022-06-05 19:09:02 +00:00
|
|
|
assert(cfv.valid(), "bad config file: missing/invalid fields")
|
|
|
|
|
|
|
|
----------------------------------------
|
|
|
|
-- log init
|
|
|
|
----------------------------------------
|
|
|
|
|
2022-04-29 17:36:00 +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 reactor-plc.startup " .. R_PLC_VERSION)
|
|
|
|
log.info("========================================")
|
2022-04-05 21:29:27 +00:00
|
|
|
println(">> Reactor PLC " .. R_PLC_VERSION .. " <<")
|
2022-04-02 15:22:44 +00:00
|
|
|
|
2022-11-13 20:56:27 +00:00
|
|
|
crash.set_env("plc", R_PLC_VERSION)
|
|
|
|
|
2022-06-05 19:09:02 +00:00
|
|
|
----------------------------------------
|
2022-11-13 20:56:27 +00:00
|
|
|
-- main application
|
2022-06-05 19:09:02 +00:00
|
|
|
----------------------------------------
|
|
|
|
|
2022-11-13 20:56:27 +00:00
|
|
|
local function main()
|
|
|
|
----------------------------------------
|
|
|
|
-- startup
|
|
|
|
----------------------------------------
|
|
|
|
|
|
|
|
-- mount connected devices
|
|
|
|
ppm.mount_all()
|
|
|
|
|
|
|
|
-- shared memory across threads
|
|
|
|
---@class plc_shared_memory
|
|
|
|
local __shared_memory = {
|
|
|
|
-- networked setting
|
|
|
|
networked = config.NETWORKED, ---@type boolean
|
|
|
|
|
|
|
|
-- PLC system state flags
|
|
|
|
---@class plc_state
|
|
|
|
plc_state = {
|
|
|
|
init_ok = true,
|
|
|
|
shutdown = false,
|
|
|
|
degraded = false,
|
|
|
|
reactor_formed = true,
|
|
|
|
no_reactor = false,
|
|
|
|
no_modem = false
|
|
|
|
},
|
|
|
|
|
|
|
|
-- control setpoints
|
|
|
|
---@class setpoints
|
|
|
|
setpoints = {
|
|
|
|
burn_rate_en = false,
|
|
|
|
burn_rate = 0.0
|
|
|
|
},
|
|
|
|
|
|
|
|
-- core PLC devices
|
|
|
|
plc_dev = {
|
|
|
|
reactor = ppm.get_fission_reactor(),
|
|
|
|
modem = ppm.get_wireless_modem()
|
|
|
|
},
|
|
|
|
|
|
|
|
-- system objects
|
|
|
|
plc_sys = {
|
|
|
|
rps = nil, ---@type rps
|
|
|
|
plc_comms = nil, ---@type plc_comms
|
|
|
|
conn_watchdog = nil ---@type watchdog
|
|
|
|
},
|
|
|
|
|
|
|
|
-- message queues
|
|
|
|
q = {
|
|
|
|
mq_rps = mqueue.new(),
|
|
|
|
mq_comms_tx = mqueue.new(),
|
|
|
|
mq_comms_rx = mqueue.new()
|
|
|
|
}
|
2022-04-25 15:40:53 +00:00
|
|
|
}
|
2022-04-05 19:56:48 +00:00
|
|
|
|
2022-11-13 20:56:27 +00:00
|
|
|
local smem_dev = __shared_memory.plc_dev
|
|
|
|
local smem_sys = __shared_memory.plc_sys
|
2022-04-03 16:08:22 +00:00
|
|
|
|
2022-11-13 20:56:27 +00:00
|
|
|
local plc_state = __shared_memory.plc_state
|
2022-04-05 21:29:27 +00:00
|
|
|
|
2022-11-13 20:56:27 +00:00
|
|
|
-- we need a reactor, can at least do some things even if it isn't formed though
|
|
|
|
if smem_dev.reactor == nil then
|
|
|
|
println("boot> fission reactor not found");
|
|
|
|
log.warning("no reactor on startup")
|
2022-10-25 17:29:57 +00:00
|
|
|
|
2022-11-13 20:56:27 +00:00
|
|
|
plc_state.init_ok = false
|
|
|
|
plc_state.degraded = true
|
|
|
|
plc_state.no_reactor = true
|
|
|
|
elseif not smem_dev.reactor.isFormed() then
|
|
|
|
println("boot> fission reactor not formed");
|
|
|
|
log.warning("reactor logic adapter present, but reactor is not formed")
|
2022-04-05 21:29:27 +00:00
|
|
|
|
2022-11-13 20:56:27 +00:00
|
|
|
plc_state.degraded = true
|
|
|
|
plc_state.reactor_formed = false
|
2022-04-05 13:41:06 +00:00
|
|
|
end
|
|
|
|
|
2022-11-13 20:56:27 +00:00
|
|
|
-- modem is required if networked
|
|
|
|
if __shared_memory.networked and smem_dev.modem == nil then
|
|
|
|
println("boot> wireless modem not found")
|
|
|
|
log.warning("no wireless modem on startup")
|
2022-01-14 21:33:09 +00:00
|
|
|
|
2022-11-13 20:56:27 +00:00
|
|
|
-- scram reactor if present and enabled
|
|
|
|
if (smem_dev.reactor ~= nil) and plc_state.reactor_formed and smem_dev.reactor.getStatus() then
|
2022-10-25 17:29:57 +00:00
|
|
|
smem_dev.reactor.scram()
|
|
|
|
end
|
2022-04-05 20:09:29 +00:00
|
|
|
|
2022-11-13 20:56:27 +00:00
|
|
|
plc_state.init_ok = false
|
|
|
|
plc_state.degraded = true
|
|
|
|
plc_state.no_modem = true
|
|
|
|
end
|
2022-05-09 19:00:16 +00:00
|
|
|
|
2022-11-13 20:56:27 +00:00
|
|
|
-- PLC init
|
|
|
|
---
|
|
|
|
--- EVENT_CONSUMER: this function consumes events
|
|
|
|
local function init()
|
|
|
|
if plc_state.init_ok then
|
|
|
|
-- just booting up, no fission allowed (neutrons stay put thanks)
|
|
|
|
if plc_state.reactor_formed and smem_dev.reactor.getStatus() then
|
|
|
|
smem_dev.reactor.scram()
|
|
|
|
end
|
|
|
|
|
|
|
|
-- init reactor protection system
|
|
|
|
smem_sys.rps = plc.rps_init(smem_dev.reactor, plc_state.reactor_formed)
|
|
|
|
log.debug("init> rps init")
|
|
|
|
|
|
|
|
if __shared_memory.networked then
|
2023-02-13 17:27:22 +00:00
|
|
|
-- comms watchdog
|
|
|
|
smem_sys.conn_watchdog = util.new_watchdog(config.COMMS_TIMEOUT)
|
2022-11-13 20:56:27 +00:00
|
|
|
log.debug("init> conn watchdog started")
|
|
|
|
|
|
|
|
-- start comms
|
|
|
|
smem_sys.plc_comms = plc.comms(config.REACTOR_ID, R_PLC_VERSION, smem_dev.modem, config.LISTEN_PORT, config.SERVER_PORT,
|
2023-02-07 22:31:22 +00:00
|
|
|
config.TRUSTED_RANGE, smem_dev.reactor, smem_sys.rps, smem_sys.conn_watchdog)
|
2022-11-13 20:56:27 +00:00
|
|
|
log.debug("init> comms init")
|
|
|
|
else
|
|
|
|
println("boot> starting in offline mode")
|
|
|
|
log.debug("init> running without networking")
|
|
|
|
end
|
|
|
|
|
|
|
|
util.push_event("clock_start")
|
|
|
|
|
|
|
|
println("boot> completed")
|
|
|
|
log.debug("init> boot completed")
|
2022-04-05 20:09:29 +00:00
|
|
|
else
|
2022-11-13 20:56:27 +00:00
|
|
|
println("boot> system in degraded state, awaiting devices...")
|
|
|
|
log.warning("init> booted in a degraded state, awaiting peripheral connections...")
|
2022-04-05 20:09:29 +00:00
|
|
|
end
|
2022-04-05 19:56:48 +00:00
|
|
|
end
|
2022-04-02 15:22:44 +00:00
|
|
|
|
2022-11-13 20:56:27 +00:00
|
|
|
----------------------------------------
|
|
|
|
-- start system
|
|
|
|
----------------------------------------
|
2022-05-09 19:00:16 +00:00
|
|
|
|
2022-11-13 20:56:27 +00:00
|
|
|
-- initialize PLC
|
|
|
|
init()
|
2022-04-05 20:09:29 +00:00
|
|
|
|
2022-11-13 20:56:27 +00:00
|
|
|
-- init threads
|
|
|
|
local main_thread = threads.thread__main(__shared_memory, init)
|
|
|
|
local rps_thread = threads.thread__rps(__shared_memory)
|
2022-04-03 16:08:22 +00:00
|
|
|
|
2022-11-13 20:56:27 +00:00
|
|
|
if __shared_memory.networked then
|
|
|
|
-- init comms threads
|
|
|
|
local comms_thread_tx = threads.thread__comms_tx(__shared_memory)
|
|
|
|
local comms_thread_rx = threads.thread__comms_rx(__shared_memory)
|
2022-04-29 02:36:45 +00:00
|
|
|
|
2022-11-13 20:56:27 +00:00
|
|
|
-- setpoint control only needed when networked
|
|
|
|
local sp_ctrl_thread = threads.thread__setpoint_control(__shared_memory)
|
2022-04-30 02:27:54 +00:00
|
|
|
|
2022-11-13 20:56:27 +00:00
|
|
|
-- run threads
|
|
|
|
parallel.waitForAll(main_thread.p_exec, rps_thread.p_exec, comms_thread_tx.p_exec, comms_thread_rx.p_exec, sp_ctrl_thread.p_exec)
|
2022-05-04 14:00:21 +00:00
|
|
|
|
2022-11-13 20:56:27 +00:00
|
|
|
if plc_state.init_ok then
|
|
|
|
-- send status one last time after RPS shutdown
|
|
|
|
smem_sys.plc_comms.send_status(plc_state.no_reactor, plc_state.reactor_formed)
|
|
|
|
smem_sys.plc_comms.send_rps_status()
|
2022-05-04 14:00:21 +00:00
|
|
|
|
2022-11-13 20:56:27 +00:00
|
|
|
-- close connection
|
|
|
|
smem_sys.plc_comms.close()
|
|
|
|
end
|
|
|
|
else
|
|
|
|
-- run threads, excluding comms
|
|
|
|
parallel.waitForAll(main_thread.p_exec, rps_thread.p_exec)
|
2022-05-04 14:00:21 +00:00
|
|
|
end
|
2022-11-13 20:56:27 +00:00
|
|
|
|
|
|
|
println_ts("exited")
|
|
|
|
log.info("exited")
|
2022-04-27 19:01:10 +00:00
|
|
|
end
|
2022-04-18 14:31:24 +00:00
|
|
|
|
2022-11-13 20:56:27 +00:00
|
|
|
if not xpcall(main, crash.handler) then crash.exit() end
|