1 import Configuration from
'./Configuration';
2 import { WebSocketCloseEventStatusString
} from
'../types/WebSocket';
3 import { WorkerProcessType
} from
'../types/Worker';
4 import crypto from
'crypto';
5 import { v4
as uuid
} from
'uuid';
7 export default class Utils
{
8 public static logPrefix(prefixString
= ''): string {
9 return new Date().toLocaleString() + prefixString
;
12 public static generateUUID(): string {
16 public static async sleep(milliSeconds
: number): Promise
<NodeJS
.Timeout
> {
17 return new Promise((resolve
) => setTimeout(resolve
as () => void, milliSeconds
));
20 public static formatDurationMilliSeconds(duration
: number): string {
21 duration
= Utils
.convertToInt(duration
);
22 const hours
= Math.floor(duration
/ (3600 * 1000));
23 const minutes
= Math.floor((duration
/ 1000 - hours
* 3600) / 60);
24 const seconds
= duration
/ 1000 - hours
* 3600 - minutes
* 60;
25 let hoursStr
= hours
.toString();
26 let minutesStr
= minutes
.toString();
27 let secondsStr
= seconds
.toString();
30 hoursStr
= '0' + hours
.toString();
33 minutesStr
= '0' + minutes
.toString();
36 secondsStr
= '0' + seconds
.toString();
38 return hoursStr
+ ':' + minutesStr
+ ':' + secondsStr
.substring(0, 6);
41 public static formatDurationSeconds(duration
: number): string {
42 return Utils
.formatDurationMilliSeconds(duration
* 1000);
45 public static convertToDate(value
: unknown
): Date {
51 if (!(value
instanceof Date)) {
52 return new Date(value
as string);
57 public static convertToInt(value
: unknown
): number {
58 let changedValue
: number = value
as number;
62 if (Number.isSafeInteger(value
)) {
63 return value
as number;
66 if (Utils
.isString(value
)) {
68 changedValue
= parseInt(value
as string);
73 public static convertToFloat(value
: unknown
): number {
74 let changedValue
: number = value
as number;
79 if (Utils
.isString(value
)) {
81 changedValue
= parseFloat(value
as string);
86 public static convertToBoolean(value
: unknown
): boolean {
91 if (typeof value
=== 'boolean') {
96 result
= value
=== 'true';
102 public static getRandomFloat(max
: number, min
= 0, negative
= false): number {
103 if (max
< min
|| min
< 0 || max
< 0) {
104 throw new RangeError('Invalid interval');
106 const randomPositiveFloat
= crypto
.randomBytes(4).readUInt32LE() / 0xffffffff;
107 const sign
= negative
&& randomPositiveFloat
< 0.5 ? -1 : 1;
108 return sign
* (randomPositiveFloat
* (max
- min
) + min
);
111 public static getRandomInteger(max
: number, min
= 0): number {
113 throw new RangeError('Invalid interval');
115 max
= Math.floor(max
);
117 if (max
< min
|| min
< 0) {
118 throw new RangeError('Invalid interval');
120 min
= Math.ceil(min
);
121 return Math.floor(Utils
.secureRandom() * (max
- min
+ 1)) + min
;
123 return Math.floor(Utils
.secureRandom() * (max
+ 1));
126 public static roundTo(numberValue
: number, scale
: number): number {
127 const roundPower
= Math.pow(10, scale
);
128 return Math.round(numberValue
* roundPower
) / roundPower
;
131 public static truncTo(numberValue
: number, scale
: number): number {
132 const truncPower
= Math.pow(10, scale
);
133 return Math.trunc(numberValue
* truncPower
) / truncPower
;
136 public static getRandomFloatRounded(max
: number, min
= 0, scale
= 2): number {
138 return Utils
.roundTo(Utils
.getRandomFloat(max
, min
), scale
);
140 return Utils
.roundTo(Utils
.getRandomFloat(max
), scale
);
143 public static getRandomFloatFluctuatedRounded(
145 fluctuationPercent
: number,
148 if (fluctuationPercent
=== 0) {
149 return Utils
.roundTo(staticValue
, scale
);
151 const fluctuationRatio
= fluctuationPercent
/ 100;
152 return Utils
.getRandomFloatRounded(
153 staticValue
* (1 + fluctuationRatio
),
154 staticValue
* (1 - fluctuationRatio
),
159 public static cloneObject
<T
>(object
: T
): T
{
160 return JSON
.parse(JSON
.stringify(object
)) as T
;
163 public static isIterable
<T
>(obj
: T
): boolean {
164 return obj
? typeof obj
[Symbol
.iterator
] === 'function' : false;
167 public static isString(value
: unknown
): boolean {
168 return typeof value
=== 'string';
171 public static isEmptyString(value
: unknown
): boolean {
172 return Utils
.isString(value
) && (value
as string).length
=== 0;
175 public static isUndefined(value
: unknown
): boolean {
176 return typeof value
=== 'undefined';
179 public static isNullOrUndefined(value
: unknown
): boolean {
180 // eslint-disable-next-line eqeqeq, no-eq-null
181 return value
== null ? true : false;
184 public static isEmptyArray(object
: unknown
): boolean {
188 if (Array.isArray(object
) && object
.length
> 0) {
194 public static isEmptyObject(obj
: object
): boolean {
195 return !Object.keys(obj
).length
;
198 public static insertAt
= (str
: string, subStr
: string, pos
: number): string =>
199 `${str.slice(0, pos)}${subStr}${str.slice(pos)}`;
202 * @param [retryNumber=0]
203 * @returns delay in milliseconds
205 public static exponentialDelay(retryNumber
= 0): number {
206 const delay
= Math.pow(2, retryNumber
) * 100;
207 const randomSum
= delay
* 0.2 * Utils
.secureRandom(); // 0-20% of the delay
208 return delay
+ randomSum
;
212 * Convert websocket error code to human readable string message
214 * @param code websocket error code
215 * @returns human readable string message
217 public static getWebSocketCloseEventStatusString(code
: number): string {
218 if (code
>= 0 && code
<= 999) {
220 } else if (code
>= 1016) {
222 return '(For WebSocket standard)';
223 } else if (code
<= 2999) {
224 return '(For WebSocket extensions)';
225 } else if (code
<= 3999) {
226 return '(For libraries and frameworks)';
227 } else if (code
<= 4999) {
228 return '(For applications)';
231 if (!Utils
.isUndefined(WebSocketCloseEventStatusString
[code
])) {
232 return WebSocketCloseEventStatusString
[code
] as string;
237 public static workerPoolInUse(): boolean {
238 return [WorkerProcessType
.DYNAMIC_POOL
, WorkerProcessType
.STATIC_POOL
].includes(
239 Configuration
.getWorkerProcess()
243 public static workerDynamicPoolInUse(): boolean {
244 return Configuration
.getWorkerProcess() === WorkerProcessType
.DYNAMIC_POOL
;
247 public static async promiseWithTimeout
<T
>(
251 timeoutCallback
: () => void = () => {
252 /* This is intentional */
255 // Create a timeout promise that rejects in timeout milliseconds
256 const timeoutPromise
= new Promise
<never>((_
, reject
) => {
259 reject(timeoutError
);
263 // Returns a race between timeout promise and the passed promise
264 return Promise
.race
<T
>([promise
, timeoutPromise
]);
268 * Generate a cryptographically secure random number in the [0,1[ range
272 public static secureRandom(): number {
273 return crypto
.randomBytes(4).readUInt32LE() / 0x100000000;