X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils%2FCircularArray.ts;h=fb73ced97d3ccca0610158d049b2acc828693a67;hb=6082281f1beebdf0126417b694c134ea4753442c;hp=feb5e3e2b66fb99aef38c6d24db1a6c5eafccfe1;hpb=c8eeb62b00988601b40e599745329acb67197750;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/CircularArray.ts b/src/utils/CircularArray.ts index feb5e3e2..fb73ced9 100644 --- a/src/utils/CircularArray.ts +++ b/src/utils/CircularArray.ts @@ -1,8 +1,10 @@ -// Copyright Jerome Benoit. 2021. All Rights Reserved. +// Copyright Jerome Benoit. 2021-2023. All Rights Reserved. -export const DEFAULT_CIRCULAR_ARRAY_SIZE = Number.MAX_SAFE_INTEGER; +const DEFAULT_CIRCULAR_ARRAY_SIZE = 1024; -/** Array with a maximum length shifting items when full. */ +/** + * Array with a maximum length and shifting items when full. + */ export class CircularArray extends Array { public size: number; @@ -32,9 +34,7 @@ export class CircularArray extends Array { } public concat(...items: (T | ConcatArray)[]): CircularArray { - const concatenatedCircularArray = super.concat( - items as T[] - ) as CircularArray; + const concatenatedCircularArray = super.concat(items as T[]) as CircularArray; concatenatedCircularArray.size = this.size; if (concatenatedCircularArray.length > concatenatedCircularArray.size) { concatenatedCircularArray.splice( @@ -47,7 +47,7 @@ export class CircularArray extends Array { public splice(start: number, deleteCount?: number, ...items: T[]): T[] { let itemsRemoved: T[]; - if (arguments.length >= 3 && typeof deleteCount !== 'undefined') { + if (arguments.length >= 3 && deleteCount !== undefined) { itemsRemoved = super.splice(start, deleteCount); // FIXME: that makes the items insert not in place this.push(...items); @@ -79,9 +79,12 @@ export class CircularArray extends Array { return this.length === this.size; } - private checkSize(size: number) { + private checkSize(size: number): void { + if (!Number.isSafeInteger(size)) { + throw new TypeError(`Invalid circular array size: ${size} is not a safe integer`); + } if (size < 0) { - throw new RangeError('Invalid circular array size'); + throw new RangeError(`Invalid circular array size: ${size} < 0`); } } }