0.3.0
Loading...
Searching...
No Matches
ArubaSensor.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#include <libssh/libssh.h>
21
22namespace NAV
23{
25class ArubaSensor : public Node
26{
27 public:
31 ~ArubaSensor() override;
33 ArubaSensor(const ArubaSensor&) = 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 bool resetNode() override;
63
64 private:
65 constexpr static size_t OUTPUT_PORT_INDEX_WIFI_OBS = 0;
66
68 bool initialize() override;
69
71 void deinitialize() override;
72
75 static void readSensorDataThread(void* userData);
76
78 ssh_channel _channel{};
80 ssh_session _session{};
81
84
86
88 std::string _sshHost{ "192.168.178.45" };
90 std::string _sshUser;
92 std::string _sshPassword;
94 std::string _sshHostkeys{ "ssh-rsa" };
96 std::string _sshKeyExchange{ "ecdh-sha2-nistp256" };
98 std::string _sshPublickeyAcceptedTypes{ "ssh-rsa" };
99
101 int _outputInterval{ 3000 };
102};
103
104} // namespace NAV
Starts a Periodic Timer.
Holds all Constants.
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
Node Class.
Manages a thread which calls a specified function at a specified interval.
Definition CallbackTimer.hpp:22
Aruba Sensor Class.
Definition ArubaSensor.hpp:26
std::string type() const override
String representation of the Class Type.
std::string _sshHost
Ssh options.
Definition ArubaSensor.hpp:88
static std::string category()
String representation of the Class Category.
ssh_session _session
SSH session.
Definition ArubaSensor.hpp:80
static constexpr size_t OUTPUT_PORT_INDEX_WIFI_OBS
Flow (WiFiObs)
Definition ArubaSensor.hpp:65
CallbackTimer _timer
Timer object to handle async data requests.
Definition ArubaSensor.hpp:83
ArubaSensor(ArubaSensor &&)=delete
Move constructor.
static std::string typeStatic()
String representation of the Class Type.
~ArubaSensor() override
Destructor.
void guiConfig() override
ImGui config window which is shown on double click.
std::string _sshPublickeyAcceptedTypes
Public key type.
Definition ArubaSensor.hpp:98
ArubaSensor(const ArubaSensor &)=delete
Copy constructor.
ArubaSensor & operator=(ArubaSensor &&)=delete
Move assignment operator.
void restore(const json &j) override
Restores the node from a json object.
void deinitialize() override
Deinitialize the node.
ArubaSensor & operator=(const ArubaSensor &)=delete
Copy assignment operator.
json save() const override
Saves the node into a json object.
std::string _sshHostkeys
SSH encryption.
Definition ArubaSensor.hpp:94
static void readSensorDataThread(void *userData)
Function which performs the async data reading.
std::string _sshPassword
User credentials.
Definition ArubaSensor.hpp:92
ArubaSensor()
Default constructor.
std::string _sshKeyExchange
Key exchange.
Definition ArubaSensor.hpp:96
ssh_channel _channel
SSH channel.
Definition ArubaSensor.hpp:78
bool resetNode() override
Resets the node. It is guaranteed that the node is initialized when this is called.
int _outputInterval
Output interval in ms.
Definition ArubaSensor.hpp:101
std::string _sshUser
User name.
Definition ArubaSensor.hpp:90
bool initialize() override
Initialize the node.
Abstract parent class for all nodes.
Definition Node.hpp:86