X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils%2FStatistics.ts;h=2aa99b0d4c9f317c78d14a052c65da80f4cbac4c;hb=8434025b7338b3439180ed7c2bed888fc42e04d3;hp=1b69b30ed382311605b93cc449d0e2007559c6ab;hpb=d2a64eb5f88adfd215e14a24e58f20144d3f85c1;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/Statistics.ts b/src/utils/Statistics.ts index 1b69b30e..2aa99b0d 100644 --- a/src/utils/Statistics.ts +++ b/src/utils/Statistics.ts @@ -1,4 +1,5 @@ import CommandStatistics, { CommandStatisticsData, PerfEntry } from '../types/CommandStatistics'; +import { IncomingRequestCommand, RequestCommand } from '../types/ocpp/1.6/Requests'; import CircularArray from './CircularArray'; import Configuration from './Configuration'; @@ -8,57 +9,46 @@ import Utils from './Utils'; import logger from './Logger'; export default class Statistics { - private static instance: Statistics; - private _objName: string; - private _commandsStatistics: CommandStatistics; + private objId: string; + private commandsStatistics: CommandStatistics; - private constructor() { - this._commandsStatistics = {} as CommandStatistics; + public constructor(objName: string) { + this.objId = objName; + this.commandsStatistics = { id: this.objId ? this.objId : 'Object id not specified', commandsStatisticsData: {} }; } - set objName(objName: string) { - this._objName = objName; - } - - static getInstance(): Statistics { - if (!Statistics.instance) { - Statistics.instance = new Statistics(); - } - return Statistics.instance; - } - - addMessage(command: string, messageType: number): 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: @@ -67,8 +57,8 @@ export default class Statistics { } } - logPerformance(entry: PerformanceEntry, className: string): void { - this.addPerformanceTimer(entry.name, entry.duration); + 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; @@ -77,12 +67,12 @@ export default class Statistics { logger.info(`${this._logPrefix()} object ${className} method(s) performance entry: %j`, perfEntry); } - start(): void { + public start(): void { this._displayInterval(); } private _display(): void { - logger.info(this._logPrefix() + ' %j', this._commandsStatistics); + logger.info(this._logPrefix() + ' %j', this.commandsStatistics); } private _displayInterval(): void { @@ -106,7 +96,7 @@ export default class Statistics { return (sortedDataSet[(middleIndex - 1)] + sortedDataSet[middleIndex]) / 2; } - private addPerformanceTimer(command: string, duration: number): void { + private addPerformanceTimer(command: RequestCommand | IncomingRequestCommand, duration: number): void { // Map to proper command name const MAPCOMMAND = { sendMeterValues: 'MeterValues', @@ -114,24 +104,24 @@ export default class Statistics { stopTransaction: 'StopTransaction', }; if (MAPCOMMAND[command]) { - command = MAPCOMMAND[command] as string; + 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:`); + return Utils.logPrefix(` ${this.objId} Statistics:`); } }