X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils%2FUtils.ts;h=3ef99c5f2fdcab960c8e8234371eba0830d59c51;hb=5edd8ba0f8978cfb3ca9d80f299d9748c6c5970e;hp=8826f702a142ad997cd97ffc89442c6ba6829d23;hpb=d20581eee9c09db9eb4650c1c187857e1d91cda6;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/Utils.ts b/src/utils/Utils.ts index 8826f702..3ef99c5f 100644 --- a/src/utils/Utils.ts +++ b/src/utils/Utils.ts @@ -1,297 +1,337 @@ -import crypto from 'crypto'; - -import { WebSocketCloseEventStatusString } from '../types/WebSocket'; - -export default class Utils { - private constructor() { - // This is intentional +import { randomBytes, randomInt, randomUUID } from 'node:crypto'; +import { inspect } from 'node:util'; + +import clone from 'just-clone'; + +import { Constants } from './Constants'; +import { type TimestampedData, WebSocketCloseEventStatusString } from '../types'; + +export const logPrefix = (prefixString = ''): string => { + return `${new Date().toLocaleString()}${prefixString}`; +}; + +export const generateUUID = (): string => { + return randomUUID(); +}; + +export const validateUUID = (uuid: string): boolean => { + return /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/.test( + uuid, + ); +}; + +export const sleep = async (milliSeconds: number): Promise => { + return new Promise((resolve) => setTimeout(resolve as () => void, milliSeconds)); +}; + +export const formatDurationMilliSeconds = (duration: number): string => { + duration = convertToInt(duration); + const hours = Math.floor(duration / (3600 * 1000)); + const minutes = Math.floor((duration / 1000 - hours * 3600) / 60); + const seconds = duration / 1000 - hours * 3600 - minutes * 60; + let hoursStr = hours.toString(); + let minutesStr = minutes.toString(); + let secondsStr = seconds.toString(); + + if (hours < 10) { + hoursStr = `0${hours.toString()}`; } - - public static logPrefix(prefixString = ''): string { - return new Date().toLocaleString() + prefixString; + if (minutes < 10) { + minutesStr = `0${minutes.toString()}`; } - - public static generateUUID(): string { - return crypto.randomUUID(); + if (seconds < 10) { + secondsStr = `0${seconds.toString()}`; } - - public static validateUUID(uuid: string): boolean { - return /^[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$/.test( - uuid - ); - } - - public static async sleep(milliSeconds: number): Promise { - return new Promise((resolve) => setTimeout(resolve as () => void, milliSeconds)); + return `${hoursStr}:${minutesStr}:${secondsStr.substring(0, 6)}`; +}; + +export const formatDurationSeconds = (duration: number): string => { + return formatDurationMilliSeconds(duration * 1000); +}; + +export const convertToDate = ( + value: Date | string | number | null | undefined, +): Date | null | undefined => { + if (isNullOrUndefined(value)) { + return value as null | undefined; } - - public static formatDurationMilliSeconds(duration: number): string { - duration = Utils.convertToInt(duration); - const hours = Math.floor(duration / (3600 * 1000)); - const minutes = Math.floor((duration / 1000 - hours * 3600) / 60); - const seconds = duration / 1000 - hours * 3600 - minutes * 60; - let hoursStr = hours.toString(); - let minutesStr = minutes.toString(); - let secondsStr = seconds.toString(); - - if (hours < 10) { - hoursStr = '0' + hours.toString(); - } - if (minutes < 10) { - minutesStr = '0' + minutes.toString(); - } - if (seconds < 10) { - secondsStr = '0' + seconds.toString(); - } - return hoursStr + ':' + minutesStr + ':' + secondsStr.substring(0, 6); - } - - public static formatDurationSeconds(duration: number): string { - return Utils.formatDurationMilliSeconds(duration * 1000); - } - - public static convertToDate(value: unknown): Date { - // Check - if (!value) { - return value as Date; - } - // Check Type - if (!(value instanceof Date)) { - return new Date(value as string); - } + if (value instanceof Date) { return value; } - - public static convertToInt(value: unknown): number { - let changedValue: number = value as number; - if (!value) { - return 0; - } - if (Number.isSafeInteger(value)) { - return value as number; - } - // Check - if (Utils.isString(value)) { - // Create Object - changedValue = parseInt(value as string); - } - return changedValue; + if (isString(value) || typeof value === 'number') { + return new Date(value); } + return null; +}; - public static convertToFloat(value: unknown): number { - let changedValue: number = value as number; - if (!value) { - return 0; - } - // Check - if (Utils.isString(value)) { - // Create Object - changedValue = parseFloat(value as string); - } - return changedValue; +export const convertToInt = (value: unknown): number => { + if (!value) { + return 0; } - - public static convertToBoolean(value: unknown): boolean { - let result = false; - // Check boolean - if (value) { - // Check the type - if (typeof value === 'boolean') { - // Already a boolean - result = value; - } else { - // Convert - result = value === 'true'; - } - } - return result; + let changedValue: number = value as number; + if (Number.isSafeInteger(value)) { + return value as number; } - - public static getRandomFloat(max = Number.MAX_VALUE, min = 0, negative = false): number { - if (max < min || max < 0 || min < 0) { - throw new RangeError('Invalid interval'); - } - const randomPositiveFloat = crypto.randomBytes(4).readUInt32LE() / 0xffffffff; - const sign = negative && randomPositiveFloat < 0.5 ? -1 : 1; - return sign * (randomPositiveFloat * (max - min) + min); + if (typeof value === 'number') { + return Math.trunc(value); } - - public static getRandomInteger(max = Number.MAX_SAFE_INTEGER, min = 0): number { - if (max < min || max < 0 || min < 0) { - throw new RangeError('Invalid interval'); - } - max = Math.floor(max); - if (!Utils.isNullOrUndefined(min) && min !== 0) { - min = Math.ceil(min); - return Math.floor(Utils.secureRandom() * (max - min + 1)) + min; - } - return Math.floor(Utils.secureRandom() * (max + 1)); + if (isString(value)) { + changedValue = parseInt(value as string); } - - public static roundTo(numberValue: number, scale: number): number { - const roundPower = Math.pow(10, scale); - return Math.round(numberValue * roundPower) / roundPower; + if (isNaN(changedValue)) { + throw new Error(`Cannot convert to integer: ${value.toString()}`); } + return changedValue; +}; - public static truncTo(numberValue: number, scale: number): number { - const truncPower = Math.pow(10, scale); - return Math.trunc(numberValue * truncPower) / truncPower; +export const convertToFloat = (value: unknown): number => { + if (!value) { + return 0; } - - public static getRandomFloatRounded(max = Number.MAX_VALUE, min = 0, scale = 2): number { - if (min) { - return Utils.roundTo(Utils.getRandomFloat(max, min), scale); - } - return Utils.roundTo(Utils.getRandomFloat(max), scale); + let changedValue: number = value as number; + if (isString(value)) { + changedValue = parseFloat(value as string); } - - public static getRandomFloatFluctuatedRounded( - staticValue: number, - fluctuationPercent: number, - scale = 2 - ): number { - if (fluctuationPercent === 0) { - return Utils.roundTo(staticValue, scale); - } - const fluctuationRatio = fluctuationPercent / 100; - return Utils.getRandomFloatRounded( - staticValue * (1 + fluctuationRatio), - staticValue * (1 - fluctuationRatio), - scale - ); + if (isNaN(changedValue)) { + throw new Error(`Cannot convert to float: ${value.toString()}`); } - - public static cloneObject(object: T): T { - return JSON.parse(JSON.stringify(object)) as T; + return changedValue; +}; + +export const convertToBoolean = (value: unknown): boolean => { + let result = false; + if (value) { + // Check the type + if (typeof value === 'boolean') { + return value; + } else if (isString(value) && ((value as string).toLowerCase() === 'true' || value === '1')) { + result = true; + } else if (typeof value === 'number' && value === 1) { + result = true; + } } + return result; +}; - public static isIterable(obj: T): boolean { - return obj ? typeof obj[Symbol.iterator] === 'function' : false; +export const getRandomFloat = (max = Number.MAX_VALUE, min = 0): number => { + if (max < min) { + throw new RangeError('Invalid interval'); } - - public static isString(value: unknown): boolean { - return typeof value === 'string'; + if (max - min === Infinity) { + throw new RangeError('Invalid interval'); } - - public static isEmptyString(value: unknown): boolean { - return Utils.isString(value) && (value as string).trim().length === 0; + return (randomBytes(4).readUInt32LE() / 0xffffffff) * (max - min) + min; +}; + +export const getRandomInteger = (max = Constants.MAX_RANDOM_INTEGER, min = 0): number => { + max = Math.floor(max); + if (!isNullOrUndefined(min) && min !== 0) { + min = Math.ceil(min); + return Math.floor(randomInt(min, max + 1)); } - - public static isUndefined(value: unknown): boolean { - return typeof value === 'undefined'; + return Math.floor(randomInt(max + 1)); +}; + +/** + * Rounds the given number to the given scale. + * The rounding is done using the "round half away from zero" method. + * + * @param numberValue - The number to round. + * @param scale - The scale to round to. + * @returns The rounded number. + */ +export const roundTo = (numberValue: number, scale: number): number => { + const roundPower = Math.pow(10, scale); + return Math.round(numberValue * roundPower * (1 + Number.EPSILON)) / roundPower; +}; + +export const getRandomFloatRounded = (max = Number.MAX_VALUE, min = 0, scale = 2): number => { + if (min) { + return roundTo(getRandomFloat(max, min), scale); } - - public static isNullOrUndefined(value: unknown): boolean { - // eslint-disable-next-line eqeqeq, no-eq-null - return value == null ? true : false; + return roundTo(getRandomFloat(max), scale); +}; + +export const getRandomFloatFluctuatedRounded = ( + staticValue: number, + fluctuationPercent: number, + scale = 2, +): number => { + if (fluctuationPercent < 0 || fluctuationPercent > 100) { + throw new RangeError( + `Fluctuation percent must be between 0 and 100. Actual value: ${fluctuationPercent}`, + ); } - - public static isEmptyArray(object: unknown | unknown[]): boolean { - if (!Array.isArray(object)) { - return true; - } - if (object.length > 0) { - return false; - } - return true; + if (fluctuationPercent === 0) { + return roundTo(staticValue, scale); } - - public static isEmptyObject(obj: object): boolean { - if (Utils.isNullOrUndefined(obj)) { - return false; - } - // Iterates over the keys of an object, if - // any exist, return false. - for (const _ in obj) { - return false; - } - return true; + const fluctuationRatio = fluctuationPercent / 100; + return getRandomFloatRounded( + staticValue * (1 + fluctuationRatio), + staticValue * (1 - fluctuationRatio), + scale, + ); +}; + +export const extractTimeSeriesValues = (timeSeries: Array): number[] => { + return timeSeries.map((timeSeriesItem) => timeSeriesItem.value); +}; + +export const isObject = (item: unknown): boolean => { + return ( + isNullOrUndefined(item) === false && typeof item === 'object' && Array.isArray(item) === false + ); +}; + +export const cloneObject = (object: T): T => { + return clone(object); +}; + +export const hasOwnProp = (object: unknown, property: PropertyKey): boolean => { + return isObject(object) && Object.hasOwn(object as object, property); +}; + +export const isCFEnvironment = (): boolean => { + return !isNullOrUndefined(process.env.VCAP_APPLICATION); +}; + +export const isIterable = (obj: T): boolean => { + return !isNullOrUndefined(obj) ? typeof obj[Symbol.iterator] === 'function' : false; +}; + +const isString = (value: unknown): boolean => { + return typeof value === 'string'; +}; + +export const isEmptyString = (value: unknown): boolean => { + return isNullOrUndefined(value) || (isString(value) && (value as string).trim().length === 0); +}; + +export const isNotEmptyString = (value: unknown): boolean => { + return isString(value) && (value as string).trim().length > 0; +}; + +export const isUndefined = (value: unknown): boolean => { + return value === undefined; +}; + +export const isNullOrUndefined = (value: unknown): boolean => { + // eslint-disable-next-line eqeqeq, no-eq-null + return value == null; +}; + +export const isEmptyArray = (object: unknown): boolean => { + return Array.isArray(object) && object.length === 0; +}; + +export const isNotEmptyArray = (object: unknown): boolean => { + return Array.isArray(object) && object.length > 0; +}; + +export const isEmptyObject = (obj: object): boolean => { + if (obj?.constructor !== Object) { + return false; } - - public static insertAt = (str: string, subStr: string, pos: number): string => - `${str.slice(0, pos)}${subStr}${str.slice(pos)}`; - - /** - * @param [retryNumber=0] - * @returns delay in milliseconds - */ - public static exponentialDelay(retryNumber = 0): number { - const delay = Math.pow(2, retryNumber) * 100; - const randomSum = delay * 0.2 * Utils.secureRandom(); // 0-20% of the delay - return delay + randomSum; + // Iterates over the keys of an object, if + // any exist, return false. + for (const _ in obj) { + return false; } - - public static async promiseWithTimeout( - promise: Promise, - timeoutMs: number, - timeoutError: Error, - timeoutCallback: () => void = () => { - /* This is intentional */ - } - ): Promise { - // Create a timeout promise that rejects in timeout milliseconds - const timeoutPromise = new Promise((_, reject) => { - setTimeout(() => { + return true; +}; + +export const insertAt = (str: string, subStr: string, pos: number): string => + `${str.slice(0, pos)}${subStr}${str.slice(pos)}`; + +/** + * Computes the retry delay in milliseconds using an exponential backoff algorithm. + * + * @param retryNumber - the number of retries that have already been attempted + * @returns delay in milliseconds + */ +export const exponentialDelay = (retryNumber = 0, maxDelayRatio = 0.2): number => { + const delay = Math.pow(2, retryNumber) * 100; + const randomSum = delay * maxDelayRatio * secureRandom(); // 0-20% of the delay + return delay + randomSum; +}; + +const isPromisePending = (promise: Promise): boolean => { + return inspect(promise).includes('pending'); +}; + +export const promiseWithTimeout = async ( + promise: Promise, + timeoutMs: number, + timeoutError: Error, + timeoutCallback: () => void = () => { + /* This is intentional */ + }, +): Promise => { + // Create a timeout promise that rejects in timeout milliseconds + const timeoutPromise = new Promise((_, reject) => { + setTimeout(() => { + if (isPromisePending(promise)) { timeoutCallback(); - reject(timeoutError); - }, timeoutMs); - }); - - // Returns a race between timeout promise and the passed promise - return Promise.race([promise, timeoutPromise]); - } - - /** - * Generate a cryptographically secure random number in the [0,1[ range - * - * @returns - */ - public static secureRandom(): number { - return crypto.randomBytes(4).readUInt32LE() / 0x100000000; - } - - public static JSONStringifyWithMapSupport( - obj: Record | Record[], - space?: number - ): string { - return JSON.stringify( - obj, - (key, value: Record) => { - if (value instanceof Map) { - return { - dataType: 'Map', - value: [...value], - }; - } - return value; - }, - space - ); - } - - /** - * Convert websocket error code to human readable string message - * - * @param code websocket error code - * @returns human readable string message - */ - public 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)'; + // FIXME: The original promise shall be canceled } + reject(timeoutError); + }, timeoutMs); + }); + + // Returns a race between timeout promise and the passed promise + return Promise.race([promise, timeoutPromise]); +}; + +/** + * Generates a cryptographically secure random number in the [0,1[ range + * + * @returns + */ +export const secureRandom = (): number => { + return randomBytes(4).readUInt32LE() / 0x100000000; +}; + +export const JSONStringifyWithMapSupport = ( + obj: Record | Record[] | Map, + space?: number, +): string => { + return JSON.stringify( + obj, + (key, value: Record) => { + if (value instanceof Map) { + return { + dataType: 'Map', + value: [...value], + }; + } + return value; + }, + space, + ); +}; + +/** + * Converts websocket error code to human readable string message + * + * @param code - websocket error code + * @returns human readable string message + */ +export const 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)'; } -} + if (!isUndefined(WebSocketCloseEventStatusString[code])) { + return WebSocketCloseEventStatusString[code] as string; + } + return '(Unknown)'; +};