20#include <libssh/libssh.h>
45 [[nodiscard]] std::string
type()
const override;
nlohmann::json json
json namespace
Definition FlowManager.hpp:21
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