X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils%2FConstants.ts;h=421cac55cbc9d15ed435ab86ae65148577376625;hb=42486f2357b011f9244c6b29f4e05185138ce8d1;hp=5d1825b688fd43227499664a38b4141d9e312992;hpb=d2a64eb5f88adfd215e14a24e58f20144d3f85c1;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/Constants.ts b/src/utils/Constants.ts index 5d1825b6..421cac55 100644 --- a/src/utils/Constants.ts +++ b/src/utils/Constants.ts @@ -1,33 +1,56 @@ -import { ChargingProfileStatus, ConfigurationStatus, DefaultStatus, UnlockStatus } from '../types/ocpp/1.6/RequestResponses'; - -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_CHARGING_PROFILE_RESPONSE_ACCEPTED = Object.freeze({ status: ChargingProfileStatus.ACCEPTED }); - static readonly OCPP_CHARGING_PROFILE_RESPONSE_REJECTED = Object.freeze({ status: ChargingProfileStatus.REJECTED }); - static readonly OCPP_CHARGING_PROFILE_RESPONSE_NOT_SUPPORTED = Object.freeze({ status: ChargingProfileStatus.NOT_SUPPORTED }); - 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_PROTOCOL_JSON = 'json'; - static readonly OCPP_PROTOCOL_SOAP = 'soap'; - static readonly OCPP_VERSION_12 = '1.2'; - static readonly OCPP_VERSION_15 = '1.5'; - static readonly OCPP_VERSION_16 = '1.6'; - static readonly OCPP_VERSION_20 = '2.0'; - - static readonly OCPP_WEBSOCKET_TIMEOUT = 60000; // 60 sec +import { MeterValueMeasurand } from '../types'; + +export class Constants { + static readonly OCPP_DEFAULT_BOOT_NOTIFICATION_INTERVAL = 60000; // Ms 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 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_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 = 1024; + + 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_HEARTBEAT_INTERVAL = 60000; // Ms + static readonly DEFAULT_METER_VALUES_INTERVAL = 60000; // Ms + + static readonly SUPPORTED_MEASURANDS = Object.freeze([ + MeterValueMeasurand.STATE_OF_CHARGE, + MeterValueMeasurand.VOLTAGE, + MeterValueMeasurand.POWER_ACTIVE_IMPORT, + MeterValueMeasurand.CURRENT_IMPORT, + MeterValueMeasurand.ENERGY_ACTIVE_IMPORT_REGISTER, + ]); + + static readonly DEFAULT_FLUCTUATION_PERCENT = 5; + + 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_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 */ + }); - static readonly TRANSACTION_DEFAULT_IDTAG = '00000000'; + private constructor() { + // This is intentional + } }