Krzysztof Grobelny | 64b75a5 | 2020-09-18 10:17:16 +0200 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Wludzik, Jozef | e236279 | 2020-10-27 17:23:55 +0100 | [diff] [blame] | 3 | #include "persistent_json_storage.hpp" |
Wludzik, Jozef | 2f9f9b8 | 2020-10-13 09:07:45 +0200 | [diff] [blame] | 4 | #include "report_factory.hpp" |
Krzysztof Grobelny | 64b75a5 | 2020-09-18 10:17:16 +0200 | [diff] [blame] | 5 | #include "report_manager.hpp" |
Krzysztof Grobelny | 6ccfcbf | 2020-11-04 09:31:36 +0100 | [diff] [blame] | 6 | #include "sensor_cache.hpp" |
Krzysztof Grobelny | 64b75a5 | 2020-09-18 10:17:16 +0200 | [diff] [blame] | 7 | |
| 8 | #include <sdbusplus/asio/connection.hpp> |
| 9 | #include <sdbusplus/asio/object_server.hpp> |
| 10 | |
| 11 | #include <memory> |
| 12 | |
| 13 | class Telemetry |
| 14 | { |
| 15 | public: |
| 16 | Telemetry(std::shared_ptr<sdbusplus::asio::connection> bus) : |
| 17 | objServer(std::make_shared<sdbusplus::asio::object_server>(bus)), |
Wludzik, Jozef | e236279 | 2020-10-27 17:23:55 +0100 | [diff] [blame] | 18 | reportManager(std::make_unique<ReportFactory>(bus, objServer), |
| 19 | std::make_unique<PersistentJsonStorage>( |
| 20 | interfaces::JsonStorage::DirectoryPath( |
| 21 | "/var/lib/telemetry/Reports")), |
| 22 | objServer) |
Krzysztof Grobelny | 64b75a5 | 2020-09-18 10:17:16 +0200 | [diff] [blame] | 23 | {} |
| 24 | |
| 25 | private: |
| 26 | std::shared_ptr<sdbusplus::asio::object_server> objServer; |
| 27 | ReportManager reportManager; |
| 28 | }; |