version 0.4.1
controllogger.hh
Go to the documentation of this file.
1// SPDX-FileCopyrightText: 2021-2025 The Ikarus Developers mueller@ibb.uni-stuttgart.de
2// SPDX-License-Identifier: LGPL-3.0-or-later
3
9#pragma once
10#include <chrono>
11
14
15namespace Ikarus {
22class ControlLogger : public Listener
23{
24public:
25 template <typename BC>
27 this->subscribe(bc, [&](ControlMessages message) { this->updateImpl(message); });
28 this->subscribe(bc, [&](ControlMessages message, const BC::State& state) { this->updateImpl(message, state); });
29 this->subscribe(bc, [&](ControlMessages message, const std::string& val) { this->updateImpl(message, val); });
30 this->subscribe(
31 bc, [&](ControlMessages message, int val1, const std::string& val2) { this->updateImpl(message, val1, val2); });
32 this->subscribe(bc, [&](ControlMessages message, int val1, double val2) { this->updateImpl(message, val1, val2); });
33 return *this;
34 }
35
48 void updateImpl(ControlMessages message, const std::string& val);
56 void updateImpl(ControlMessages message, int val1, const std::string& val2);
64 void updateImpl(ControlMessages message, int val1, double val2);
65
72 void updateImpl(ControlMessages message, const Concepts::ControlRoutineState auto& state) { updateImpl(message); }
73
74private:
75 using TimePoint = std::chrono::time_point<std::chrono::high_resolution_clock>;
76 TimePoint start_{};
77 TimePoint stop_{};
78 std::chrono::milliseconds duration_{};
79};
80} // namespace Ikarus
Enums for observer messages.
Implementation of the observer design pattern with broadcasters.
ControlMessages
Enum class defining control-routine-related messages.
Definition: broadcastermessages.hh:17
Definition: assemblermanipulatorbuildingblocks.hh:22
ControlLogger class for logging control messages.
Definition: controllogger.hh:23
ControlLogger & subscribeTo(BC &bc)
Definition: controllogger.hh:26
void updateImpl(ControlMessages message, int val1, const std::string &val2)
Implementation of the update method for logging control messages with an integer and a string value.
void updateImpl(ControlMessages message, int val1, double val2)
Implementation of the update method for logging control messages with an integer and a double value.
void updateImpl(ControlMessages message, const std::string &val)
Implementation of the update method for logging control messages with string values.
void updateImpl(ControlMessages message, const Concepts::ControlRoutineState auto &state)
Implementation of the update method for logging control messages with a control routine state.
Definition: controllogger.hh:72
void updateImpl(ControlMessages message)
Implementation of the update method for control message logging.
Definition: listener.hh:27
auto subscribe(Broadcaster &broadcaster, F &&f)
Function to subscribe to a broadcaster with a given function (either a lambda, std::function or funct...
Definition: listener.hh:43
Definition: utils/concepts.hh:634