0.3.0
Loading...
Searching...
No Matches
WiFiObsFile.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
14
15#pragma once
16
19
20namespace NAV
21{
23class WiFiObsFile : public Node, public FileReader
24{
25 public:
29 ~WiFiObsFile() override;
31 WiFiObsFile(const WiFiObsFile&) = delete;
38
40 [[nodiscard]] static std::string typeStatic();
41
43 [[nodiscard]] std::string type() const override;
44
46 [[nodiscard]] static std::string category();
47
50 void guiConfig() override;
51
53 [[nodiscard]] json save() const override;
54
57 void restore(const json& j) override;
58
60 bool resetNode() override;
61
62 private:
63 constexpr static size_t OUTPUT_PORT_INDEX_WiFiObs_OBS = 0;
64 constexpr static size_t OUTPUT_PORT_INDEX_HEADER_COLUMNS = 1;
65
67 bool initialize() override;
68
70 void deinitialize() override;
71
74 [[nodiscard]] std::shared_ptr<const NodeData> pollData();
75};
76
77} // namespace NAV
Abstract File Reader class.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Node Class.
Abstract File Reader class.
Definition FileReader.hpp:31
Abstract parent class for all nodes.
Definition Node.hpp:86
File Reader for Imu log files.
Definition WiFiObsFile.hpp:24
static constexpr size_t OUTPUT_PORT_INDEX_WiFiObs_OBS
Flow (WiFiObs)
Definition WiFiObsFile.hpp:63
std::shared_ptr< const NodeData > pollData()
Polls data from the file.
WiFiObsFile(const WiFiObsFile &)=delete
Copy constructor.
WiFiObsFile & operator=(WiFiObsFile &&)=delete
Move assignment operator.
static std::string category()
String representation of the Class Category.
static std::string typeStatic()
String representation of the Class Type.
json save() const override
Saves the node into a json object.
void deinitialize() override
Deinitialize the node.
static constexpr size_t OUTPUT_PORT_INDEX_HEADER_COLUMNS
Object (std::vector<std::string>)
Definition WiFiObsFile.hpp:64
WiFiObsFile()
Default constructor.
bool initialize() override
Initialize the node.
WiFiObsFile & operator=(const WiFiObsFile &)=delete
Copy assignment operator.
void restore(const json &j) override
Restores the node from a json object.
std::string type() const override
String representation of the Class Type.
WiFiObsFile(WiFiObsFile &&)=delete
Move constructor.
void guiConfig() override
ImGui config window which is shown on double click.
bool resetNode() override
Resets the node. Moves the read cursor to the start.
~WiFiObsFile() override
Destructor.