0.3.0
Loading...
Searching...
No Matches
Combiner.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// <boost/asio.hpp> needs to be included before <winsock.h> (even though not used in this file)
17// https://stackoverflow.com/questions/9750344/boostasio-winsock-and-winsock-2-compatibility-issue
18#ifdef _WIN32
19 // Set the proper SDK version before including boost/Asio
20 #include <SDKDDKVer.h>
21 // Note boost/ASIO includes Windows.h.
22 #include <boost/asio.hpp>
23#endif //_WIN32
24
25#include <limits>
26#include <memory>
27#include <unordered_set>
28#include <map>
29
31#include "NodeData/NodeData.hpp"
34
36
49
53
54namespace NAV
55{
57class Combiner : public Node, public CommonLog
58{
59 public:
63 ~Combiner() override;
65 Combiner(const Combiner&) = delete;
67 Combiner(Combiner&&) = delete;
69 Combiner& operator=(const Combiner&) = delete;
72
74 [[nodiscard]] static std::string typeStatic();
75
77 [[nodiscard]] std::string type() const override;
78
80 [[nodiscard]] static std::string category();
81
84 void guiConfig() override;
85
87 [[nodiscard]] json save() const override;
88
91 void restore(const json& j) override;
92
93 private:
94 constexpr static size_t OUTPUT_PORT_INDEX_DYN_DATA = 0;
95
111
114 {
116 struct Term
117 {
118 double factor = 1.0;
119 size_t pinIndex = 0;
120 std::variant<size_t, std::string> dataSelection = size_t(0);
121
124
128 [[nodiscard]] std::string description(const Combiner* node, const std::vector<std::string>& descriptors) const
129 {
130 if (std::holds_alternative<size_t>(dataSelection) && std::get<size_t>(dataSelection) < descriptors.size())
131 {
132 return fmt::format("{} {} ({})", factor == 1.0 ? "+" : (factor == -1.0 ? "-" : fmt::format("{:.2f}", factor)),
133 descriptors.at(std::get<size_t>(dataSelection)), node->inputPins.at(pinIndex).name);
134 }
135 if (std::holds_alternative<std::string>(dataSelection))
136 {
137 return fmt::format("{} {} ({})", factor == 1.0 ? "+" : (factor == -1.0 ? "-" : fmt::format("{:.2f}", factor)),
138 std::get<std::string>(dataSelection), node->inputPins.at(pinIndex).name);
139 }
140 return fmt::format("N/A ({})", node->inputPins.at(pinIndex).name);
141 }
142 };
143
145 std::vector<Term> terms{ Term{ .factor = +1.0, .pinIndex = 0 },
146 Term{ .factor = -1.0, .pinIndex = 1 } };
147
150 [[nodiscard]] std::string description(const Combiner* node) const
151 {
152 std::string desc;
153 for (const auto& term : terms)
154 {
155 auto descriptors = node->getDataDescriptors(term.pinIndex);
156 auto termDescription = term.description(node, descriptors);
157
158 if (!desc.empty())
159 {
160 if (termDescription.starts_with("+ ") || termDescription.starts_with("- "))
161 {
162 desc += " ";
163 }
164 else
165 {
166 desc += " + ";
167 }
168 }
169 desc += termDescription;
170 }
171
172 return desc;
173 }
174 };
175
177 std::vector<Combination> _combinations{ Combination() };
178
180 struct PinData
181 {
185 double minTimeStep = std::numeric_limits<double>::infinity();
187 std::vector<std::string> dynDataDescriptors;
188 };
189
191 std::vector<PinData> _pinData;
192
194 size_t _refPinIdx = 0;
195
198
201
204
207 {
208 size_t combIndex = 0;
209 std::unordered_set<size_t> termIndices;
210 double result = 0.0;
211 std::vector<std::pair<std::string, std::shared_ptr<const NodeData>>> rawData;
212 };
213
215 std::map<InsTime, std::vector<SendRequest>> _sendRequests;
216
219 static void pinAddCallback(Node* node);
223 static void pinDeleteCallback(Node* node, size_t pinIdx);
224
228
230 bool initialize() override;
231
233 void deinitialize() override;
234
237 [[nodiscard]] std::vector<std::string> getDataDescriptors(size_t pinIndex) const;
238
242 void receiveData(InputPin::NodeDataQueue& queue, size_t pinIdx);
243
247 friend void to_json(json& j, const Combination& data);
251 friend void from_json(const json& j, Combination& data);
255 friend void to_json(json& j, const Combination::Term& data);
259 friend void from_json(const json& j, Combination::Term& data);
260};
261
262} // namespace NAV
Common logging variables like time into run and local positions.
Inputs pins which can be added dynamically.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
GNSS measurement combinations.
GNSS Observation messages.
Data storage class for simulated IMU observations.
Data storage class for one VectorNavImu observation.
Parent Class for all IMU Observations.
Loosely-coupled Kalman Filter INS/GNSS errors.
Tightly-coupled Kalman Filter INS/GNSS errors.
The class is responsible for all time-related tasks.
Data storage class for one KVH Imu observation.
Abstract NodeData Class.
Node Class.
Polynomial curve fitting.
Position, Velocity and Attitude Storage Class.
RTKLIB Pos Observation Class.
A buffer which is overwriting itself from the start when full.
SPP Algorithm output.
Unordered map wrapper.
Binary Outputs from VectorNav Sensors.
Calculates differences between signals.
Definition Combiner.hpp:58
bool initialize() override
Initialize the node.
static constexpr size_t OUTPUT_PORT_INDEX_DYN_DATA
Flow (DynamicData)
Definition Combiner.hpp:94
Combiner & operator=(Combiner &&)=delete
Move assignment operator.
static void pinAddCallback(Node *node)
Function to call to add a new pin.
friend void from_json(const json &j, Combination::Term &data)
Read info from a json object.
gui::widgets::DynamicInputPins _dynamicInputPins
Dynamic input pins.
Definition Combiner.hpp:227
friend void to_json(json &j, const Combination::Term &data)
Write info to a json object.
std::vector< std::string > getDataDescriptors(size_t pinIndex) const
Returns a list of descriptors for the pin.
double _maxTimeDiffMultiplierFrequency
Multiply frequency with this to get maximum allowed time difference to interpolate to.
Definition Combiner.hpp:200
Combiner(const Combiner &)=delete
Copy constructor.
static void pinDeleteCallback(Node *node, size_t pinIdx)
Function to call to delete a pin.
static std::vector< std::string > _dataIdentifier
Possible data identifiers to connect.
Definition Combiner.hpp:97
void guiConfig() override
ImGui config window which is shown on double click.
void deinitialize() override
Deinitialize the node.
bool _outputMissingAsNaN
Output missing combinations with NaN instead of removing.
Definition Combiner.hpp:197
void receiveData(InputPin::NodeDataQueue &queue, size_t pinIdx)
Receive Data Function.
static std::string typeStatic()
String representation of the Class Type.
double _maxTimeStepMultiplierFrequency
Multiply frequency with this to get maximum allowed time step of incoming observations.
Definition Combiner.hpp:203
bool _noOutputIfTimeStepLarge
Wether to not output a term if the time step to interpolate in between is large.
Definition Combiner.hpp:202
friend void from_json(const json &j, Combination &data)
Read info from a json object.
size_t _refPinIdx
Reference pin.
Definition Combiner.hpp:194
Combiner(Combiner &&)=delete
Move constructor.
static std::string category()
String representation of the Class Category.
std::string type() const override
String representation of the Class Type.
std::map< InsTime, std::vector< SendRequest > > _sendRequests
Chronological list of send request.
Definition Combiner.hpp:215
std::vector< PinData > _pinData
Data per pin.
Definition Combiner.hpp:191
Combiner()
Default constructor.
void restore(const json &j) override
Restores the node from a json object.
bool _noOutputIfTimeDiffLarge
Wether to not output a term if the interpolation time point is too far away.
Definition Combiner.hpp:199
friend void to_json(json &j, const Combination &data)
Write info to a json object.
~Combiner() override
Destructor.
Combiner & operator=(const Combiner &)=delete
Copy assignment operator.
json save() const override
Saves the node into a json object.
std::vector< Combination > _combinations
Combinations to calculate.
Definition Combiner.hpp:177
Common logging variables like time into run and local positions.
Definition CommonLog.hpp:31
static std::string type()
Returns the type of the data class.
Definition GnssCombination.hpp:32
static std::string type()
Returns the type of the data class.
Definition GnssObs.hpp:150
static std::string type()
Returns the type of the data class.
Definition ImuObsSimulated.hpp:31
static std::string type()
Returns the type of the data class.
Definition ImuObsWDelta.hpp:32
static std::string type()
Returns the type of the data class.
Definition ImuObs.hpp:34
static std::string type()
Returns the type of the data class.
Definition InsGnssLCKFSolution.hpp:30
static std::string type()
Returns the type of the data class.
Definition InsGnssTCKFSolution.hpp:26
The class is responsible for all time-related tasks.
Definition InsTime.hpp:668
static std::string type()
Returns the type of the data class.
Definition KvhObs.hpp:39
Abstract parent class for all nodes.
Definition Node.hpp:86
std::vector< InputPin > inputPins
List of input pins.
Definition Node.hpp:380
Polynomial Curve Fitting.
Definition PolynomialRegressor.hpp:39
static std::string type()
Returns the type of the data class.
Definition PosVelAtt.hpp:29
static std::string type()
Returns the type of the data class.
Definition PosVel.hpp:27
static std::string type()
Returns the type of the data class.
Definition Pos.hpp:34
static std::string type()
Returns the type of the data class.
Definition RtklibPosObs.hpp:131
A buffer which is overwriting itself from the start when full.
Definition ScrollingBuffer.hpp:29
static std::string type()
Returns the type of the data class.
Definition SppSolution.hpp:40
static std::string type()
Returns the type of the data class.
Definition VectorNavBinaryOutput.hpp:41
Term of a combination equation.
Definition Combiner.hpp:117
double factor
Factor to multiply the term with.
Definition Combiner.hpp:118
ScrollingBuffer< std::shared_ptr< const NodeData > > rawData
Last raw data to add if we send.
Definition Combiner.hpp:123
std::string description(const Combiner *node, const std::vector< std::string > &descriptors) const
Get a string description of the combination.
Definition Combiner.hpp:128
size_t pinIndex
Pin Index.
Definition Combiner.hpp:119
std::variant< size_t, std::string > dataSelection
Data Index or Data identifier.
Definition Combiner.hpp:120
PolynomialRegressor< double > polyReg
Polynomial Regressor to interpolate data.
Definition Combiner.hpp:122
Combination of data.
Definition Combiner.hpp:114
std::vector< Term > terms
List of terms making up the combination.
Definition Combiner.hpp:145
std::string description(const Combiner *node) const
Get a string description of the combination.
Definition Combiner.hpp:150
Pin data.
Definition Combiner.hpp:181
double minTimeStep
Min time between messages.
Definition Combiner.hpp:185
InsTime lastTime
Time of the last observation processed.
Definition Combiner.hpp:183
std::vector< std::string > dynDataDescriptors
Extra data descriptors for dynamic data.
Definition Combiner.hpp:187
Send request information.
Definition Combiner.hpp:207
double result
Calculation result.
Definition Combiner.hpp:210
std::unordered_set< size_t > termIndices
Term indices, which are already calculated.
Definition Combiner.hpp:209
std::vector< std::pair< std::string, std::shared_ptr< const NodeData > > > rawData
List of the raw data of all terms contributing to the result.
Definition Combiner.hpp:211
size_t combIndex
Combination Index.
Definition Combiner.hpp:208
Inputs pins which can be added dynamically.
Definition DynamicInputPins.hpp:29