0.3.0
Loading...
Searching...
No Matches
NodeData.hpp
Go to the documentation of this file.
1// This file is part of INSTINCT, the INS Toolkit for Integrated
2// Navigation Concepts and Training by the Institute of Navigation of
3// the University of Stuttgart, Germany.
4//
5// This Source Code Form is subject to the terms of the Mozilla Public
6// License, v. 2.0. If a copy of the MPL was not distributed with this
7// file, You can obtain one at https://mozilla.org/MPL/2.0/.
8
13
14#pragma once
15
16#include <string>
17#include <vector>
18#include <optional>
19
21#include "util/Assert.h"
22#include "util/Logger.hpp"
23
24namespace NAV
25{
28{
29 public:
31 NodeData() = default;
33 virtual ~NodeData() = default;
35 NodeData(const NodeData&) = default;
37 NodeData(NodeData&&) = default;
39 NodeData& operator=(const NodeData&) = default;
42
45 [[nodiscard]] static std::string type() { return "NodeData"; }
46
49 [[nodiscard]] virtual std::string getType() const { return type(); };
50
53 [[nodiscard]] static std::vector<std::string> parentTypes() { return {}; }
54
56 [[nodiscard]] static std::vector<std::string> GetStaticDataDescriptors() { return {}; }
57
59 [[nodiscard]] static constexpr size_t GetStaticDescriptorCount() { return 0; }
60
62 [[nodiscard]] virtual std::vector<std::string> staticDataDescriptors() const { return GetStaticDataDescriptors(); }
63
65 [[nodiscard]] virtual size_t staticDescriptorCount() const { return GetStaticDescriptorCount(); }
66
68 [[nodiscard]] const std::vector<std::string>& events() const { return _events; }
69
72 void addEvent(const std::string& text) { _events.push_back(text); }
73
76 [[nodiscard]] virtual std::optional<double> getValueAt(size_t /* idx */) const { return std::nullopt; }
77
80 [[nodiscard]] virtual bool setValueAt(size_t /* idx */, double /* value */)
81 {
82 LOG_CRITICAL("This function should never be called. Did you forget to override it?");
83 return false;
84 }
85
89 [[nodiscard]] double getValueAtOrNaN(size_t idx) const { return getValueAt(idx).value_or(std::nan("")); }
90
92 [[nodiscard]] virtual std::vector<std::string> dynamicDataDescriptors() const { return {}; }
93
96 [[nodiscard]] virtual std::optional<double> getDynamicDataAt(const std::string& /* descriptor */) const { return std::nullopt; }
97
100 [[nodiscard]] virtual bool setDynamicDataAt(const std::string& /* descriptor */, double /* value */)
101 {
102 LOG_CRITICAL("This function should never be called. Did you forget to override it?");
103 return false;
104 }
105
107 [[nodiscard]] virtual std::vector<std::pair<std::string, double>> getDynamicData() const { return {}; }
108
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 {}
118
120 [[nodiscard]] virtual bool hasTooltip() const { return false; }
121
124
125 protected:
127 std::vector<std::string> _events;
128};
129
130} // namespace NAV
Assertion helpers.
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.