X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;ds=sidebyside;f=src%2Futils%2FConstants.ts;h=b28674259454fce95bf2e37719a1c2e15ee4719d;hb=0638ddd26038a2a45707bc3d43460f09bd95701b;hp=79e39009b851b33233c727530f07838662407898;hpb=100680888f3b49453ddb4081988a480ee3030d07;p=e-mobility-charging-stations-simulator.git diff --git a/src/utils/Constants.ts b/src/utils/Constants.ts index 79e39009..b2867425 100644 --- a/src/utils/Constants.ts +++ b/src/utils/Constants.ts @@ -1,3 +1,4 @@ +import { MeterValueMeasurand } from '../types/ocpp/MeterValues'; import { AvailabilityStatus, ChargingProfileStatus, @@ -8,8 +9,6 @@ import { UnlockStatus, } from '../types/ocpp/Responses'; -import { MeterValueMeasurand } from '../types/ocpp/MeterValues'; - export default class Constants { static readonly OCPP_RESPONSE_EMPTY = Object.freeze({}); static readonly OCPP_RESPONSE_ACCEPTED = Object.freeze({ status: DefaultStatus.ACCEPTED }); @@ -91,18 +90,18 @@ export default class Constants { static readonly CHARGING_STATION_ATG_INITIALIZATION_TIME = 1000; // Ms static readonly CHARGING_STATION_ATG_DEFAULT_STOP_AFTER_HOURS = 0.25; // Hours - static readonly DEFAULT_IDTAG = '00000000'; + static readonly DEFAULT_CIRCULAR_BUFFER_CAPACITY = Number.MAX_SAFE_INTEGER; - static readonly ELEMENT_START_DELAY = 0; - 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_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, @@ -114,11 +113,14 @@ export default class Constants { static readonly DEFAULT_FLUCTUATION_PERCENT = 5; - static readonly PERFORMANCE_RECORDS_FILETYPE = 'Performance records'; static readonly DEFAULT_PERFORMANCE_RECORDS_FILENAME = 'performanceRecords.json'; - static readonly DEFAULT_PERFORMANCE_RECORDS_DB_NAME = 'charging-stations-simulator'; + static readonly DEFAULT_PERFORMANCE_RECORDS_DB_NAME = 'e-mobility-charging-stations-simulator'; static readonly PERFORMANCE_RECORDS_TABLE = 'performance_records'; static readonly DEFAULT_UI_WEBSOCKET_SERVER_HOST = 'localhost'; static readonly DEFAULT_UI_WEBSOCKET_SERVER_PORT = 8080; + + private constructor() { + // This is intentional + } }