Tomáš Pecka | 991e4d5 | 2021-01-11 10:03:14 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2021 CESNET, https://photonics.cesnet.cz/ |
| 3 | * |
| 4 | * Written by Tomáš Pecka <tomas.pecka@fit.cvut.cz> |
| 5 | * |
| 6 | */ |
| 7 | |
| 8 | #pragma once |
| 9 | |
| 10 | #include <map> |
| 11 | #include <sdbus-c++/sdbus-c++.h> |
| 12 | #include <string> |
| 13 | #include <variant> |
| 14 | #include "utils/log-fwd.h" |
| 15 | |
| 16 | namespace velia::system { |
| 17 | |
| 18 | class RAUC { |
| 19 | public: |
| 20 | using SlotProperties = std::map<std::string, std::variant<std::string, uint64_t, uint32_t>>; |
| 21 | |
Tomáš Pecka | d51d4cb | 2021-02-03 14:15:49 +0100 | [diff] [blame] | 22 | RAUC(sdbus::IConnection& signalConnection, sdbus::IConnection& methodConnection, std::function<void(const std::string&)> operCb, std::function<void(int32_t, const std::string&)> progressCb, std::function<void(int32_t, const std::string&)> completedCb); |
Tomáš Pecka | 991e4d5 | 2021-01-11 10:03:14 +0100 | [diff] [blame] | 23 | std::string primarySlot() const; |
| 24 | std::map<std::string, SlotProperties> slotStatus() const; |
Tomáš Pecka | 9cc0094 | 2021-01-14 22:45:10 +0100 | [diff] [blame] | 25 | void install(const std::string& source); |
Tomáš Pecka | c764b76 | 2021-01-23 21:46:21 +0100 | [diff] [blame] | 26 | std::string operation() const; |
| 27 | std::string lastError() const; |
Tomáš Pecka | 991e4d5 | 2021-01-11 10:03:14 +0100 | [diff] [blame] | 28 | |
| 29 | private: |
Tomáš Pecka | d51d4cb | 2021-02-03 14:15:49 +0100 | [diff] [blame] | 30 | /* We have two objects on two connections here intentionally. On a D-Bus signal PropertyChanged we invoke a callback that does something |
| 31 | * with Sysrepo's operational datastore in velia::system::Firmware class. While executing this code, sdbus-c++'s mutex (sdbus-c++ src/SdBus.h, sdbusMutex_) is locked. |
| 32 | * However, this operational datastore change invokes a code, that (again) calls a D-Bus method via sdbus-c++ on the same sdbus::IProxy object. |
| 33 | * Calling method on this object would require to acquire the same mutex that is already held, which results in deadlock. |
| 34 | * Therefore, we maintain two separate connections to the same D-Bus object. The first one is used for handling signal callbacks and |
| 35 | * the second is only for calling the D-Bus methods. |
| 36 | */ |
| 37 | std::shared_ptr<sdbus::IProxy> m_dbusObjectProxySignals, m_dbusObjectProxyMethods; |
Tomáš Pecka | 9cc0094 | 2021-01-14 22:45:10 +0100 | [diff] [blame] | 38 | std::function<void(const std::string&)> m_operCb; |
| 39 | std::function<void(int32_t, const std::string&)> m_progressCb; |
| 40 | std::function<void(int32_t, const std::string&)> m_completedCb; |
Tomáš Pecka | 991e4d5 | 2021-01-11 10:03:14 +0100 | [diff] [blame] | 41 | velia::Log m_log; |
| 42 | }; |
| 43 | |
| 44 | } |