45 [[nodiscard]]
static std::string
type() {
return "NodeData"; }
49 [[nodiscard]]
virtual std::string
getType()
const {
return type(); };
53 [[nodiscard]]
static std::vector<std::string>
parentTypes() {
return {}; }
68 [[nodiscard]]
const std::vector<std::string>&
events()
const {
return _events; }
76 [[nodiscard]]
virtual std::optional<double>
getValueAt(
size_t )
const {
return std::nullopt; }
82 LOG_CRITICAL(
"This function should never be called. Did you forget to override it?");
96 [[nodiscard]]
virtual std::optional<double>
getDynamicDataAt(
const std::string& )
const {
return std::nullopt; }
102 LOG_CRITICAL(
"This function should never be called. Did you forget to override it?");
107 [[nodiscard]]
virtual std::vector<std::pair<std::string, double>>
getDynamicData()
const {
return {}; }
115 virtual void guiTooltip([[maybe_unused]]
bool detailView, [[maybe_unused]]
bool firstOpen,
116 [[maybe_unused]]
const char* displayName, [[maybe_unused]]
const char*
id,
117 [[maybe_unused]]
int* rootWindow)
const {}
120 [[nodiscard]]
virtual bool hasTooltip()
const {
return false; }
The class is responsible for all time-related tasks.
Utility class for logging to console and file.
#define LOG_CRITICAL(...)
Critical Event, which causes the program to work entirely and throws an exception.
Definition Logger.hpp:75
The class is responsible for all time-related tasks.
Definition InsTime.hpp:668
Parent class for all data transmitted over Flow pins.
Definition NodeData.hpp:28
virtual std::vector< std::string > dynamicDataDescriptors() const
Returns a vector of data descriptors for the dynamic data.
Definition NodeData.hpp:92
virtual ~NodeData()=default
Destructor.
NodeData & operator=(NodeData &&)=default
Move assignment operator.
NodeData()=default
Default constructor.
NodeData(NodeData &&)=default
Move constructor.
virtual bool setDynamicDataAt(const std::string &, double)
Set the value for the descriptor.
Definition NodeData.hpp:100
virtual bool setValueAt(size_t, double)
Set the value at the index.
Definition NodeData.hpp:80
virtual std::vector< std::pair< std::string, double > > getDynamicData() const
Returns a vector of data descriptors and values for the dynamic data.
Definition NodeData.hpp:107
void addEvent(const std::string &text)
Adds the event to the list.
Definition NodeData.hpp:72
virtual std::string getType() const
Returns the type of the data class.
Definition NodeData.hpp:49
static std::vector< std::string > GetStaticDataDescriptors()
Returns a vector of data descriptors.
Definition NodeData.hpp:56
virtual bool hasTooltip() const
Return whether this data has a tooltip.
Definition NodeData.hpp:120
std::vector< std::string > _events
List of events.
Definition NodeData.hpp:127
NodeData & operator=(const NodeData &)=default
Copy assignment operator.
static std::string type()
Returns the type of the data class.
Definition NodeData.hpp:45
static std::vector< std::string > parentTypes()
Returns the parent types of the data class.
Definition NodeData.hpp:53
virtual std::optional< double > getValueAt(size_t) const
Get the value at the index.
Definition NodeData.hpp:76
virtual void guiTooltip(bool detailView, bool firstOpen, const char *displayName, const char *id, int *rootWindow) const
Shows a GUI tooltip to look into details of the observation.
Definition NodeData.hpp:115
double getValueAtOrNaN(size_t idx) const
Get the value at the index or NaN if not in the observation.
Definition NodeData.hpp:89
const std::vector< std::string > & events() const
Returns a vector of string events associated with this data.
Definition NodeData.hpp:68
static constexpr size_t GetStaticDescriptorCount()
Get the amount of descriptors.
Definition NodeData.hpp:59
virtual std::vector< std::string > staticDataDescriptors() const
Returns a vector of data descriptors.
Definition NodeData.hpp:62
InsTime insTime
Time at which the message was received.
Definition NodeData.hpp:123
virtual std::optional< double > getDynamicDataAt(const std::string &) const
Get the value for the descriptor.
Definition NodeData.hpp:96
virtual size_t staticDescriptorCount() const
Get the amount of descriptors.
Definition NodeData.hpp:65
NodeData(const NodeData &)=default
Copy constructor.