refactor: cleanup log messages
[e-mobility-charging-stations-simulator.git] / src / utils / Utils.ts
index 8ea05765f5c3e530329814d81bcdfd0310b800d4..54b0751022130ba18e3a238cc58a78d741acb39e 100644 (file)
-import Configuration from './Configuration';
-import { WebSocketCloseEventStatusString } from '../types/WebSocket';
-import { WorkerProcessType } from '../types/Worker';
-import { v4 as uuid } from 'uuid';
+import { randomBytes, randomInt, randomUUID } from 'node:crypto';
+import { inspect } from 'node:util';
 
-export default class Utils {
-  static generateUUID(): string {
-    return uuid();
-  }
+import {
+  formatDuration,
+  isDate,
+  millisecondsToHours,
+  millisecondsToMinutes,
+  millisecondsToSeconds,
+  secondsToMilliseconds,
+} from 'date-fns';
+import clone from 'just-clone';
 
-  static async sleep(milliSeconds: number): Promise<NodeJS.Timeout> {
-    return new Promise((resolve) => setTimeout(resolve, milliSeconds));
-  }
+import { Constants } from './Constants';
+import { type TimestampedData, WebSocketCloseEventStatusString } from '../types';
 
-  static secondsToHHMMSS(seconds: number): string {
-    return Utils.milliSecondsToHHMMSS(seconds * 1000);
-  }
+export const logPrefix = (prefixString = ''): string => {
+  return `${new Date().toLocaleString()}${prefixString}`;
+};
 
-  static milliSecondsToHHMMSS(milliSeconds: number): string {
-    return new Date(milliSeconds).toISOString().substr(11, 8);
-  }
+export const generateUUID = (): string => {
+  return randomUUID();
+};
 
-  static removeExtraEmptyLines(tab: string[]): void {
-    // Start from the end
-    for (let i = tab.length - 1; i > 0; i--) {
-      // Two consecutive empty lines?
-      if (tab[i].length === 0 && tab[i - 1].length === 0) {
-        // Remove the last one
-        tab.splice(i, 1);
-      }
-      // Check last line
-      if (i === 1 && tab[i - 1].length === 0) {
-        // Remove the first one
-        tab.splice(i - 1, 1);
-      }
-    }
+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<NodeJS.Timeout> => {
+  return new Promise<NodeJS.Timeout>((resolve) => setTimeout(resolve as () => void, milliSeconds));
+};
+
+export const formatDurationMilliSeconds = (duration: number): string => {
+  duration = convertToInt(duration);
+  const days = Math.floor(duration / (24 * 3600 * 1000));
+  const hours = Math.floor(millisecondsToHours(duration) - days * 24);
+  const minutes = Math.floor(millisecondsToMinutes(duration) - days * 24 * 60 - hours * 60);
+  const seconds = Math.floor(
+    millisecondsToSeconds(duration) - days * 24 * 3600 - hours * 3600 - minutes * 60,
+  );
+  return formatDuration({
+    days,
+    hours,
+    minutes,
+    seconds,
+  });
+};
+
+export const formatDurationSeconds = (duration: number): string => {
+  return formatDurationMilliSeconds(secondsToMilliseconds(duration));
+};
+
+// More efficient date validation function than the one provided by date-fns
+export const isValidDate = (date: unknown): boolean => {
+  if (typeof date === 'number') {
+    return !isNaN(date);
+  } else if (isDate(date)) {
+    return !isNaN((date as Date).getTime());
   }
+  return false;
+};
 
-  static convertToDate(value): Date {
-    // Check
-    if (!value) {
-      return value;
-    }
-    // Check Type
-    if (!(value instanceof Date)) {
-      return new Date(value);
-    }
+export const convertToDate = (
+  value: Date | string | number | null | undefined,
+): Date | null | undefined => {
+  if (isNullOrUndefined(value)) {
+    return value as null | undefined;
+  }
+  if (value instanceof Date) {
     return value;
   }
-
-  static convertToInt(value): number {
-    let changedValue = value;
-    if (!value) {
-      return 0;
-    }
-    if (Number.isSafeInteger(value)) {
-      return value;
-    }
-    // Check
-    if (typeof value === 'string') {
-      // Create Object
-      changedValue = parseInt(value);
-    }
-    return changedValue;
+  if (isString(value) || typeof value === 'number') {
+    return new Date(value!);
   }
+  return null;
+};
 
-  static convertToFloat(value): number {
-    let changedValue = value;
-    if (!value) {
-      return 0;
-    }
-    // Check
-    if (typeof value === 'string') {
-      // Create Object
-      changedValue = parseFloat(value);
-    }
-    return changedValue;
-  }
-
-  static convertToBoolean(value): 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;
+export const convertToInt = (value: unknown): number => {
+  if (!value) {
+    return 0;
   }
-
-  static getRandomFloat(max: number, min = 0): number {
-    return Math.random() < 0.5 ? (1 - Math.random()) * (max - min) + min : Math.random() * (max - min) + min;
+  let changedValue: number = value as number;
+  if (Number.isSafeInteger(value)) {
+    return value as number;
   }
-
-  static getRandomInt(max: number, min = 0): number {
-    if (min) {
-      return Math.floor(Math.random() * (max - min + 1) + min);
-    }
-    return Math.floor(Math.random() * max + 1);
+  if (typeof value === 'number') {
+    return Math.trunc(value);
   }
-
-  static roundTo(number: number, scale: number): number {
-    const roundPower = Math.pow(10, scale);
-    return Math.round(number * roundPower) / roundPower;
+  if (isString(value)) {
+    changedValue = parseInt(value as string);
+  }
+  if (isNaN(changedValue)) {
+    // eslint-disable-next-line @typescript-eslint/no-base-to-string
+    throw new Error(`Cannot convert to integer: ${value.toString()}`);
   }
+  return changedValue;
+};
 
-  static truncTo(number: number, scale: number): number {
-    const truncPower = Math.pow(10, scale);
-    return Math.trunc(number * truncPower) / truncPower;
+export const convertToFloat = (value: unknown): number => {
+  if (!value) {
+    return 0;
+  }
+  let changedValue: number = value as number;
+  if (isString(value)) {
+    changedValue = parseFloat(value as string);
+  }
+  if (isNaN(changedValue)) {
+    // eslint-disable-next-line @typescript-eslint/no-base-to-string
+    throw new Error(`Cannot convert to float: ${value.toString()}`);
   }
+  return changedValue;
+};
 
-  static getRandomFloatRounded(max: number, min = 0, scale = 2): number {
-    if (min) {
-      return Utils.roundTo(Utils.getRandomFloat(max, min), scale);
+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 Utils.roundTo(Utils.getRandomFloat(max), scale);
   }
+  return result;
+};
 
-  static logPrefix(prefixString = ''): string {
-    const date = new Date();
-    return date.toLocaleString() + prefixString;
+export const getRandomFloat = (max = Number.MAX_VALUE, min = 0): number => {
+  if (max < min) {
+    throw new RangeError('Invalid interval');
   }
-
-  static cloneObject<T>(object: T): T {
-    return JSON.parse(JSON.stringify(object)) as T;
+  if (max - min === Infinity) {
+    throw new RangeError('Invalid interval');
   }
+  return (randomBytes(4).readUInt32LE() / 0xffffffff) * (max - min) + min;
+};
 
-  static isIterable(obj): boolean {
-    if (obj) {
-      return typeof obj[Symbol.iterator] === 'function';
-    }
-    return false;
+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));
   }
+  return Math.floor(randomInt(max + 1));
+};
 
-  static isEmptyJSon(document): boolean {
-    // Empty?
-    if (!document) {
-      return true;
-    }
-    // Check type
-    if (typeof document !== 'object') {
-      return true;
-    }
-    // Check
-    return Object.keys(document).length === 0;
-  }
+/**
+ * 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;
+};
 
-  static isString(value): boolean {
-    return typeof value === 'string';
+export const getRandomFloatRounded = (max = Number.MAX_VALUE, min = 0, scale = 2): number => {
+  if (min) {
+    return roundTo(getRandomFloat(max, min), scale);
   }
+  return roundTo(getRandomFloat(max), scale);
+};
 
-  static isUndefined(value): boolean {
-    return typeof value === 'undefined';
+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}`,
+    );
   }
+  if (fluctuationPercent === 0) {
+    return roundTo(staticValue, scale);
+  }
+  const fluctuationRatio = fluctuationPercent / 100;
+  return getRandomFloatRounded(
+    staticValue * (1 + fluctuationRatio),
+    staticValue * (1 - fluctuationRatio),
+    scale,
+  );
+};
 
-  static isNullOrUndefined(value): boolean {
-    // eslint-disable-next-line no-eq-null, eqeqeq
-    if (value == null) {
-      return true;
-    }
+export const extractTimeSeriesValues = (timeSeries: Array<TimestampedData>): 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 = <T extends object>(object: T): T => {
+  return clone<T>(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 = <T>(obj: T): boolean => {
+  return !isNullOrUndefined(obj) ? typeof obj[Symbol.iterator as keyof T] === '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;
   }
-
-  static isEmptyArray(object): boolean {
-    if (!object) {
-      return true;
-    }
-    if (Array.isArray(object) && object.length > 0) {
-      return false;
-    }
-    return true;
+  // Iterates over the keys of an object, if
+  // any exist, return false.
+  for (const _ in obj) {
+    return false;
   }
+  return true;
+};
 
-  static isEmptyObject(obj): boolean {
-    return !Object.keys(obj).length;
-  }
+export const insertAt = (str: string, subStr: string, pos: number): string =>
+  `${str.slice(0, pos)}${subStr}${str.slice(pos)}`;
 
-  static 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;
+};
 
-  /**
-   * @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;
-  }
+const isPromisePending = (promise: Promise<unknown>): boolean => {
+  return inspect(promise).includes('pending');
+};
 
-  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)';
+export const promiseWithTimeout = async <T>(
+  promise: Promise<T>,
+  timeoutMs: number,
+  timeoutError: Error,
+  timeoutCallback: () => void = () => {
+    /* This is intentional */
+  },
+): Promise<T> => {
+  // Create a timeout promise that rejects in timeout milliseconds
+  const timeoutPromise = new Promise<never>((_, reject) => {
+    setTimeout(() => {
+      if (isPromisePending(promise)) {
+        timeoutCallback();
+        // FIXME: The original promise shall be canceled
       }
+      reject(timeoutError);
+    }, timeoutMs);
+  });
+
+  // Returns a race between timeout promise and the passed promise
+  return Promise.race<T>([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<string, unknown> | Record<string, unknown>[] | Map<unknown, unknown>,
+  space?: number,
+): string => {
+  return JSON.stringify(
+    obj,
+    (_, value: Record<string, unknown>) => {
+      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 as keyof typeof WebSocketCloseEventStatusString],
+    )
+  ) {
+    return WebSocketCloseEventStatusString[code as keyof typeof WebSocketCloseEventStatusString];
+  }
+  return '(Unknown)';
+};
 
-  static workerPoolInUse(): boolean {
-    return Configuration.getWorkerProcess() === WorkerProcessType.DYNAMIC_POOL || Configuration.getWorkerProcess() === WorkerProcessType.STATIC_POOL;
+export const isArraySorted = <T>(array: T[], compareFn: (a: T, b: T) => number): boolean => {
+  for (let index = 0; index < array.length - 1; ++index) {
+    if (compareFn(array[index], array[index + 1]) > 0) {
+      return false;
+    }
   }
-}
+  return true;
+};