nodejs-poolcontroller 8.0.5 → 8.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Changelog +15 -0
- package/README.md +10 -17
- package/anslq25/MessagesMock.ts +5 -1
- package/anslq25/boards/MockSystemBoard.ts +1 -1
- package/anslq25/chemistry/MockChlorinator.ts +32 -8
- package/app.ts +10 -2
- package/controller/Equipment.ts +15 -79
- package/controller/State.ts +4 -72
- package/controller/boards/NixieBoard.ts +1 -0
- package/controller/boards/SystemBoard.ts +5 -1
- package/controller/comms/Comms.ts +9 -8
- package/controller/comms/messages/Messages.ts +1 -1
- package/controller/nixie/chemistry/ChemController.ts +64 -31
- package/controller/nixie/circuits/Circuit.ts +66 -31
- package/logger/Logger.ts +61 -18
- package/package.json +1 -1
- package/web/Server.ts +167 -18
- package/web/services/config/Config.ts +4 -3
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { clearTimeout, setTimeout } from 'timers';
|
|
2
2
|
import { conn } from '../../../controller/comms/Comms';
|
|
3
3
|
import { Outbound, Protocol, Response } from '../../../controller/comms/messages/Messages';
|
|
4
|
-
import { IChemical, IChemController, Chlorinator, ChemController, ChemControllerCollection, ChemFlowSensor, Chemical,
|
|
4
|
+
import { IChemical, IChemController, Chlorinator, ChemController, ChemControllerCollection, ChemFlowSensor, Chemical, ChemicalORP, ChemicalORPProbe, ChemicalPh, ChemicalPhProbe, ChemicalProbe, ChemicalPump, ChemicalTank, sys } from "../../../controller/Equipment";
|
|
5
5
|
import { logger } from '../../../logger/Logger';
|
|
6
6
|
import { InterfaceServerResponse, webApp } from "../../../web/Server";
|
|
7
7
|
import { Timestamp, utils } from '../../Constants';
|
|
@@ -727,11 +727,16 @@ export class NixieChemController extends NixieChemControllerBase {
|
|
|
727
727
|
else schem.alarms.orp = 0;
|
|
728
728
|
let chlorErr = 0;
|
|
729
729
|
if (useChlorinator && schem.isBodyOn) {
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
730
|
+
const chlorCollection = sys.chlorinators.getByBody(schem.activeBodyId);
|
|
731
|
+
if (chlorCollection.length > 0) {
|
|
732
|
+
for (let chlor of chlorCollection.toArray()) {
|
|
733
|
+
let schlor = state.chlorinators.getItemById(chlor.id);
|
|
734
|
+
if (schlor.status & 0xF0) {
|
|
735
|
+
chlorErr = 16;
|
|
736
|
+
break;
|
|
737
|
+
}
|
|
738
|
+
}
|
|
739
|
+
}
|
|
735
740
|
}
|
|
736
741
|
schem.warnings.chlorinatorCommError = chlorErr;
|
|
737
742
|
schem.warnings.pHLockout = useChlorinator === false && probeType !== 0 && pumpType !== 0 && schem.ph.level >= chem.orp.phLockout ? 1 : 0;
|
|
@@ -1067,7 +1072,7 @@ class NixieChemical extends NixieChildEquipment implements INixieChemical {
|
|
|
1067
1072
|
schem.chlor.isDosing = schem.pump.isDosing = false;
|
|
1068
1073
|
if (!this.chemical.flowOnlyMixing || (schem.chemController.isBodyOn && this.chemController.flowDetected && !schem.freezeProtect)) {
|
|
1069
1074
|
if (this.chemType === 'orp' && typeof this.chemController.orp.orp.useChlorinator !== 'undefined' && this.chemController.orp.orp.useChlorinator && this.chemController.orp.orp.chlorDosingMethod > 0) {
|
|
1070
|
-
if (state.chlorinators.getItemById(this.
|
|
1075
|
+
if (state.chlorinators.getItemById(this.chlor.id).currentOutput !== 0) {
|
|
1071
1076
|
logger.debug(`Chem mixing ORP (chlorinator) paused waiting for chlor current output to be 0%. Mix time remaining: ${utils.formatDuration(schem.mixTimeRemaining)} `);
|
|
1072
1077
|
return;
|
|
1073
1078
|
}
|
|
@@ -1422,24 +1427,25 @@ export class NixieChemPump extends NixieChildEquipment {
|
|
|
1422
1427
|
}
|
|
1423
1428
|
}
|
|
1424
1429
|
export class NixieChemChlor extends NixieChildEquipment {
|
|
1425
|
-
public chlor:
|
|
1426
|
-
public isOn: boolean;
|
|
1427
|
-
public chlorId = 0;
|
|
1430
|
+
public get chlor(): Chlorinator { return sys.chlorinators.getItemById((this.getParent() as NixieChemicalORP).orp.chlorId); }
|
|
1431
|
+
public isOn: boolean; // can this just be chlor.isOn?
|
|
1428
1432
|
public _lastOnStatus: number;
|
|
1429
1433
|
protected _dosingTimer: NodeJS.Timeout;
|
|
1430
1434
|
private _isStopping = false;
|
|
1431
1435
|
public chlorInterval = 15;
|
|
1432
|
-
constructor(chemical: NixieChemical, chlor: ChemicalChlor) { super(chemical); this.chlor = chlor; }
|
|
1436
|
+
// constructor(chemical: NixieChemical, chlor: ChemicalChlor) { super(chemical); this.chlor = chlor; }
|
|
1437
|
+
constructor(chemical: NixieChemical) { super(chemical); }
|
|
1433
1438
|
public get chemical(): NixieChemical { return this.getParent() as NixieChemical; }
|
|
1434
1439
|
public async setChlorAsync(schlor: ChemicalChlorState, data: any) {
|
|
1435
1440
|
try {
|
|
1436
1441
|
if (typeof data.chlorDosingMethod !== 'undefined' && data.chlorDosingMethod === 0) {
|
|
1437
1442
|
if (schlor.chemical.dosingStatus === 0) { await this.chemical.cancelDosing(schlor.chemController.orp, 'dosing method changed'); }
|
|
1438
1443
|
if (schlor.chemical.dosingStatus === 1) { await this.chemical.cancelMixing(schlor.chemController.orp); }
|
|
1439
|
-
let chlor = sys.chlorinators.getItemById(this.chlorId);
|
|
1444
|
+
let chlor = sys.chlorinators.getItemById((this.getParent() as NixieChemicalORP).orp.chlorId);
|
|
1440
1445
|
chlor.disabled = false;
|
|
1441
1446
|
chlor.isDosing = false;
|
|
1442
1447
|
}
|
|
1448
|
+
let c = sys.chlorinators.toArray
|
|
1443
1449
|
} catch (err) { logger.error(`setChlorAsync: ${err.message}`); return Promise.reject(err); }
|
|
1444
1450
|
}
|
|
1445
1451
|
public async stopDosing(schem: IChemicalState, reason: string): Promise<void> {
|
|
@@ -1479,7 +1485,8 @@ export class NixieChemChlor extends NixieChildEquipment {
|
|
|
1479
1485
|
await this.chemical.cancelDosing(schem, 'undefined dose');
|
|
1480
1486
|
return;
|
|
1481
1487
|
}
|
|
1482
|
-
|
|
1488
|
+
let chlor = sys.chlorinators.getItemById((this.getParent() as NixieChemicalORP).orp.chlorId);
|
|
1489
|
+
if (chlor.ratedLbs === 0) {
|
|
1483
1490
|
// We aren't going to do anything.
|
|
1484
1491
|
logger.verbose(`Chem dose ignore chlor because it doesn't have a dosing rating.`);
|
|
1485
1492
|
}
|
|
@@ -1488,7 +1495,7 @@ export class NixieChemChlor extends NixieChildEquipment {
|
|
|
1488
1495
|
let isBodyOn = schem.chemController.flowDetected;
|
|
1489
1496
|
await this.chemical.initDose(schem);
|
|
1490
1497
|
let chemController = schem.getParent()
|
|
1491
|
-
let schlor = state.chlorinators.getItemById(
|
|
1498
|
+
let schlor = state.chlorinators.getItemById(chlor.id);
|
|
1492
1499
|
if (!isBodyOn) {
|
|
1493
1500
|
// Make sure the chlor is off.
|
|
1494
1501
|
logger.info(`Chem chlor flow not detected. Body is not running.`);
|
|
@@ -1501,7 +1508,7 @@ export class NixieChemChlor extends NixieChildEquipment {
|
|
|
1501
1508
|
if (chem.ph.dosePriority)
|
|
1502
1509
|
await this.chemical.cancelDosing(schem, 'ph dose priority');
|
|
1503
1510
|
}
|
|
1504
|
-
else if (
|
|
1511
|
+
else if (chlor.superChlor) {
|
|
1505
1512
|
// if superchlor is active, it may be to boost the ORP and we should respect that
|
|
1506
1513
|
await this.chemical.cancelDosing(schem, 'superchlor');
|
|
1507
1514
|
}
|
|
@@ -1518,7 +1525,7 @@ export class NixieChemChlor extends NixieChildEquipment {
|
|
|
1518
1525
|
else {
|
|
1519
1526
|
if (typeof dose._lastLatch !== 'undefined') {
|
|
1520
1527
|
let time = new Date().getTime() - (dose._lastLatch || new Date().getTime());
|
|
1521
|
-
let vol =
|
|
1528
|
+
let vol = chlor.ratedLbs * time / 1000;
|
|
1522
1529
|
schem.appendDose(vol, time);
|
|
1523
1530
|
}
|
|
1524
1531
|
logger.info(`Chem Controller ${dose.chem} chlorinated ${Math.round(dose.volumeDosed * 1000000) / 1000000}lbs of ${Math.round(dose.volume * 1000000) / 1000000}lbs - ${utils.formatDuration(dose.timeRemaining)} remaining`);
|
|
@@ -1565,14 +1572,15 @@ export class NixieChemChlor extends NixieChildEquipment {
|
|
|
1565
1572
|
public async turnOff(schem: IChemicalState): Promise<ChlorinatorState> {
|
|
1566
1573
|
try {
|
|
1567
1574
|
//logger.info(`Turning off the chlorinator`);
|
|
1568
|
-
let
|
|
1575
|
+
let chemORP = this.getParent() as NixieChemicalORP;
|
|
1576
|
+
let chlor = sys.chlorinators.getItemById(chemORP.orp.chlorId);
|
|
1569
1577
|
let schlor = state.chlorinators.getItemById(chlor.id);
|
|
1570
1578
|
if (schlor.currentOutput === 0 && schlor.targetOutput === 0 && !schlor.superChlor && chlor.disabled && !chlor.isDosing) {
|
|
1571
1579
|
this.isOn = schem.chlor.isDosing = false;
|
|
1572
1580
|
return schlor;
|
|
1573
1581
|
}
|
|
1574
1582
|
let cstate = await sys.board.chlorinator.setChlorAsync({
|
|
1575
|
-
id:
|
|
1583
|
+
id: chlor.id,
|
|
1576
1584
|
disabled: true,
|
|
1577
1585
|
isDosing: false
|
|
1578
1586
|
})
|
|
@@ -1583,14 +1591,15 @@ export class NixieChemChlor extends NixieChildEquipment {
|
|
|
1583
1591
|
}
|
|
1584
1592
|
public async turnOn(schem: ChemicalState, latchTimeout?: number): Promise<ChlorinatorState> {
|
|
1585
1593
|
try {
|
|
1586
|
-
let
|
|
1594
|
+
let chemORP = this.getParent() as NixieChemicalORP;
|
|
1595
|
+
let chlor = sys.chlorinators.getItemById(chemORP.orp.chlorId);
|
|
1587
1596
|
let schlor = state.chlorinators.getItemById(chlor.id);
|
|
1588
1597
|
if (schlor.currentOutput === 100 && schlor.targetOutput === 100 && !schlor.superChlor && !chlor.disabled && chlor.isDosing) {
|
|
1589
1598
|
this.isOn = schem.chlor.isDosing = true;
|
|
1590
1599
|
return schlor;
|
|
1591
1600
|
}
|
|
1592
1601
|
let cstate = await sys.board.chlorinator.setChlorAsync({
|
|
1593
|
-
id:
|
|
1602
|
+
id: chlor.id,
|
|
1594
1603
|
disabled: false,
|
|
1595
1604
|
isDosing: true
|
|
1596
1605
|
})
|
|
@@ -1939,13 +1948,14 @@ export class NixieChemicalORP extends NixieChemical {
|
|
|
1939
1948
|
this.chemType = 'orp';
|
|
1940
1949
|
this.orp = chemical;
|
|
1941
1950
|
this.probe = new NixieChemProbeORP(this, chemical.probe);
|
|
1942
|
-
this.chlor = new NixieChemChlor(this, chemical.chlor);
|
|
1951
|
+
// this.chlor = new NixieChemChlor(this, chemical.chlor);
|
|
1952
|
+
this.chlor = new NixieChemChlor(this);
|
|
1943
1953
|
let sorp = state.chemControllers.getItemById(controller.id).orp;
|
|
1944
1954
|
if (!this.orp.enabled) {
|
|
1945
1955
|
this.orp.doserType = 0;
|
|
1946
1956
|
sorp.chemType = 'none';
|
|
1947
1957
|
}
|
|
1948
|
-
else if (
|
|
1958
|
+
else if (this.orp.useChlorinator) {
|
|
1949
1959
|
this.orp.doserType = 2;
|
|
1950
1960
|
sorp.chemType = 'chlorine';
|
|
1951
1961
|
}
|
|
@@ -1962,14 +1972,38 @@ export class NixieChemicalORP extends NixieChemical {
|
|
|
1962
1972
|
public async setORPAsync(sorp: ChemicalORPState, data: any) {
|
|
1963
1973
|
try {
|
|
1964
1974
|
if (typeof data !== 'undefined') {
|
|
1965
|
-
|
|
1975
|
+
this.orp.useChlorinator = typeof data.useChlorinator !== 'undefined' ? utils.makeBool(data.useChlorinator) : this.orp.useChlorinator;
|
|
1976
|
+
if (this.orp.useChlorinator) {
|
|
1977
|
+
if (typeof data.chlorId === 'undefined') {
|
|
1978
|
+
return Promise.reject(new InvalidEquipmentDataError(`Chlorinator ID must be provided when useChlorinator is true`, 'chemController', data.chlorId));
|
|
1979
|
+
}
|
|
1980
|
+
let chlor = sys.chlorinators.getItemById(data.chlorId);
|
|
1981
|
+
if (typeof chlor === 'undefined') {
|
|
1982
|
+
return Promise.reject(new InvalidEquipmentDataError(`Chlorinator with ID ${data.chlorId} not found`, 'chemController', data.chlorId));
|
|
1983
|
+
}
|
|
1984
|
+
if (chlor.body !== this.chemController.chem.body && chlor.body !== 32) {
|
|
1985
|
+
return Promise.reject(new InvalidEquipmentDataError(`Chlorinator body does not match the chem controller body`, 'chemController', data.chlorId));
|
|
1986
|
+
}
|
|
1987
|
+
let assignedChemController = sys.chemControllers.get().find((cc: ChemController) =>
|
|
1988
|
+
{
|
|
1989
|
+
return cc.orp.chlorId === data.chlorId && cc.id !== this.chemController.id;
|
|
1990
|
+
});
|
|
1991
|
+
if (assignedChemController) {
|
|
1992
|
+
return Promise.reject(new InvalidEquipmentDataError(`Chlorinator is already assigned to another chem controller`, 'chemController', data.chlorId));
|
|
1993
|
+
}
|
|
1994
|
+
this.orp.chlorId = data.chlorId;
|
|
1995
|
+
if (typeof data.chlorDosingMethod !== 'undefined') { this.orp.chlorDosingMethod = data.chlorDosingMethod; }
|
|
1996
|
+
} else {
|
|
1997
|
+
this.orp.chlorId = undefined;
|
|
1998
|
+
this.orp.chlorDosingMethod = undefined;
|
|
1999
|
+
}
|
|
1966
2000
|
sorp.enabled = this.orp.enabled = typeof data.enabled !== 'undefined' ? utils.makeBool(data.enabled) : this.orp.enabled;
|
|
1967
2001
|
sorp.level = typeof data.level !== 'undefined' && !isNaN(parseFloat(data.level)) ? parseFloat(data.level) : sorp.level;
|
|
1968
2002
|
this.orp.phLockout = typeof data.phLockout !== 'undefined' && !isNaN(parseFloat(data.phLockout)) ? parseFloat(data.phLockout) : this.orp.phLockout;
|
|
1969
2003
|
this.orp.flowReadingsOnly = typeof data.flowReadingsOnly !== 'undefined' ? utils.makeBool(data.flowReadingsOnly) : this.orp.flowReadingsOnly;
|
|
1970
2004
|
this.orp.disableOnFreeze = typeof data.disableOnFreeze !== 'undefined' ? utils.makeBool(data.disableOnFreeze) : this.orp.disableOnFreeze;
|
|
1971
2005
|
if (!this.orp.disableOnFreeze) sorp.freezeProtect = false;
|
|
1972
|
-
|
|
2006
|
+
|
|
1973
2007
|
await this.setDosing(this.orp, data);
|
|
1974
2008
|
await this.setMixing(this.orp, data);
|
|
1975
2009
|
await this.probe.setProbeORPAsync(sorp.probe, data.probe);
|
|
@@ -1980,7 +2014,7 @@ export class NixieChemicalORP extends NixieChemical {
|
|
|
1980
2014
|
this.orp.doserType = 0;
|
|
1981
2015
|
sorp.chemType = 'none';
|
|
1982
2016
|
}
|
|
1983
|
-
else if (
|
|
2017
|
+
else if (this.orp.useChlorinator) {
|
|
1984
2018
|
this.orp.doserType = 2;
|
|
1985
2019
|
sorp.chemType = 'chlorine';
|
|
1986
2020
|
}
|
|
@@ -2069,7 +2103,7 @@ export class NixieChemicalORP extends NixieChemical {
|
|
|
2069
2103
|
|
|
2070
2104
|
public async cancelDosing(sorp: ChemicalORPState, reason: string): Promise<void> {
|
|
2071
2105
|
try {
|
|
2072
|
-
if (typeof
|
|
2106
|
+
if (typeof this.orp.useChlorinator !== 'undefined' && this.orp.useChlorinator && this.chemController.orp.orp.chlorDosingMethod > 0) {
|
|
2073
2107
|
await this.chlor.stopDosing(sorp, reason);
|
|
2074
2108
|
// for chlor, we want 15 minute intervals
|
|
2075
2109
|
if (sorp.doseHistory.length) {
|
|
@@ -2104,7 +2138,7 @@ export class NixieChemicalORP extends NixieChemical {
|
|
|
2104
2138
|
if (typeof mixingTime !== 'undefined') {
|
|
2105
2139
|
// This is a manual mix so we need to make sure the pump is not dosing.
|
|
2106
2140
|
logger.info(`Clearing any possible ${schem.chemType} dosing or existing mix for mixingTime: ${mixingTime}`);
|
|
2107
|
-
if (
|
|
2141
|
+
if (this.orp.useChlorinator) await this.chlor.stopDosing(schem, 'mix override');
|
|
2108
2142
|
else await this.pump.stopDosing(schem, 'mix override');
|
|
2109
2143
|
await this.stopMixing(schem);
|
|
2110
2144
|
}
|
|
@@ -2274,9 +2308,8 @@ export class NixieChemicalORP extends NixieChemical {
|
|
|
2274
2308
|
return;
|
|
2275
2309
|
}
|
|
2276
2310
|
}
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
let chlor = sys.chlorinators.getItemById(this.chlor.chlorId); // Still haven't seen any systems with 2+ chlors
|
|
2311
|
+
let chlor = this.chlor.chlor; // Still haven't seen any systems with 2+ chlors.
|
|
2312
|
+
// 2024.12.25 RSG - Oh really? See https://github.com/tagyoureit/nodejs-poolController/discussions/896
|
|
2280
2313
|
let schlor = state.chlorinators.getItemById(chlor.id);
|
|
2281
2314
|
// If someone or something is superchloring the pool, let it be
|
|
2282
2315
|
if (schlor.superChlor) return;
|
|
@@ -2429,7 +2462,7 @@ export class NixieChemicalORP extends NixieChemical {
|
|
|
2429
2462
|
logger.info(`Removing chlor ${chlor.id} from Chem Controller ${this.getParent().id}`);
|
|
2430
2463
|
let schem = state.chemControllers.getItemById(this.getParent().id);
|
|
2431
2464
|
this.orp.useChlorinator = false;
|
|
2432
|
-
schem.orp.useChlorinator = false;
|
|
2465
|
+
// schem.orp.useChlorinator = false;
|
|
2433
2466
|
if (schem.orp.dosingStatus === 0) { await this.cancelDosing(schem.orp, 'deleting chlorinator'); }
|
|
2434
2467
|
if (schem.orp.dosingStatus === 1) { await this.cancelMixing(schem.orp); }
|
|
2435
2468
|
}
|
|
@@ -45,7 +45,7 @@ export class NixieCircuitCollection extends NixieEquipmentCollection<NixieCircui
|
|
|
45
45
|
} catch (err) { return logger.error(`NCP: setServiceModeAsync: ${err.message}`); }
|
|
46
46
|
}
|
|
47
47
|
public async setLightThemeAsync(id: number, theme: any) {
|
|
48
|
-
|
|
48
|
+
let c: NixieCircuit = this.find(elem => elem.id === id) as NixieCircuit;
|
|
49
49
|
if (typeof c === 'undefined') return Promise.reject(new Error(`NCP: Circuit ${id} could not be found to set light theme ${theme.name}.`));
|
|
50
50
|
await c.setLightThemeAsync(theme);
|
|
51
51
|
} catch(err) { return logger.error(`NCP: sendOnOffSequence: ${err.message}`); }
|
|
@@ -75,10 +75,10 @@ export class NixieCircuitCollection extends NixieEquipmentCollection<NixieCircui
|
|
|
75
75
|
catch (err) { logger.error(`setCircuitAsync: ${err.message}`); return Promise.reject(err); }
|
|
76
76
|
}
|
|
77
77
|
public async checkCircuitEggTimerExpirationAsync(cstate: ICircuitState) {
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
78
|
+
try {
|
|
79
|
+
let c: NixieCircuit = this.find(elem => elem.id === cstate.id) as NixieCircuit;
|
|
80
|
+
await c.checkCircuitEggTimerExpirationAsync(cstate);
|
|
81
|
+
} catch (err) { logger.error(`NCP: Error synching circuit states: ${err}`); }
|
|
82
82
|
}
|
|
83
83
|
public async initAsync(circuits: CircuitCollection) {
|
|
84
84
|
try {
|
|
@@ -159,21 +159,21 @@ export class NixieCircuit extends NixieEquipment {
|
|
|
159
159
|
protected async setIntelliBriteThemeAsync(cstate: CircuitState, theme: any): Promise<InterfaceServerResponse> {
|
|
160
160
|
let arr = [];
|
|
161
161
|
let count = typeof theme !== 'undefined' && theme.sequence ? theme.sequence : 0;
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
162
|
+
|
|
163
|
+
// Removing this. No need to turn the light off first. We actually need it on to start the sequence for theme setting to work correctly when the light is starting from the off state.
|
|
164
|
+
// if (cstate.isOn) arr.push({ isOn: false, timeout: 1000 });
|
|
165
|
+
|
|
166
|
+
// Start the sequence of off/on after the light is on.
|
|
167
167
|
arr.push({ isOn: true, timeout: 100 });
|
|
168
168
|
for (let i = 0; i < count; i++) {
|
|
169
|
-
|
|
170
|
-
|
|
169
|
+
arr.push({ isOn: false, timeout: 100 });
|
|
170
|
+
arr.push({ isOn: true, timeout: 100 });
|
|
171
171
|
}
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
172
|
+
// Ensure light stays on long enough for the theme to stick (required for light group theme setting to function correctly).
|
|
173
|
+
// 2s was too short.
|
|
174
|
+
arr.push({ isOn: true, timeout: 3000 });
|
|
175
|
+
|
|
176
|
+
logger.debug(arr);
|
|
177
177
|
let res = await NixieEquipment.putDeviceService(this.circuit.connectionId, `/state/device/${this.circuit.deviceBinding}`, arr, 60000);
|
|
178
178
|
// Even though we ended with on we need to make sure that the relay stays on now that we are done.
|
|
179
179
|
if (!res.error) {
|
|
@@ -182,7 +182,7 @@ export class NixieCircuit extends NixieEquipment {
|
|
|
182
182
|
}
|
|
183
183
|
return res;
|
|
184
184
|
}
|
|
185
|
-
protected async
|
|
185
|
+
protected async setPoolToneThemeAsync(cstate: CircuitState, theme: any): Promise<InterfaceServerResponse> {
|
|
186
186
|
let ptheme = sys.board.valueMaps.lightThemes.findItem(cstate.lightingTheme) || { val: 0, sequence: 0 };
|
|
187
187
|
// First check to see if we are on. If we are not then we need to emit our status as if we are initializing and busy.
|
|
188
188
|
let arr = [];
|
|
@@ -196,7 +196,40 @@ export class NixieCircuit extends NixieEquipment {
|
|
|
196
196
|
let count = theme.sequence - ptheme.sequence;
|
|
197
197
|
if (count < 0) count = count + 16;
|
|
198
198
|
for (let i = 0; i < count; i++) {
|
|
199
|
-
arr.push({ isOn: true, timeout: 200 });
|
|
199
|
+
arr.push({ isOn: true, timeout: 200 });
|
|
200
|
+
arr.push({ isOn: false, timeout: 200 });
|
|
201
|
+
}
|
|
202
|
+
console.log(arr);
|
|
203
|
+
if (arr.length === 0) return new InterfaceServerResponse(200, 'Success');
|
|
204
|
+
let res = await NixieEquipment.putDeviceService(this.circuit.connectionId, `/state/device/${this.circuit.deviceBinding}`, arr, 60000);
|
|
205
|
+
// Even though we ended with on we need to make sure that the relay stays on now that we are done.
|
|
206
|
+
if (!res.error) {
|
|
207
|
+
cstate.lightingTheme = ptheme.val;
|
|
208
|
+
cstate.isOn = true; // At this point the relay will be off but we want the process
|
|
209
|
+
// to assume that the relay state is not actually changing.
|
|
210
|
+
this._sequencing = false;
|
|
211
|
+
await this.setCircuitStateAsync(cstate, true, false);
|
|
212
|
+
}
|
|
213
|
+
return res;
|
|
214
|
+
}
|
|
215
|
+
protected async setWaterColorsThemeAsync(cstate: CircuitState, theme: any): Promise<InterfaceServerResponse> {
|
|
216
|
+
// RSG 2024.12.24 - This logic was aligned with the Pool Tone themes. I haven't checked if that
|
|
217
|
+
// logic is correct, but made a copy and adjusted for the watercolors themes.
|
|
218
|
+
|
|
219
|
+
let ptheme = sys.board.valueMaps.lightThemes.findItem(cstate.lightingTheme) || { val: 0, sequence: 0 };
|
|
220
|
+
// First check to see if we are on. If we are not then we need to emit our status as if we are initializing and busy.
|
|
221
|
+
let arr = [];
|
|
222
|
+
if (ptheme.val === 0) {
|
|
223
|
+
// We don't know our previous theme so we are going to sync the lights to get a starting point.
|
|
224
|
+
arr.push({ isOn: true, timeout: 1000 }); // Turn on for 1 second
|
|
225
|
+
arr.push({ isOn: false, timeout: 5000 }); // Turn off for 5 seconds
|
|
226
|
+
arr.push({ isOn: true, timeout: 1000 });
|
|
227
|
+
ptheme = sys.board.valueMaps.lightThemes.findItem('alpinewhite');
|
|
228
|
+
}
|
|
229
|
+
let count = theme.sequence - ptheme.sequence;
|
|
230
|
+
if (count < 0) count = count + 14;
|
|
231
|
+
for (let i = 0; i < count; i++) {
|
|
232
|
+
arr.push({ isOn: true, timeout: 200 });
|
|
200
233
|
arr.push({ isOn: false, timeout: 200 });
|
|
201
234
|
}
|
|
202
235
|
console.log(arr);
|
|
@@ -206,7 +239,7 @@ export class NixieCircuit extends NixieEquipment {
|
|
|
206
239
|
if (!res.error) {
|
|
207
240
|
cstate.lightingTheme = ptheme.val;
|
|
208
241
|
cstate.isOn = true; // At this point the relay will be off but we want the process
|
|
209
|
-
|
|
242
|
+
// to assume that the relay state is not actually changing.
|
|
210
243
|
this._sequencing = false;
|
|
211
244
|
await this.setCircuitStateAsync(cstate, true, false);
|
|
212
245
|
}
|
|
@@ -243,7 +276,7 @@ export class NixieCircuit extends NixieEquipment {
|
|
|
243
276
|
if (!res.error) {
|
|
244
277
|
cstate.lightingTheme = ptheme.val;
|
|
245
278
|
cstate.isOn = true; // At this point the relay will be off but we want the process
|
|
246
|
-
|
|
279
|
+
// to assume that the relay state is not actually changing.
|
|
247
280
|
this._sequencing = false;
|
|
248
281
|
await this.setCircuitStateAsync(cstate, true, false);
|
|
249
282
|
}
|
|
@@ -264,7 +297,6 @@ export class NixieCircuit extends NixieEquipment {
|
|
|
264
297
|
switch (type.name) {
|
|
265
298
|
case 'colorcascade':
|
|
266
299
|
case 'globrite':
|
|
267
|
-
case 'pooltone':
|
|
268
300
|
case 'magicstream':
|
|
269
301
|
case 'intellibrite':
|
|
270
302
|
res = await this.setIntelliBriteThemeAsync(cstate, theme);
|
|
@@ -275,6 +307,9 @@ export class NixieCircuit extends NixieEquipment {
|
|
|
275
307
|
case 'watercolors':
|
|
276
308
|
res = await this.setWaterColorsThemeAsync(cstate, theme);
|
|
277
309
|
break;
|
|
310
|
+
case 'pooltone':
|
|
311
|
+
res = await this.setPoolToneThemeAsync(cstate, theme);
|
|
312
|
+
break;
|
|
278
313
|
}
|
|
279
314
|
cstate.action = 0;
|
|
280
315
|
// Make sure clients know that we are done.
|
|
@@ -285,11 +320,11 @@ export class NixieCircuit extends NixieEquipment {
|
|
|
285
320
|
}
|
|
286
321
|
public async sendOnOffSequenceAsync(count: number | { isOn: boolean, timeout: number }[], timeout?: number): Promise<InterfaceServerResponse> {
|
|
287
322
|
try {
|
|
288
|
-
|
|
323
|
+
|
|
289
324
|
this._sequencing = true;
|
|
290
325
|
let arr = [];
|
|
291
326
|
let cstate = state.circuits.getItemById(this.circuit.id);
|
|
292
|
-
|
|
327
|
+
|
|
293
328
|
if (typeof count === 'number') {
|
|
294
329
|
if (cstate.isOn) arr.push({ isOn: false, timeout: 1000 });
|
|
295
330
|
let t = typeof timeout === 'undefined' ? 100 : timeout;
|
|
@@ -339,21 +374,21 @@ export class NixieCircuit extends NixieEquipment {
|
|
|
339
374
|
// Check to see if we should be on by poking the schedules.
|
|
340
375
|
}
|
|
341
376
|
if (utils.isNullOrEmpty(this.circuit.connectionId) || utils.isNullOrEmpty(this.circuit.deviceBinding)) {
|
|
342
|
-
if (val && val !== cstate.isOn){
|
|
377
|
+
if (val && val !== cstate.isOn) {
|
|
343
378
|
sys.board.circuits.setEndTime(sys.circuits.getInterfaceById(cstate.id), cstate, val);
|
|
344
379
|
}
|
|
345
|
-
else if (!val){
|
|
380
|
+
else if (!val) {
|
|
346
381
|
if (cstate.manualPriorityActive) delayMgr.cancelManualPriorityDelay(cstate.id);
|
|
347
382
|
cstate.manualPriorityActive = false; // if the delay was previously cancelled, still need to turn this off
|
|
348
|
-
}
|
|
349
|
-
cstate.isOn = val;
|
|
383
|
+
}
|
|
384
|
+
cstate.isOn = val;
|
|
350
385
|
return new InterfaceServerResponse(200, 'Success');
|
|
351
386
|
}
|
|
352
387
|
if (this._sequencing) return new InterfaceServerResponse(200, 'Success');
|
|
353
|
-
|
|
388
|
+
let res = await NixieEquipment.putDeviceService(this.circuit.connectionId, `/state/device/${this.circuit.deviceBinding}`, { isOn: val, latch: val ? 10000 : undefined });
|
|
354
389
|
if (res.status.code === 200) {
|
|
355
390
|
// Set this up so we can process our egg timer.
|
|
356
|
-
if (val && val !== cstate.isOn){
|
|
391
|
+
if (val && val !== cstate.isOn) {
|
|
357
392
|
sys.board.circuits.setEndTime(sys.circuits.getInterfaceById(cstate.id), cstate, val);
|
|
358
393
|
switch (sys.board.valueMaps.circuitFunctions.getName(this.circuit.type)) {
|
|
359
394
|
case 'colorlogic':
|
|
@@ -385,7 +420,7 @@ export class NixieCircuit extends NixieEquipment {
|
|
|
385
420
|
break;
|
|
386
421
|
}
|
|
387
422
|
}
|
|
388
|
-
else if (!val){
|
|
423
|
+
else if (!val) {
|
|
389
424
|
delayMgr.cancelManualPriorityDelays();
|
|
390
425
|
cstate.manualPriorityActive = false; // if the delay was previously cancelled, still need to turn this off
|
|
391
426
|
}
|
package/logger/Logger.ts
CHANGED
|
@@ -270,6 +270,10 @@ class Logger {
|
|
|
270
270
|
// start new replay directory
|
|
271
271
|
|
|
272
272
|
if (!fs.existsSync(this.captureForReplayPath)) fs.mkdirSync(this.captureForReplayBaseDir, { recursive: true });
|
|
273
|
+
|
|
274
|
+
// Create logs subdirectory for additional log files
|
|
275
|
+
let logsSubDir = path.join(this.captureForReplayBaseDir, 'logs');
|
|
276
|
+
if (!fs.existsSync(logsSubDir)) fs.mkdirSync(logsSubDir, { recursive: true });
|
|
273
277
|
if (bResetLogs){
|
|
274
278
|
if (fs.existsSync(path.join(process.cwd(), 'data/poolConfig.json'))) {
|
|
275
279
|
fs.copyFileSync(path.join(process.cwd(), 'data/poolConfig.json'), path.join(process.cwd(),'data/', `poolConfig-${this.getLogTimestamp()}.json`));
|
|
@@ -360,29 +364,68 @@ class Logger {
|
|
|
360
364
|
logger._logger.add(this.transports.file);
|
|
361
365
|
this.transports.console.level = 'silly';
|
|
362
366
|
}
|
|
363
|
-
public async stopCaptureForReplayAsync():Promise<string> {
|
|
367
|
+
public async stopCaptureForReplayAsync(remLogs?: any[]):Promise<string> {
|
|
364
368
|
return new Promise<string>(async (resolve, reject) => {
|
|
365
369
|
try {
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
+
// Get REM server configurations from config
|
|
371
|
+
let configData = config.getSection();
|
|
372
|
+
let remServers = [];
|
|
373
|
+
if (configData.web && configData.web.interfaces) {
|
|
374
|
+
for (let interfaceName in configData.web.interfaces) {
|
|
375
|
+
let interfaceConfig = configData.web.interfaces[interfaceName];
|
|
376
|
+
if (interfaceConfig.type === 'rem' && interfaceConfig.enabled) {
|
|
377
|
+
remServers.push({
|
|
378
|
+
name: interfaceConfig.name || interfaceName,
|
|
379
|
+
uuid: interfaceConfig.uuid,
|
|
380
|
+
host: interfaceConfig.options?.host || '',
|
|
381
|
+
backup: true
|
|
382
|
+
});
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
}
|
|
386
|
+
|
|
387
|
+
// Use the existing backup logic to create the base backup
|
|
388
|
+
let backupOptions = {
|
|
389
|
+
njsPC: true,
|
|
390
|
+
servers: remServers,
|
|
391
|
+
name: `Packet Capture ${this.currentTimestamp}`,
|
|
392
|
+
automatic: false
|
|
393
|
+
};
|
|
394
|
+
|
|
395
|
+
let backupFile = await webApp.backupServer(backupOptions);
|
|
396
|
+
|
|
397
|
+
// Add packet capture logs to the existing backup zip
|
|
398
|
+
let jszip = require("jszip");
|
|
399
|
+
let zip = await jszip.loadAsync(fs.readFileSync(backupFile.filePath));
|
|
400
|
+
|
|
401
|
+
// Add packet capture logs to the njsPC/logs directory
|
|
402
|
+
zip.file(`njsPC/logs/${this.getPacketPath()}`, fs.readFileSync(logger.pktPath));
|
|
403
|
+
zip.file(`njsPC/logs/${this.getConsoleToFilePath()}`, fs.readFileSync(this.consoleToFilePath));
|
|
404
|
+
|
|
405
|
+
// Add REM server logs if provided
|
|
406
|
+
if (remLogs && remLogs.length > 0) {
|
|
407
|
+
logger.info(`Adding ${remLogs.length} REM logs to backup`);
|
|
408
|
+
for (let remLog of remLogs) {
|
|
409
|
+
// Create logs directory for the REM server using the hardcoded name
|
|
410
|
+
let logPath = `Relay Equipment Manager/logs/${remLog.logFileName}`;
|
|
411
|
+
logger.info(`Adding REM log to backup: ${logPath} (size: ${remLog.logData.length} characters)`);
|
|
412
|
+
zip.file(logPath, remLog.logData);
|
|
413
|
+
}
|
|
414
|
+
} else {
|
|
415
|
+
logger.info(`No REM logs provided to add to backup`);
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
// Generate the updated zip
|
|
419
|
+
await zip.generateAsync({type:'nodebuffer'}).then(content => {
|
|
420
|
+
fs.writeFileSync(backupFile.filePath, content);
|
|
421
|
+
});
|
|
422
|
+
|
|
423
|
+
// Restore original logging configuration
|
|
370
424
|
this.cfg = config.getSection('log');
|
|
371
425
|
logger._logger.remove(this.transports.file);
|
|
372
426
|
this.transports.console.level = this.cfg.app.level;
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
let zip = new jszip();
|
|
376
|
-
zip.file('config.json', fs.readFileSync(path.join(this.captureForReplayBaseDir, 'config.json')));
|
|
377
|
-
zip.file('poolConfig.json', fs.readFileSync(path.join(this.captureForReplayBaseDir, 'poolConfig.json')));
|
|
378
|
-
zip.file('poolState.json', fs.readFileSync(path.join(this.captureForReplayBaseDir, 'poolState.json')));
|
|
379
|
-
zip.file(this.getPacketPath(), fs.readFileSync(path.join(this.captureForReplayBaseDir, `packetLog${this.getLogTimestamp()}`)));
|
|
380
|
-
zip.file(this.getConsoleToFilePath(), fs.readFileSync(this.consoleToFilePath));
|
|
381
|
-
await zip.generateAsync({type:'nodebuffer'}).then(content=>
|
|
382
|
-
{
|
|
383
|
-
fs.writeFileSync(zipPath, content);
|
|
384
|
-
});
|
|
385
|
-
resolve(zipPath);
|
|
427
|
+
|
|
428
|
+
resolve(backupFile.filePath);
|
|
386
429
|
}
|
|
387
430
|
catch (err) {
|
|
388
431
|
reject(err.message);
|