0.3.0
Loading...
Searching...
No Matches
CsvLogger.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
19
20namespace NAV
21{
22class NodeData;
23
25class CsvLogger : public Node, public FileWriter, public CommonLog
26{
27 public:
31 ~CsvLogger() override;
33 CsvLogger(const CsvLogger&) = delete;
35 CsvLogger(CsvLogger&&) = delete;
37 CsvLogger& operator=(const CsvLogger&) = delete;
40
42 [[nodiscard]] static std::string typeStatic();
43
45 [[nodiscard]] std::string type() const override;
46
48 [[nodiscard]] static std::string category();
49
52 void guiConfig() override;
53
55 [[nodiscard]] json save() const override;
56
59 void restore(const json& j) override;
60
62 void flush() override;
63
68 bool onCreateLink(OutputPin& startPin, InputPin& endPin) override;
69
70 private:
72 bool initialize() override;
73
75 void deinitialize() override;
76
79
83 void rewriteData(size_t oldSize, size_t newSize);
84
88 void writeObservation(InputPin::NodeDataQueue& queue, size_t pinIdx);
89
91 std::string _lastConnectedType;
92
94 bool _headerWritten = false;
95
97 std::vector<std::string> _dynamicHeader;
98
100 std::vector<std::pair<std::string, bool>> _headerLogging;
109};
110
111} // namespace NAV
Common logging variables like time into run and local positions.
File Writer class.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Node Class.
Common logging variables like time into run and local positions.
Definition CommonLog.hpp:31
Data Logger for PosVelAtt observations.
Definition CsvLogger.hpp:26
void guiConfig() override
ImGui config window which is shown on double click.
bool _headerLoggingSortGui
Sort headers in the GUI.
Definition CsvLogger.hpp:108
static std::string category()
String representation of the Class Category.
std::vector< std::pair< std::string, bool > > _headerLogging
Header which should be logged.
Definition CsvLogger.hpp:100
bool initialize() override
Initialize the node.
void rewriteData(size_t oldSize, size_t newSize)
Rewrites the data file with a new size.
std::vector< std::string > _dynamicHeader
Dynamic Header.
Definition CsvLogger.hpp:97
bool _headerWritten
Flag whether the header was written already.
Definition CsvLogger.hpp:94
void restore(const json &j) override
Restores the node from a json object.
json save() const override
Saves the node into a json object.
void writeObservation(InputPin::NodeDataQueue &queue, size_t pinIdx)
Write Observation to the file.
CsvLogger(const CsvLogger &)=delete
Copy constructor.
CsvLogger(CsvLogger &&)=delete
Move constructor.
std::string _lastConnectedType
Type last connected.
Definition CsvLogger.hpp:91
bool onCreateLink(OutputPin &startPin, InputPin &endPin) override
Called when a new link is to be established.
std::string type() const override
String representation of the Class Type.
void writeHeader()
Writes the header.
bool _headerLoggingDefault
Default for new headers.
Definition CsvLogger.hpp:106
CsvLogger & operator=(CsvLogger &&)=delete
Move assignment operator.
CsvLogger & operator=(const CsvLogger &)=delete
Copy assignment operator.
void flush() override
Function called by the flow executer after finishing to flush out remaining data.
~CsvLogger() override
Destructor.
static std::string typeStatic()
String representation of the Class Type.
std::string _headerLoggingRegex
Regex to search for when selecting.
Definition CsvLogger.hpp:104
size_t _headerLoggingCount
Amount of headers which are logged.
Definition CsvLogger.hpp:102
CsvLogger()
Default constructor.
void deinitialize() override
Deinitialize the node.
Parent class for other data loggers which manages the output filestream.
Definition FileWriter.hpp:27
Input pins of nodes.
Definition Pin.hpp:491
Abstract parent class for all nodes.
Definition Node.hpp:86
Output pins of nodes.
Definition Pin.hpp:338