Storage: use worker threads message passing to store performance records from
[e-mobility-charging-stations-simulator.git] / src / charging-station / ocpp / OCPPRequestService.ts
CommitLineData
c0560973 1import { AuthorizeResponse, StartTransactionResponse, StopTransactionReason, StopTransactionResponse } from '../../types/ocpp/Transaction';
47e22477 2import { DiagnosticsStatus, IncomingRequestCommand, RequestCommand } from '../../types/ocpp/Requests';
c0560973 3
efa43e52 4import { BootNotificationResponse } from '../../types/ocpp/Responses';
c0560973
JB
5import { ChargePointErrorCode } from '../../types/ocpp/ChargePointErrorCode';
6import { ChargePointStatus } from '../../types/ocpp/ChargePointStatus';
7import ChargingStation from '../ChargingStation';
8import Constants from '../../utils/Constants';
9import { ErrorType } from '../../types/ocpp/ErrorType';
10import { MessageType } from '../../types/ocpp/MessageType';
fd0c36fa 11import { MeterValue } from '../../types/ocpp/MeterValues';
7170127d 12import OCPPError from '../OCPPError';
c0560973 13import OCPPResponseService from './OCPPResponseService';
aef1b33a 14import PerformanceStatistics from '../../utils/PerformanceStatistics';
c0560973
JB
15import logger from '../../utils/Logger';
16
17export default abstract class OCPPRequestService {
18 public chargingStation: ChargingStation;
19 protected ocppResponseService: OCPPResponseService;
20
21 constructor(chargingStation: ChargingStation, ocppResponseService: OCPPResponseService) {
22 this.chargingStation = chargingStation;
23 this.ocppResponseService = ocppResponseService;
24 }
25
193d2c0a 26 public async sendMessage(messageId: string, commandParams: any, messageType: MessageType, commandName: RequestCommand | IncomingRequestCommand): Promise<any> {
c0560973
JB
27 // eslint-disable-next-line @typescript-eslint/no-this-alias
28 const self = this;
c0560973
JB
29 // Send a message through wsConnection
30 return new Promise((resolve: (value?: any | PromiseLike<any>) => void, reject: (reason?: any) => void) => {
31 let messageToSend: string;
32 // Type of message
33 switch (messageType) {
34 // Request
35 case MessageType.CALL_MESSAGE:
36 // Build request
6e0964c8 37 this.chargingStation.requests[messageId] = [responseCallback, rejectCallback, commandParams as Record<string, unknown>];
c0560973
JB
38 messageToSend = JSON.stringify([messageType, messageId, commandName, commandParams]);
39 break;
40 // Response
41 case MessageType.CALL_RESULT_MESSAGE:
42 // Build response
43 messageToSend = JSON.stringify([messageType, messageId, commandParams]);
44 break;
45 // Error Message
46 case MessageType.CALL_ERROR_MESSAGE:
47 // Build Error Message
48 messageToSend = JSON.stringify([messageType, messageId, commandParams.code ? commandParams.code : ErrorType.GENERIC_ERROR, commandParams.message ? commandParams.message : '', commandParams.details ? commandParams.details : {}]);
49 break;
50 }
51 // Check if wsConnection opened and charging station registered
d5bff457 52 if (this.chargingStation.isWebSocketConnectionOpened() && (this.chargingStation.isRegistered() || commandName === RequestCommand.BOOT_NOTIFICATION)) {
c0560973 53 if (this.chargingStation.getEnableStatistics()) {
aef1b33a 54 this.chargingStation.performanceStatistics.addRequestStatistic(commandName, messageType);
c0560973
JB
55 }
56 // Yes: Send Message
aef1b33a 57 const beginId = PerformanceStatistics.beginMeasure(commandName);
c0560973 58 this.chargingStation.wsConnection.send(messageToSend);
aef1b33a 59 PerformanceStatistics.endMeasure(commandName, beginId);
c0560973 60 } else if (commandName !== RequestCommand.BOOT_NOTIFICATION) {
3ba2381e 61 // Buffer it
77f00f84 62 this.chargingStation.addToMessageQueue(messageToSend);
c0560973
JB
63 // Reject it
64 return rejectCallback(new OCPPError(commandParams.code ? commandParams.code : ErrorType.GENERIC_ERROR, commandParams.message ? commandParams.message : `WebSocket closed for message id '${messageId}' with content '${messageToSend}', message buffered`, commandParams.details ? commandParams.details : {}));
65 }
66 // Response?
67 if (messageType === MessageType.CALL_RESULT_MESSAGE) {
68 // Yes: send Ok
69 resolve();
70 } else if (messageType === MessageType.CALL_ERROR_MESSAGE) {
71 // Send timeout
72 setTimeout(() => rejectCallback(new OCPPError(commandParams.code ? commandParams.code : ErrorType.GENERIC_ERROR, commandParams.message ? commandParams.message : `Timeout for message id '${messageId}' with content '${messageToSend}'`, commandParams.details ? commandParams.details : {})), Constants.OCPP_ERROR_TIMEOUT);
73 }
74
3340259a
JB
75 /**
76 * Function that will receive the request's response
77 *
81797102
JB
78 * @param payload
79 * @param requestPayload
3340259a 80 */
c0560973 81 async function responseCallback(payload: Record<string, unknown> | string, requestPayload: Record<string, unknown>): Promise<void> {
52748e2c 82 if (self.chargingStation.getEnableStatistics()) {
aef1b33a 83 self.chargingStation.performanceStatistics.addRequestStatistic(commandName, MessageType.CALL_RESULT_MESSAGE);
c0560973
JB
84 }
85 // Send the response
86 await self.ocppResponseService.handleResponse(commandName as RequestCommand, payload, requestPayload);
87 resolve(payload);
88 }
89
3340259a
JB
90 /**
91 * Function that will receive the request's rejection
92 *
81797102 93 * @param error
3340259a 94 */
c0560973 95 function rejectCallback(error: OCPPError): void {
52748e2c 96 if (self.chargingStation.getEnableStatistics()) {
aef1b33a 97 self.chargingStation.performanceStatistics.addRequestStatistic(commandName, MessageType.CALL_ERROR_MESSAGE);
c0560973 98 }
52748e2c 99 logger.debug(`${self.chargingStation.logPrefix()} Error: %j occurred when calling command %s with parameters: %j`, error, commandName, commandParams);
c0560973
JB
100 // Build Exception
101 // eslint-disable-next-line no-empty-function
52748e2c 102 self.chargingStation.requests[messageId] = [() => { }, () => { }, {}];
c0560973
JB
103 // Send error
104 reject(error);
105 }
106 });
107 }
108
c7f95d16 109 protected handleRequestError(commandName: RequestCommand, error: Error): void {
47e22477 110 logger.error(this.chargingStation.logPrefix() + ' Request command ' + commandName + ' error: %j', error);
c0560973
JB
111 throw error;
112 }
113
114 public abstract sendHeartbeat(): Promise<void>;
115 public abstract sendBootNotification(chargePointModel: string, chargePointVendor: string, chargeBoxSerialNumber?: string, firmwareVersion?: string, chargePointSerialNumber?: string, iccid?: string, imsi?: string, meterSerialNumber?: string, meterType?: string): Promise<BootNotificationResponse>;
116 public abstract sendStatusNotification(connectorId: number, status: ChargePointStatus, errorCode?: ChargePointErrorCode): Promise<void>;
163547b1 117 public abstract sendAuthorize(connectorId: number, idTag?: string): Promise<AuthorizeResponse>;
c0560973
JB
118 public abstract sendStartTransaction(connectorId: number, idTag?: string): Promise<StartTransactionResponse>;
119 public abstract sendStopTransaction(transactionId: number, meterStop: number, idTag?: string, reason?: StopTransactionReason): Promise<StopTransactionResponse>;
aef1b33a 120 public abstract sendMeterValues(connectorId: number, transactionId: number, interval: number): Promise<void>;
fd0c36fa
JB
121 public abstract sendTransactionBeginMeterValues(connectorId: number, transactionId: number, beginMeterValue: MeterValue): Promise<void>;
122 public abstract sendTransactionEndMeterValues(connectorId: number, transactionId: number, endMeterValue: MeterValue): Promise<void>;
47e22477 123 public abstract sendDiagnosticsStatusNotification(diagnosticsStatus: DiagnosticsStatus): Promise<void>;
c0560973 124 public abstract sendError(messageId: string, error: OCPPError, commandName: RequestCommand | IncomingRequestCommand): Promise<unknown>;
c0560973 125}