X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Futils%2FConstants.ts;h=2d66659889e3a5418d083b9b60b7cdeb8960a18c;hb=b8e3363a179fcf79d8bb66f47724b377d4d38a75;hp=2223c5efc8fc118bb0723f95b1dcdd7edc60a5c3;hpb=46a830d2173d93d4fc5e4bb46fb3591a27fb29dc;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/Constants.ts b/src/utils/Constants.ts index 2223c5ef..2d666598 100644 --- a/src/utils/Constants.ts +++ b/src/utils/Constants.ts @@ -2,14 +2,23 @@ import { type AutomaticTransactionGeneratorConfiguration, type ChargingStationInfo, CurrentType, + type IncomingRequestCommand, OCPPVersion, + type RequestCommand, VendorParametersKey } from '../types/index.js' // eslint-disable-next-line @typescript-eslint/no-extraneous-class export class Constants { + // See https://semver.org/#is-there-a-suggested-regular-expression-regex-to-check-a-semver-string + private 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-]+)*))?$' + + private static readonly DEFAULT_CHARGING_STATION_RESET_TIME = 30000 // Ms + static readonly DEFAULT_STATION_INFO: Partial = Object.freeze({ enableStatistics: false, + autoStart: true, remoteAuthorization: true, currentOutType: CurrentType.AC, mainVoltageMeterValues: true, @@ -22,10 +31,19 @@ export class Constants { transactionDataMeterValues: false, supervisionUrlOcppConfiguration: false, supervisionUrlOcppKey: VendorParametersKey.ConnectionUrl, + useConnectorId0: true, ocppVersion: OCPPVersion.VERSION_16, + firmwareVersionPattern: Constants.SEMVER_PATTERN, + firmwareUpgrade: { + versionUpgrade: { + step: 1 + }, + reset: true + }, ocppPersistentConfiguration: true, stationInfoPersistentConfiguration: true, automaticTransactionGeneratorPersistentConfiguration: true, + resetTime: Constants.DEFAULT_CHARGING_STATION_RESET_TIME, autoReconnectMaxRetries: -1, registrationMaxRetries: -1, reconnectExponentialDelay: false, @@ -36,10 +54,7 @@ export class Constants { static readonly DEFAULT_HEARTBEAT_INTERVAL = 60000 // Ms static readonly DEFAULT_METER_VALUES_INTERVAL = 60000 // Ms - static readonly CHARGING_STATION_DEFAULT_RESET_TIME = 60000 // Ms - static readonly CHARGING_STATION_ATG_AVAILABILITY_TIME = 1000 // Ms - static readonly CHARGING_STATION_ATG_INITIALIZATION_TIME = 1000 // Ms - + static readonly DEFAULT_ATG_WAIT_TIME = 1000 // Ms static readonly DEFAULT_ATG_CONFIGURATION: AutomaticTransactionGeneratorConfiguration = Object.freeze({ enable: false, @@ -49,15 +64,10 @@ export class Constants { maxDelayBetweenTwoTransactions: 30, probabilityOfStart: 1, stopAfterHours: 0.25, - stopAbsoluteDuration: false, - stopOnConnectionFailure: true + stopAbsoluteDuration: false }) - // See https://semver.org/#is-there-a-suggested-regular-expression-regex-to-check-a-semver-string - 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 = 4096 + static readonly DEFAULT_CIRCULAR_BUFFER_CAPACITY = 386 static readonly DEFAULT_HASH_ALGORITHM = 'sha384' @@ -77,11 +87,13 @@ export class Constants { static readonly DEFAULT_UI_SERVER_HOST = 'localhost' static readonly DEFAULT_UI_SERVER_PORT = 8080 - static readonly UNKNOWN_COMMAND = 'unknown command' + static readonly UNKNOWN_OCPP_COMMAND = 'unknown OCPP command' as + | RequestCommand + | IncomingRequestCommand - static readonly MAX_RANDOM_INTEGER = 281474976710654 + static readonly MAX_RANDOM_INTEGER = 281474976710655 - static readonly STOP_CHARGING_STATIONS_TIMEOUT = 120000 // Ms + static readonly STOP_CHARGING_STATIONS_TIMEOUT = 60000 // Ms static readonly EMPTY_FROZEN_OBJECT = Object.freeze({}) static readonly EMPTY_FUNCTION = Object.freeze(() => {