this._timeToStop = false;
if (this._chargingStation._stationInfo.AutomaticTransactionGenerator.stopAfterHours &&
this._chargingStation._stationInfo.AutomaticTransactionGenerator.stopAfterHours > 0) {
- logger.info(this._basicFormatLog() + ' ATG will stop in ' + Utils.secondstoHHMMSS(this._chargingStation._stationInfo.AutomaticTransactionGenerator.stopAfterHours * 3600));
setTimeout(() => {
this.stop();
}, this._chargingStation._stationInfo.AutomaticTransactionGenerator.stopAfterHours * 3600 * 1000);
this.startConnector(connector);
}
}
+ logger.info(this._basicFormatLog() + ' ATG started and will stop in ' + Utils.secondstoHHMMSS(this._chargingStation._stationInfo.AutomaticTransactionGenerator.stopAfterHours * 3600));
}
- async stop(type = '') {
+ async stop(reason = '') {
logger.info(this._basicFormatLog() + ' ATG OVER => STOPPING ALL TRANSACTIONS');
for (const connector in this._chargingStation._connectors) {
if (this._chargingStation._connectors[connector].transactionStarted) {
logger.info(this._basicFormatLog(connector) + ' ATG OVER. Stop transaction ' + this._chargingStation._connectors[connector].transactionId);
- await this._chargingStation.sendStopTransaction(this._chargingStation._connectors[connector].transactionId, type ? type + 'Reset' : '');
+ await this._chargingStation.sendStopTransaction(this._chargingStation._connectors[connector].transactionId, reason);
}
}
this._timeToStop = true;
this._wsConnectionUrl = this._supervisionUrl + '/' + this._stationInfo.name;
}
this._wsConnection = new WebSocket(this._wsConnectionUrl, 'ocpp' + Constants.OCPP_VERSION_16);
- logger.info(this._basicFormatLog() + ' Will communicate with ' + this._supervisionUrl);
+ logger.info(this._basicFormatLog() + ' Will communicate through URL ' + this._supervisionUrl);
// Monitor authorization file
this._startAuthorizationFileMonitoring();
// Monitor station template file
this._wsConnection.on('ping', this.onPing.bind(this));
}
- async stop(type = '') {
+ async stop(reason = '') {
// Stop heartbeat
await this._stopHeartbeat();
// Stop the ATG
if (Utils.convertToBoolean(this._stationInfo.AutomaticTransactionGenerator.enable) &&
this._automaticTransactionGeneration &&
!this._automaticTransactionGeneration.timeToStop) {
- await this._automaticTransactionGeneration.stop(type ? type + 'Reset' : '');
+ await this._automaticTransactionGeneration.stop(reason);
} else {
for (const connector in this._connectors) {
if (this._connectors[connector].transactionStarted) {
- await this.sendStopTransaction(this._connectors[connector].transactionId, type ? type + 'Reset' : '');
+ await this.sendStopTransaction(this._connectors[connector].transactionId, reason);
}
}
}
async sendStopTransaction(transactionId, reason = '') {
try {
- const payload = {
- transactionId,
- meterStop: 0,
- timestamp: new Date().toISOString(),
- reason,
- };
+ let payload = {};
+ if (reason) {
+ payload = {
+ transactionId,
+ meterStop: 0,
+ timestamp: new Date().toISOString(),
+ reason,
+ };
+ } else {
+ payload = {
+ transactionId,
+ meterStop: 0,
+ timestamp: new Date().toISOString(),
+ };
+ }
await this.sendMessage(Utils.generateUUID(), payload, Constants.OCPP_JSON_CALL_MESSAGE, 'StopTransaction');
} catch (error) {
logger.error(this._basicFormatLog() + ' Send StopTransaction error: ' + error);
handleResponseStartTransaction(payload, requestPayload) {
if (this._connectors[requestPayload.connectorId].transactionStarted) {
- logger.debug(this._basicFormatLog() + ' Try to start a transaction on an already used connector ' + requestPayload.connectorId + ' by transaction ' + this._connectors[requestPayload.connectorId].transactionId);
+ logger.debug(this._basicFormatLog() + ' Try to start a transaction on an already used connector ' + requestPayload.connectorId + ': %s', this._connectors[requestPayload.connectorId]);
+ return;
}
let transactionConnectorId;
this._connectors[transactionConnectorId].idTag = requestPayload.idTag;
this._connectors[transactionConnectorId].lastConsumptionValue = 0;
this.sendStatusNotification(requestPayload.connectorId, 'Charging');
- logger.info(this._basicFormatLog() + ' Transaction ' + this._connectors[transactionConnectorId].transactionId + ' STARTED on ' + this._stationInfo.name + '#' + requestPayload.connectorId + ' for idTag ' + requestPayload.idTag);
+ logger.info(this._basicFormatLog() + ' Transaction ' + payload.transactionId + ' STARTED on ' + this._stationInfo.name + '#' + requestPayload.connectorId + ' for idTag ' + requestPayload.idTag);
const configuredMeterValueSampleInterval = this._getConfigurationKey('MeterValueSampleInterval');
this._startMeterValues(requestPayload.connectorId,
configuredMeterValueSampleInterval ? configuredMeterValueSampleInterval.value * 1000 : 60000);
}
if (payload.idTagInfo && payload.idTagInfo.status === 'Accepted') {
this.sendStatusNotification(transactionConnectorId, 'Available');
- logger.info(this._basicFormatLog() + ' Transaction ' + this._connectors[transactionConnectorId].transactionId + ' STOPPED on ' + this._stationInfo.name + '#' + transactionConnectorId);
+ logger.info(this._basicFormatLog() + ' Transaction ' + requestPayload.transactionId + ' STOPPED on ' + this._stationInfo.name + '#' + transactionConnectorId);
this._resetTransactionOnConnector(transactionConnectorId);
} else {
- logger.error(this._basicFormatLog() + ' Stopping transaction id ' + this._connectors[transactionConnectorId].transactionId + ' REJECTED with status ' + payload.idTagInfo.status);
+ logger.error(this._basicFormatLog() + ' Stopping transaction id ' + requestPayload.transactionId + ' REJECTED with status ' + payload.idTagInfo.status);
}
}
async handleReset(commandPayload) {
// Simulate charging station restart
setImmediate(async () => {
- await this.stop(commandPayload.type);
+ await this.stop(commandPayload.type + 'Reset');
await Utils.sleep(this._stationInfo.resetTime);
await this.start();
});