X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils%2FConstants.ts;h=2223c5efc8fc118bb0723f95b1dcdd7edc60a5c3;hb=102117891a36935a7ea9df8514391e8bc7be7daf;hp=6d2a6bf05b269a5da031268819705d88eab584ec;hpb=6170d8cd4877c852985c90a38441da35ec026b85;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/Constants.ts b/src/utils/Constants.ts index 6d2a6bf0..2223c5ef 100644 --- a/src/utils/Constants.ts +++ b/src/utils/Constants.ts @@ -1,63 +1,96 @@ -import type { AutomaticTransactionGeneratorConfiguration } from '../types'; - +import { + type AutomaticTransactionGeneratorConfiguration, + type ChargingStationInfo, + CurrentType, + OCPPVersion, + VendorParametersKey +} from '../types/index.js' + +// eslint-disable-next-line @typescript-eslint/no-extraneous-class export class Constants { - 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 CHARGING_STATION_DEFAULT_RESET_TIME = 60000; // Ms - static readonly CHARGING_STATION_ATG_INITIALIZATION_TIME = 1000; // Ms - - static readonly DEFAULT_ATG_MIN_DURATION = 60; - static readonly DEFAULT_ATG_MAX_DURATION = 120; - static readonly DEFAULT_ATG_MIN_DELAY_BETWEEN_TWO_TRANSACTIONS = 15; - static readonly DEFAULT_ATG_MAX_DELAY_BETWEEN_TWO_TRANSACTIONS = 30; - static readonly DEFAULT_ATG_STOP_AFTER_HOURS = 0.25; // Hours + static readonly DEFAULT_STATION_INFO: Partial = Object.freeze({ + enableStatistics: false, + 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, + ocppVersion: OCPPVersion.VERSION_16, + ocppPersistentConfiguration: true, + stationInfoPersistentConfiguration: true, + automaticTransactionGeneratorPersistentConfiguration: true, + 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 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_CONFIGURATION: AutomaticTransactionGeneratorConfiguration = Object.freeze({ enable: false, - minDuration: Constants.DEFAULT_ATG_MIN_DURATION, - maxDuration: Constants.DEFAULT_ATG_MAX_DURATION, - minDelayBetweenTwoTransactions: Constants.DEFAULT_ATG_MIN_DELAY_BETWEEN_TWO_TRANSACTIONS, - maxDelayBetweenTwoTransactions: Constants.DEFAULT_ATG_MAX_DELAY_BETWEEN_TWO_TRANSACTIONS, + minDuration: 60, + maxDuration: 120, + minDelayBetweenTwoTransactions: 15, + maxDelayBetweenTwoTransactions: 30, probabilityOfStart: 1, - stopAfterHours: Constants.DEFAULT_ATG_STOP_AFTER_HOURS, - stopOnConnectionFailure: true, - }); + stopAfterHours: 0.25, + stopAbsoluteDuration: false, + stopOnConnectionFailure: true + }) // 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-]+)*))?$'; + '^(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_CIRCULAR_BUFFER_CAPACITY = 4096 - static readonly DEFAULT_HASH_ALGORITHM = 'sha384'; + static readonly DEFAULT_HASH_ALGORITHM = 'sha384' - static readonly DEFAULT_IDTAG = '00000000'; + static readonly DEFAULT_IDTAG = '00000000' - static readonly DEFAULT_CONNECTION_TIMEOUT = 30; + static readonly DEFAULT_CONNECTION_TIMEOUT = 30 - static readonly DEFAULT_LOG_STATISTICS_INTERVAL = 60; // Seconds + static readonly DEFAULT_LOG_STATISTICS_INTERVAL = 60 // Seconds - static readonly DEFAULT_FLUCTUATION_PERCENT = 5; + 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_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 DEFAULT_UI_SERVER_HOST = 'localhost' + static readonly DEFAULT_UI_SERVER_PORT = 8080 - static readonly UNKNOWN_COMMAND = 'unknown command'; + static readonly UNKNOWN_COMMAND = 'unknown command' - static readonly MAX_RANDOM_INTEGER = 281474976710654; + static readonly MAX_RANDOM_INTEGER = 281474976710654 - static readonly EMPTY_FREEZED_OBJECT = Object.freeze({}); + static readonly STOP_CHARGING_STATIONS_TIMEOUT = 120000 // 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() { + private constructor () { // This is intentional } }