0.3.0
Loading...
Searching...
No Matches
WiFiObsLogger.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
17
20
21namespace NAV
22{
23class NodeData;
24
26class WiFiObsLogger : public Node, public FileWriter, public CommonLog
27{
28 public:
32 ~WiFiObsLogger() override;
34 WiFiObsLogger(const WiFiObsLogger&) = delete;
41
43 [[nodiscard]] static std::string typeStatic();
44
46 [[nodiscard]] std::string type() const override;
47
49 [[nodiscard]] static std::string category();
50
53 void guiConfig() override;
54
56 [[nodiscard]] json save() const override;
57
60 void restore(const json& j) override;
61
63 void flush() override;
64
65 private:
67 bool initialize() override;
68
70 void deinitialize() override;
71
75 void writeObservation(InputPin::NodeDataQueue& queue, size_t pinIdx);
76};
77
78} // 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
Parent class for other data loggers which manages the output filestream.
Definition FileWriter.hpp:27
Abstract parent class for all nodes.
Definition Node.hpp:86
Data Logger for WiFiObs observations.
Definition WiFiObsLogger.hpp:27
bool initialize() override
Initialize the node.
void guiConfig() override
ImGui config window which is shown on double click.
WiFiObsLogger & operator=(const WiFiObsLogger &)=delete
Copy assignment operator.
WiFiObsLogger(WiFiObsLogger &&)=delete
Move constructor.
void deinitialize() override
Deinitialize the node.
static std::string typeStatic()
String representation of the Class Type.
WiFiObsLogger & operator=(WiFiObsLogger &&)=delete
Move assignment operator.
WiFiObsLogger(const WiFiObsLogger &)=delete
Copy constructor.
void restore(const json &j) override
Restores the node from a json object.
std::string type() const override
String representation of the Class Type.
void writeObservation(InputPin::NodeDataQueue &queue, size_t pinIdx)
Write Observation to the file.
~WiFiObsLogger() override
Destructor.
static std::string category()
String representation of the Class Category.
WiFiObsLogger()
Default constructor.
void flush() override
Function called by the flow executer after finishing to flush out remaining data.
json save() const override
Saves the node into a json object.