X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils%2FConstants.ts;h=c42e15be6e3687f84202f125af61ea966e6ea46a;hb=09ae1fb2ee859a4ab47f742962b0403416c70672;hp=fb9e20046ac059ef341f722645a109dfd3f43580;hpb=bf53cadfde620fe89e6438403658682feb5bd39e;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/Constants.ts b/src/utils/Constants.ts index fb9e2004..c42e15be 100644 --- a/src/utils/Constants.ts +++ b/src/utils/Constants.ts @@ -1,6 +1,6 @@ -import { MeterValueMeasurand } from '../types/ocpp/MeterValues'; +import { MeterValueMeasurand } from '../types'; -export default class Constants { +export class Constants { static readonly OCPP_DEFAULT_BOOT_NOTIFICATION_INTERVAL = 60000; // Ms static readonly OCPP_WEBSOCKET_TIMEOUT = 60000; // Ms static readonly OCPP_TRIGGER_MESSAGE_DELAY = 500; // Ms @@ -10,10 +10,10 @@ export default class Constants { static readonly CHARGING_STATION_ATG_DEFAULT_STOP_AFTER_HOURS = 0.25; // Hours // See https://semver.org/#is-there-a-suggested-regular-expression-regex-to-check-a-semver-string - static readonly SEMVER_REGEXP = - /^(0|[1-9]\d*)\.(0|[1-9]\d*)\.(0|[1-9]\d*)(?:-((?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\.(?:0|[1-9]\d*|\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\+([0-9a-zA-Z-]+(?:\.[0-9a-zA-Z-]+)*))?$/; + static readonly SEMVER_PATTERN = + '^(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?$'; - static readonly DEFAULT_CIRCULAR_BUFFER_CAPACITY = Number.MAX_SAFE_INTEGER; + static readonly DEFAULT_CIRCULAR_BUFFER_CAPACITY = 1024; static readonly DEFAULT_HASH_ALGORITHM = 'sha384'; @@ -45,6 +45,13 @@ export default class Constants { static readonly UNKNOWN_COMMAND = 'unknown command'; + static readonly MAX_RANDOM_INTEGER = 281474976710654; + + static readonly EMPTY_FREEZED_OBJECT = Object.freeze({}); + static readonly EMPTY_FUNCTION = Object.freeze(() => { + /* This is intentional */ + }); + private constructor() { // This is intentional }