X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futils%2FConstants.ts;h=93c5bd9f412cf7b1e82b35aa543ce1bcf3144ee0;hb=c2a11566c6855de3b1f48f701be2c8779c0093a6;hp=df1c879b7376ef41928c1e5921f077ddb0875adc;hpb=1fe0632adfa4067470497e2de02249fc84a4e218;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/Constants.ts b/src/utils/Constants.ts index df1c879b..93c5bd9f 100644 --- a/src/utils/Constants.ts +++ b/src/utils/Constants.ts @@ -8,7 +8,6 @@ export class Constants { static readonly CHARGING_STATION_DEFAULT_RESET_TIME = 60000; // Ms static readonly CHARGING_STATION_ATG_INITIALIZATION_TIME = 1000; // Ms - static readonly DEFAULT_ATG_STOP_AFTER_HOURS = 0.25; // Hours static readonly DEFAULT_ATG_CONFIGURATION: AutomaticTransactionGeneratorConfiguration = Object.freeze({ enable: false, @@ -17,7 +16,7 @@ export class Constants { minDelayBetweenTwoTransactions: 15, maxDelayBetweenTwoTransactions: 30, probabilityOfStart: 1, - stopAfterHours: Constants.DEFAULT_ATG_STOP_AFTER_HOURS, + stopAfterHours: 0.25, stopOnConnectionFailure: true, }); @@ -25,7 +24,7 @@ export class Constants { 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_CIRCULAR_BUFFER_CAPACITY = 4096; static readonly DEFAULT_HASH_ALGORITHM = 'sha384'; @@ -37,6 +36,7 @@ export class Constants { 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'; @@ -48,11 +48,15 @@ export class Constants { static readonly MAX_RANDOM_INTEGER = 281474976710654; - static readonly EMPTY_FREEZED_OBJECT = Object.freeze({}); + static readonly STOP_SIMULATOR_TIMEOUT = 120000; // Ms + + static readonly EMPTY_FROZEN_OBJECT = Object.freeze({}); static readonly EMPTY_FUNCTION = Object.freeze(() => { /* This is intentional */ }); + static readonly DEFAULT_RESERVATION_EXPIRATION_INTERVAL = 60000; // Ms + private constructor() { // This is intentional }