X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils%2FStatistics.ts;h=d194451a031e5b2a3078f2107f8211ffa8f76de9;hb=0d7b35c4bb09627e56413d39ae6b2da56b6dcbd2;hp=de8951d02e345f276bd24a8fe1af9ee2b2312a58;hpb=ad2f27c30a5a29e0ce3a6e2be5a3385061ada313;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/Statistics.ts b/src/utils/Statistics.ts index de8951d0..d194451a 100644 --- a/src/utils/Statistics.ts +++ b/src/utils/Statistics.ts @@ -1,5 +1,5 @@ import CommandStatistics, { CommandStatisticsData, PerfEntry } from '../types/CommandStatistics'; -import { IncomingRequestCommand, RequestCommand } from '../types/ocpp/1.6/Requests'; +import { IncomingRequestCommand, RequestCommand } from '../types/ocpp/Requests'; import CircularArray from './CircularArray'; import Configuration from './Configuration'; @@ -9,85 +9,78 @@ import Utils from './Utils'; import logger from './Logger'; export default class Statistics { - private static instance: Statistics; - public objName: string; + private objId: string; private commandsStatistics: CommandStatistics; - private constructor() { - this.commandsStatistics = {} as CommandStatistics; + public constructor(objId: string) { + this.objId = objId; + this.commandsStatistics = { id: this.objId ? this.objId : 'Object id not specified', commandsStatisticsData: {} }; } - static getInstance(): Statistics { - if (!Statistics.instance) { - Statistics.instance = new Statistics(); - } - return Statistics.instance; - } - - addMessage(command: RequestCommand | IncomingRequestCommand, messageType: MessageType): void { + public addMessage(command: RequestCommand | IncomingRequestCommand, messageType: MessageType): void { switch (messageType) { case MessageType.CALL_MESSAGE: - if (this.commandsStatistics[command] && this.commandsStatistics[command].countRequest) { - this.commandsStatistics[command].countRequest++; + if (this.commandsStatistics.commandsStatisticsData[command] && this.commandsStatistics.commandsStatisticsData[command].countRequest) { + this.commandsStatistics.commandsStatisticsData[command].countRequest++; } else { - this.commandsStatistics[command] = {} as CommandStatisticsData; - this.commandsStatistics[command].countRequest = 1; + this.commandsStatistics.commandsStatisticsData[command] = {} as CommandStatisticsData; + this.commandsStatistics.commandsStatisticsData[command].countRequest = 1; } break; case MessageType.CALL_RESULT_MESSAGE: - if (this.commandsStatistics[command]) { - if (this.commandsStatistics[command].countResponse) { - this.commandsStatistics[command].countResponse++; + if (this.commandsStatistics.commandsStatisticsData[command]) { + if (this.commandsStatistics.commandsStatisticsData[command].countResponse) { + this.commandsStatistics.commandsStatisticsData[command].countResponse++; } else { - this.commandsStatistics[command].countResponse = 1; + this.commandsStatistics.commandsStatisticsData[command].countResponse = 1; } } else { - this.commandsStatistics[command] = {} as CommandStatisticsData; - this.commandsStatistics[command].countResponse = 1; + this.commandsStatistics.commandsStatisticsData[command] = {} as CommandStatisticsData; + this.commandsStatistics.commandsStatisticsData[command].countResponse = 1; } break; case MessageType.CALL_ERROR_MESSAGE: - if (this.commandsStatistics[command]) { - if (this.commandsStatistics[command].countError) { - this.commandsStatistics[command].countError++; + if (this.commandsStatistics.commandsStatisticsData[command]) { + if (this.commandsStatistics.commandsStatisticsData[command].countError) { + this.commandsStatistics.commandsStatisticsData[command].countError++; } else { - this.commandsStatistics[command].countError = 1; + this.commandsStatistics.commandsStatisticsData[command].countError = 1; } } else { - this.commandsStatistics[command] = {} as CommandStatisticsData; - this.commandsStatistics[command].countError = 1; + this.commandsStatistics.commandsStatisticsData[command] = {} as CommandStatisticsData; + this.commandsStatistics.commandsStatisticsData[command].countError = 1; } break; default: - logger.error(`${this._logPrefix()} Wrong message type ${messageType}`); + logger.error(`${this.logPrefix()} Wrong message type ${messageType}`); break; } } - logPerformance(entry: PerformanceEntry, className: string): void { + public logPerformance(entry: PerformanceEntry, className: string): void { this.addPerformanceTimer(entry.name as RequestCommand | IncomingRequestCommand, entry.duration); const perfEntry: PerfEntry = {} as PerfEntry; perfEntry.name = entry.name; perfEntry.entryType = entry.entryType; perfEntry.startTime = entry.startTime; perfEntry.duration = entry.duration; - logger.info(`${this._logPrefix()} object ${className} method(s) performance entry: %j`, perfEntry); + logger.info(`${this.logPrefix()} object ${className} method(s) performance entry: %j`, perfEntry); } - start(): void { - this._displayInterval(); + public start(): void { + this.displayInterval(); } - private _display(): void { - logger.info(this._logPrefix() + ' %j', this.commandsStatistics); + private display(): void { + logger.info(this.logPrefix() + ' %j', this.commandsStatistics); } - private _displayInterval(): void { + private displayInterval(): void { if (Configuration.getStatisticsDisplayInterval() > 0) { setInterval(() => { - this._display(); + this.display(); }, Configuration.getStatisticsDisplayInterval() * 1000); - logger.info(this._logPrefix() + ' displayed every ' + Utils.secondsToHHMMSS(Configuration.getStatisticsDisplayInterval())); + logger.info(this.logPrefix() + ' displayed every ' + Utils.secondsToHHMMSS(Configuration.getStatisticsDisplayInterval())); } } @@ -114,21 +107,21 @@ export default class Statistics { command = MAPCOMMAND[command] as RequestCommand | IncomingRequestCommand; } // Initialize command statistics - if (!this.commandsStatistics[command]) { - this.commandsStatistics[command] = {} as CommandStatisticsData; + if (!this.commandsStatistics.commandsStatisticsData[command]) { + this.commandsStatistics.commandsStatisticsData[command] = {} as CommandStatisticsData; } // Update current statistics timers - this.commandsStatistics[command].countTimeMeasurement = this.commandsStatistics[command].countTimeMeasurement ? this.commandsStatistics[command].countTimeMeasurement + 1 : 1; - this.commandsStatistics[command].currentTimeMeasurement = duration; - this.commandsStatistics[command].minTimeMeasurement = this.commandsStatistics[command].minTimeMeasurement ? (this.commandsStatistics[command].minTimeMeasurement > duration ? duration : this.commandsStatistics[command].minTimeMeasurement) : duration; - this.commandsStatistics[command].maxTimeMeasurement = this.commandsStatistics[command].maxTimeMeasurement ? (this.commandsStatistics[command].maxTimeMeasurement < duration ? duration : this.commandsStatistics[command].maxTimeMeasurement) : duration; - this.commandsStatistics[command].totalTimeMeasurement = this.commandsStatistics[command].totalTimeMeasurement ? this.commandsStatistics[command].totalTimeMeasurement + duration : duration; - this.commandsStatistics[command].avgTimeMeasurement = this.commandsStatistics[command].totalTimeMeasurement / this.commandsStatistics[command].countTimeMeasurement; - Array.isArray(this.commandsStatistics[command].timeMeasurementSeries) ? this.commandsStatistics[command].timeMeasurementSeries.push(duration) : this.commandsStatistics[command].timeMeasurementSeries = [duration] as CircularArray; - this.commandsStatistics[command].medTimeMeasurement = this.median(this.commandsStatistics[command].timeMeasurementSeries); + this.commandsStatistics.commandsStatisticsData[command].countTimeMeasurement = this.commandsStatistics.commandsStatisticsData[command].countTimeMeasurement ? this.commandsStatistics.commandsStatisticsData[command].countTimeMeasurement + 1 : 1; + this.commandsStatistics.commandsStatisticsData[command].currentTimeMeasurement = duration; + this.commandsStatistics.commandsStatisticsData[command].minTimeMeasurement = this.commandsStatistics.commandsStatisticsData[command].minTimeMeasurement ? (this.commandsStatistics.commandsStatisticsData[command].minTimeMeasurement > duration ? duration : this.commandsStatistics.commandsStatisticsData[command].minTimeMeasurement) : duration; + this.commandsStatistics.commandsStatisticsData[command].maxTimeMeasurement = this.commandsStatistics.commandsStatisticsData[command].maxTimeMeasurement ? (this.commandsStatistics.commandsStatisticsData[command].maxTimeMeasurement < duration ? duration : this.commandsStatistics.commandsStatisticsData[command].maxTimeMeasurement) : duration; + this.commandsStatistics.commandsStatisticsData[command].totalTimeMeasurement = this.commandsStatistics.commandsStatisticsData[command].totalTimeMeasurement ? this.commandsStatistics.commandsStatisticsData[command].totalTimeMeasurement + duration : duration; + this.commandsStatistics.commandsStatisticsData[command].avgTimeMeasurement = this.commandsStatistics.commandsStatisticsData[command].totalTimeMeasurement / this.commandsStatistics.commandsStatisticsData[command].countTimeMeasurement; + Array.isArray(this.commandsStatistics.commandsStatisticsData[command].timeMeasurementSeries) ? this.commandsStatistics.commandsStatisticsData[command].timeMeasurementSeries.push(duration) : this.commandsStatistics.commandsStatisticsData[command].timeMeasurementSeries = [duration] as CircularArray; + this.commandsStatistics.commandsStatisticsData[command].medTimeMeasurement = this.median(this.commandsStatistics.commandsStatisticsData[command].timeMeasurementSeries); } - private _logPrefix(): string { - return Utils.logPrefix(` ${this.objName} Statistics:`); + private logPrefix(): string { + return Utils.logPrefix(` ${this.objId} Statistics:`); } }