X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils%2FUtils.ts;h=16cb7fa3fca34cd39f803607ec6b70fb3f8dfa78;hb=418106c832022ba6f100f4bf81315300994bee87;hp=167e299df27c075641927e0b884ee6bd76d7dbc6;hpb=7ec46a9aab2376a8a5201ce57aba95116a00d291;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/Utils.ts b/src/utils/Utils.ts index 167e299d..16cb7fa3 100644 --- a/src/utils/Utils.ts +++ b/src/utils/Utils.ts @@ -1,3 +1,4 @@ +import { WebSocketCloseEventStatusString } from '../types/WebSocket'; import { v4 as uuid } from 'uuid'; export default class Utils { @@ -10,14 +11,14 @@ export default class Utils { } static secondsToHHMMSS(seconds: number): string { - return new Date(seconds * 1000).toISOString().substr(11, 8); + return Utils.milliSecondsToHHMMSS(seconds * 1000); } static milliSecondsToHHMMSS(milliSeconds: number): string { return new Date(milliSeconds).toISOString().substr(11, 8); } - static removeExtraEmptyLines(tab): void { + static removeExtraEmptyLines(tab: string[]): void { // Start from the end for (let i = tab.length - 1; i > 0; i--) { // Two consecutive empty lines? @@ -102,7 +103,13 @@ export default class Utils { } static roundTo(number: number, scale: number): number { - return Utils.convertToFloat(number.toFixed(scale)); + const roundPower = Math.pow(10, scale); + return Math.round(number * roundPower) / roundPower; + } + + static truncTo(number: number, scale: number): number { + const truncPower = Math.pow(10, scale); + return Math.trunc(number * truncPower) / truncPower; } static getRandomFloatRounded(max: number, min = 0, scale = 2): number { @@ -117,12 +124,8 @@ export default class Utils { return date.toLocaleString() + prefixString; } - static objectHasOwnProperty(object, property): boolean { - return Object.prototype.hasOwnProperty.call(object, property); - } - - static cloneObject(object) { - return JSON.parse(JSON.stringify(object)); + static cloneObject(object: T): T { + return JSON.parse(JSON.stringify(object)) as T; } static isIterable(obj): boolean { @@ -154,7 +157,7 @@ export default class Utils { } static isNullOrUndefined(value): boolean { - // eslint-disable-next-line no-eq-null + // eslint-disable-next-line no-eq-null, eqeqeq if (value == null) { return true; } @@ -162,6 +165,9 @@ export default class Utils { } static isEmptyArray(object): boolean { + if (!object) { + return true; + } if (Array.isArray(object) && object.length > 0) { return false; } @@ -173,4 +179,34 @@ export default class Utils { } static insertAt = (str: string, subStr: string, pos: number): string => `${str.slice(0, pos)}${subStr}${str.slice(pos)}`; + + /** + * @param {number} [retryNumber=0] + * @return {number} - delay in milliseconds + */ + static exponentialDelay(retryNumber = 0): number { + const delay = Math.pow(2, retryNumber) * 100; + const randomSum = delay * 0.2 * Math.random(); // 0-20% of the delay + return delay + randomSum; + } + + static getWebSocketCloseEventStatusString(code: number): string { + if (code >= 0 && code <= 999) { + return '(Unused)'; + } else if (code >= 1016) { + if (code <= 1999) { + return '(For WebSocket standard)'; + } else if (code <= 2999) { + return '(For WebSocket extensions)'; + } else if (code <= 3999) { + return '(For libraries and frameworks)'; + } else if (code <= 4999) { + return '(For applications)'; + } + } + if (!Utils.isUndefined(WebSocketCloseEventStatusString[code])) { + return WebSocketCloseEventStatusString[code] as string; + } + return '(Unknown)'; + } }