Improve OCPP error handling, fix performance storage default file path
authorJérôme Benoit <jerome.benoit@sap.com>
Thu, 2 Sep 2021 19:54:32 +0000 (21:54 +0200)
committerJérôme Benoit <jerome.benoit@sap.com>
Thu, 2 Sep 2021 19:54:32 +0000 (21:54 +0200)
commita6b3c6c313f1c0314a1445ed630cac85edf55b2c
tree5a31f0bbb106f0edc9aab8e9e54cd92dec15d554
parentde96acad9df699ff34f25e32ba616ef5c09ff124
Improve OCPP error handling, fix performance storage default file path

Signed-off-by: Jérôme Benoit <jerome.benoit@sap.com>
28 files changed:
.gitignore
README.md
package-lock.json
package.json
rollup.config.js
src/charging-station/AutomaticTransactionGenerator.ts
src/charging-station/Bootstrap.ts
src/charging-station/ChargingStation.ts
src/charging-station/ocpp/1.6/OCPP16IncomingRequestService.ts
src/charging-station/ocpp/1.6/OCPP16RequestService.ts
src/charging-station/ocpp/1.6/OCPP16ServiceUtils.ts
src/charging-station/ocpp/OCPPError.ts
src/charging-station/ocpp/OCPPRequestService.ts
src/performance/PerformanceStatistics.ts [moved from src/utils/PerformanceStatistics.ts with 97% similarity]
src/performance/storage/JSONFileStorage.ts [moved from src/utils/performance-storage/JSONFileStorage.ts with 88% similarity]
src/performance/storage/MikroORMStorage.ts [new file with mode: 0644]
src/performance/storage/MongoDBStorage.ts [moved from src/utils/performance-storage/MongoDBStorage.ts with 93% similarity]
src/performance/storage/Storage.ts [moved from src/utils/performance-storage/Storage.ts with 61% similarity]
src/performance/storage/StorageFactory.ts [moved from src/utils/performance-storage/StorageFactory.ts with 78% similarity]
src/start.ts
src/types/Statistics.ts
src/types/Storage.ts
src/types/orm/entities/PerformanceData.ts [new file with mode: 0644]
src/types/orm/entities/PerformanceRecord.ts [new file with mode: 0644]
src/types/orm/entities/PerformanceRecords.ts [deleted file]
src/utils/Configuration.ts
src/utils/Constants.ts
src/utils/performance-storage/TypeORMStorage.ts [deleted file]