X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils%2FConstants.ts;h=3746c4fdd91e8277ebc5167c563cbd3cf88fb673;hb=16c46962f43a692c996b1c89a94dc572fea52d63;hp=a7e274a7770c6cb8f466b79e7b9d91d8c9e559b9;hpb=291cb255bec471875566d94ea674b7f476a2b7a1;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/Constants.ts b/src/utils/Constants.ts index a7e274a7..3746c4fd 100644 --- a/src/utils/Constants.ts +++ b/src/utils/Constants.ts @@ -1,41 +1,108 @@ -import { AvailabilityStatus, ChargingProfileStatus, ClearChargingProfileStatus, ConfigurationStatus, DefaultStatus, UnlockStatus } from '../types/ocpp/1.6/Responses'; - -export default class Constants { - static readonly ENTITY_CHARGING_STATION = 'ChargingStation'; - static readonly ENTITY_AUTOMATIC_TRANSACTION_GENERATOR = 'AutomaticTransactionGenerator'; - - static readonly OCPP_RESPONSE_ACCEPTED = Object.freeze({ status: DefaultStatus.ACCEPTED }); - static readonly OCPP_RESPONSE_REJECTED = Object.freeze({ status: DefaultStatus.REJECTED }); - static readonly OCPP_CONFIGURATION_RESPONSE_ACCEPTED = Object.freeze({ status: ConfigurationStatus.ACCEPTED }); - static readonly OCPP_CONFIGURATION_RESPONSE_REJECTED = Object.freeze({ status: ConfigurationStatus.REJECTED }); - static readonly OCPP_CONFIGURATION_RESPONSE_REBOOT_REQUIRED = Object.freeze({ status: ConfigurationStatus.REBOOT_REQUIRED }); - static readonly OCPP_CONFIGURATION_RESPONSE_NOT_SUPPORTED = Object.freeze({ status: ConfigurationStatus.NOT_SUPPORTED }); - static readonly OCPP_SET_CHARGING_PROFILE_RESPONSE_ACCEPTED = Object.freeze({ status: ChargingProfileStatus.ACCEPTED }); - static readonly OCPP_SET_CHARGING_PROFILE_RESPONSE_REJECTED = Object.freeze({ status: ChargingProfileStatus.REJECTED }); - static readonly OCPP_SET_CHARGING_PROFILE_RESPONSE_NOT_SUPPORTED = Object.freeze({ status: ChargingProfileStatus.NOT_SUPPORTED }); - static readonly OCPP_CLEAR_CHARGING_PROFILE_RESPONSE_ACCEPTED = Object.freeze({ status: ClearChargingProfileStatus.ACCEPTED }); - static readonly OCPP_CLEAR_CHARGING_PROFILE_RESPONSE_UNKNOWN = Object.freeze({ status: ClearChargingProfileStatus.UNKNOWN }); - static readonly OCPP_RESPONSE_UNLOCKED = Object.freeze({ status: UnlockStatus.UNLOCKED }); - static readonly OCPP_RESPONSE_UNLOCK_FAILED = Object.freeze({ status: UnlockStatus.UNLOCK_FAILED }); - static readonly OCPP_RESPONSE_UNLOCK_NOT_SUPPORTED = Object.freeze({ status: UnlockStatus.NOT_SUPPORTED }); - static readonly OCPP_AVAILABILITY_RESPONSE_ACCEPTED = Object.freeze({ status: AvailabilityStatus.ACCEPTED }); - static readonly OCPP_AVAILABILITY_RESPONSE_REJECTED = Object.freeze({ status: AvailabilityStatus.REJECTED }); - static readonly OCPP_AVAILABILITY_RESPONSE_SCHEDULED = Object.freeze({ status: AvailabilityStatus.SCHEDULED }); - - static readonly OCPP_DEFAULT_BOOT_NOTIFICATION_INTERVAL = 60000; // Ms - static readonly OCPP_ERROR_TIMEOUT = 60000; // 60 sec - - static readonly CHARGING_STATION_DEFAULT_RESET_TIME = 60000; // Ms - static readonly CHARGING_STATION_ATG_WAIT_TIME = 2000; // Ms - static readonly CHARGING_STATION_ATG_INITIALIZATION_TIME = 1000; // Ms - - static readonly TRANSACTION_DEFAULT_IDTAG = '00000000'; - - static readonly WORKER_START_DELAY = 500; - static readonly WORKER_POOL_MAX_INACTIVE_TIME = 60000; - static readonly DEFAULT_WORKER_POOL_MIN_SIZE = 4; - static readonly DEFAULT_WORKER_POOL_MAX_SIZE = 16; - static readonly DEFAULT_CHARGING_STATIONS_PER_WORKER = 1; - - static readonly DEFAULT_CONNECTION_TIMEOUT = 30; +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, + phaseLineToLineVoltageMeterValues: false, + customValueLimitationMeterValues: true, + ocppStrictCompliance: true, + outOfOrderEndMeterValues: false, + beginEndMeterValues: false, + meteringPerTransaction: true, + 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, + stopTransactionsOnStopped: true + }) + + static readonly DEFAULT_BOOT_NOTIFICATION_INTERVAL = 60000 // Ms + static readonly DEFAULT_HEARTBEAT_INTERVAL = 60000 // Ms + static readonly DEFAULT_METER_VALUES_INTERVAL = 60000 // Ms + + static readonly DEFAULT_ATG_WAIT_TIME = 1000 // Ms + static readonly DEFAULT_ATG_CONFIGURATION: AutomaticTransactionGeneratorConfiguration = + Object.freeze({ + enable: false, + minDuration: 60, + maxDuration: 120, + minDelayBetweenTwoTransactions: 15, + maxDelayBetweenTwoTransactions: 30, + probabilityOfStart: 1, + stopAfterHours: 0.25, + stopAbsoluteDuration: false + }) + + static readonly DEFAULT_CIRCULAR_BUFFER_CAPACITY = 4096 + + static readonly DEFAULT_HASH_ALGORITHM = 'sha384' + + static readonly DEFAULT_IDTAG = '00000000' + + static readonly DEFAULT_CONNECTION_TIMEOUT = 30 + + static readonly DEFAULT_LOG_STATISTICS_INTERVAL = 60 // Seconds + + static readonly DEFAULT_FLUCTUATION_PERCENT = 5 + + static readonly DEFAULT_PERFORMANCE_DIRECTORY = 'performance' + static readonly DEFAULT_PERFORMANCE_RECORDS_FILENAME = 'performanceRecords.json' + static readonly DEFAULT_PERFORMANCE_RECORDS_DB_NAME = 'e-mobility-charging-stations-simulator' + static readonly PERFORMANCE_RECORDS_TABLE = 'performance_records' + + static readonly DEFAULT_UI_SERVER_HOST = 'localhost' + static readonly DEFAULT_UI_SERVER_PORT = 8080 + + static readonly UNKNOWN_OCPP_COMMAND = 'unknown OCPP command' as + | RequestCommand + | IncomingRequestCommand + + static readonly MAX_RANDOM_INTEGER = 281474976710655 + + static readonly STOP_CHARGING_STATIONS_TIMEOUT = 60000 // Ms + + static readonly EMPTY_FROZEN_OBJECT = Object.freeze({}) + static readonly EMPTY_FUNCTION = Object.freeze(() => { + /* This is intentional */ + }) + + static readonly DEFAULT_MESSAGE_BUFFER_FLUSH_INTERVAL = 60000 // Ms + + private constructor () { + // This is intentional + } }