UI Server: rename defaults constants
[e-mobility-charging-stations-simulator.git] / src / utils / Constants.ts
index 968de2d031ab1e20fbe1e5093291a21a6328905b..bfb4fbf38aaf34341dcbb03f6549126ae4e284a7 100644 (file)
@@ -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 });
@@ -17,52 +16,68 @@ export default class Constants {
   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_TRIGGER_MESSAGE_RESPONSE_ACCEPTED = Object.freeze({
     status: TriggerMessageStatus.ACCEPTED,
   });
+
   static readonly OCPP_TRIGGER_MESSAGE_RESPONSE_REJECTED = Object.freeze({
     status: TriggerMessageStatus.REJECTED,
   });
+
   static readonly OCPP_TRIGGER_MESSAGE_RESPONSE_NOT_IMPLEMENTED = Object.freeze({
     status: TriggerMessageStatus.NOT_IMPLEMENTED,
   });
@@ -75,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 DEFAULT_HASH_ALGORITHM = 'sha384';
 
-  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_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,
@@ -98,11 +113,16 @@ 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;
+  static readonly DEFAULT_UI_SERVER_HOST = 'localhost';
+  static readonly DEFAULT_UI_SERVER_PORT = 8080;
+
+  static readonly UNKNOWN_COMMAND = 'unknown command';
+
+  private constructor() {
+    // This is intentional
+  }
 }