-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstartInstance.ts
169 lines (155 loc) · 4.94 KB
/
startInstance.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
import { nanoid } from "nanoid";
import {
InstanceData,
instancesData,
instancesStartingTimeout,
serverData,
} from "../../store";
import { waitForEventEmitterPowerData } from "../../events/eventEmitter";
import { energyFetch } from "../socket/powerMonitor";
import { startSocket } from "../socket/control";
import { stopInstance } from "./stopInstance";
type OperationReport = {
success: boolean;
message: string;
statusCode: number;
instanceId?: string;
instance?: InstanceData;
};
/**
* Initializes a new instance and updates server-wide data accordingly.
* @param {InstanceData} data - Data for the instance being initialized.
* @returns {OperationReport} An object indicating the operation's report.
*/
export const startInstance = async (
data: InstanceData,
): Promise<OperationReport> => {
let triggerPowerOn = false;
const id = nanoid();
const augmentedData = {
...data,
id,
};
if (serverData.isEmergencyStopped) {
return {
success: false,
statusCode: 409,
message: "The socket is emergency stopped. You cannot start instances.",
instanceId: id,
};
}
if (instancesData[id]) {
if (!instancesData[id].stopTimestamp) {
return {
success: true,
statusCode: 200,
message: `Instance with ID ${id} already exists. Initialization aborted.`,
instance: instancesData[id],
};
}
return {
success: false,
statusCode: 409,
message: `Instance with ID ${id} already exists and but stopped.`,
instanceId: id,
};
}
let report: OperationReport = {
success: true,
statusCode: 200,
message: `New instance with ID ${id} initialized successfully.`,
instanceId: id,
};
serverData.runningInstances.push(id);
serverData.energyToday = 0;
if (augmentedData.timeout) {
serverData.runningInstancesWithTimeout.push(id);
}
serverData.instancesStarting.push(id);
const lastPowerStatus =
serverData.powerStatus[serverData.powerStatus.length - 1];
if (lastPowerStatus.powerOn === null) {
serverData.powerStatus[serverData.powerStatus.length - 1] = {
powerOn: {
instanceId: id,
timestamp: new Date(),
},
powerOff: null,
};
augmentedData.powerOnTimestamp = new Date();
triggerPowerOn = true;
} else if (lastPowerStatus.powerOff !== null) {
serverData.powerStatus.push({
powerOn: {
instanceId: id,
timestamp: new Date(),
},
powerOff: null,
});
augmentedData.powerOnTimestamp = new Date();
triggerPowerOn = true;
} else {
augmentedData.powerOnTimestamp = null;
}
instancesData[id] = augmentedData;
if (triggerPowerOn) {
startSocket();
}
try {
const energyReportPromise = energyFetch();
const powerDataPromise = triggerPowerOn
? waitForEventEmitterPowerData()
: Promise.resolve(true);
const [energyReport, powerData] = await Promise.all([
energyReportPromise,
powerDataPromise,
]);
if (triggerPowerOn) {
if (powerData === "OFF") {
return {
success: false,
statusCode: 409,
message: "The socket turned off unexpectedly",
instanceId: id,
};
}
}
if (!powerData || !energyReport) {
return {
success: false,
statusCode: 500,
message:
"An error occurred while waiting for the socket to start or while fetching the energy report",
instanceId: id,
};
}
serverData.instancesStarting = serverData.instancesStarting.filter(
(instance) => instance !== id,
);
augmentedData.energy = {
apparentPower: [energyReport.apparentPower],
current: [energyReport.current],
factor: [energyReport.factor],
today: [energyReport.today],
power: [energyReport.power],
reactivePower: [energyReport.reactivePower],
voltage: [energyReport.voltage],
};
} catch (e) {
return {
success: false,
statusCode: 500,
message:
"An error occurred while starting the socket and fetching the data",
instanceId: id,
};
}
if (augmentedData.timeout) {
instancesStartingTimeout[id] = setTimeout(() => {
stopInstance(id, { timeout: true });
}, augmentedData.timeout);
}
instancesData[id] = augmentedData;
report.instance = augmentedData;
return report;
};