0.3.0
Loading...
Searching...
No Matches
VectorNavFile.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// VectorNav library includes <winsock2.h>, but <boost/asio.hpp> needs to be included before (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
27
28#include "vn/sensors.h"
29
30namespace NAV
31{
33class VectorNavFile : public Imu, public FileReader
34{
35 public:
39 ~VectorNavFile() override;
41 VectorNavFile(const VectorNavFile&) = delete;
48
50 [[nodiscard]] static std::string typeStatic();
51
53 [[nodiscard]] std::string type() const override;
54
56 [[nodiscard]] static std::string category();
57
60 void guiConfig() override;
61
63 [[nodiscard]] json save() const override;
64
67 void restore(const json& j) override;
68
70 bool resetNode() override;
71
72 private:
73 constexpr static size_t OUTPUT_PORT_INDEX_VECTORNAV_BINARY_OUTPUT = 0;
74
76 bool initialize() override;
77
79 void deinitialize() override;
80
83 [[nodiscard]] FileType determineFileType() override;
84
86 void readHeader() override;
87
93 vn::sensors::BinaryOutputRegister _binaryOutputRegister;
94
97 [[nodiscard]] std::shared_ptr<const NodeData> pollData();
98
100 uint32_t _messageCount = 0;
101
103 bool _hasTimeColumn = false;
104};
105
106} // namespace NAV
Abstract File Reader class.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Abstract IMU Class.
Abstract File Reader class.
Definition FileReader.hpp:31
FileType
File Type Enumeration.
Definition FileReader.hpp:35
Abstract IMU Class.
Definition Imu.hpp:24
File Reader for Vector Nav log files.
Definition VectorNavFile.hpp:34
static constexpr size_t OUTPUT_PORT_INDEX_VECTORNAV_BINARY_OUTPUT
Flow (VectorNavBinaryOutput)
Definition VectorNavFile.hpp:73
bool resetNode() override
Resets the node. Moves the read cursor to the start.
VectorNavFile()
Default constructor.
bool _hasTimeColumn
Flag whether the file has the 'Time [s]' column. Backwards compatibility to older files.
Definition VectorNavFile.hpp:103
VectorNavFile & operator=(const VectorNavFile &)=delete
Copy assignment operator.
vn::sensors::BinaryOutputRegister _binaryOutputRegister
Binary Output Register 1 - 3.
Definition VectorNavFile.hpp:93
bool initialize() override
Initialize the node.
json save() const override
Saves the node into a json object.
static std::string typeStatic()
String representation of the Class Type.
~VectorNavFile() override
Destructor.
void readHeader() override
Read the Header of the file.
void deinitialize() override
Deinitialize the node.
VectorNavFile & operator=(VectorNavFile &&)=delete
Move assignment operator.
std::shared_ptr< const NodeData > pollData()
Polls data from the file.
void guiConfig() override
ImGui config window which is shown on double click.
VectorNavFile(const VectorNavFile &)=delete
Copy constructor.
VectorNavFile(VectorNavFile &&)=delete
Move constructor.
uint32_t _messageCount
Amount of messages read.
Definition VectorNavFile.hpp:100
std::string type() const override
String representation of the Class Type.
FileType determineFileType() override
Virtual Function to determine the File Type.
static std::string category()
String representation of the Class Category.
void restore(const json &j) override
Restores the node from a json object.