MagAO-X
|
||||
|
#include <indiDriver.hpp>
Public Types | |
typedef _parentT | parentT |
The parent MagAOX app. More... | |
Public Member Functions | |
indiDriver (parentT *parent, const std::string &szName, const std::string &szDriverVersion, const std::string &szProtocolVersion) | |
Public c'tor. More... | |
~indiDriver () | |
D'tor, deletes the IndiClient pointer. More... | |
bool | good () |
Get the value of the good flag. More... | |
virtual void | handleDefProperty (const pcf::IndiProperty &ipRecv) |
virtual void | handleGetProperties (const pcf::IndiProperty &ipRecv) |
virtual void | handleNewProperty (const pcf::IndiProperty &ipRecv) |
virtual void | handleSetProperty (const pcf::IndiProperty &ipRecv) |
virtual void | execute (void) |
Define the execute virtual function. This runs the processIndiRequests function in this thread, and does not return. More... | |
virtual void | update () |
Define the update virt. func. here so the uptime message isn't sent. More... | |
virtual int | sendNewProperty (const pcf::IndiProperty &ipRecv) |
Send a newProperty command to another INDI driver. More... | |
Protected Attributes | |
parentT * | m_parent {nullptr} |
This objects parent class. More... | |
pcf::IndiClient * | m_outGoing {nullptr} |
An INDI Client is used to send commands to other drivers. More... | |
std::string | m_serverIPAddress {"127.0.01"} |
The IP address of the server for the INDI Client connection. More... | |
int | m_serverPort {7624} |
The port of the server for the INDI Client connection. More... | |
Private Attributes | |
bool | m_good {true} |
Flag to hold the status of this connection. More... | |
Definition at line 25 of file indiDriver.hpp.
typedef _parentT MagAOX::app::indiDriver< _parentT >::parentT |
The parent MagAOX app.
Definition at line 30 of file indiDriver.hpp.
MagAOX::app::indiDriver< parentT >::indiDriver | ( | parentT * | parent, |
const std::string & | szName, | ||
const std::string & | szDriverVersion, | ||
const std::string & | szProtocolVersion | ||
) |
Public c'tor.
Call pcf::IndiDriver c'tor, and then opens the FIFOs specified by parent. If this fails, then m_good is set to false. test this with good().
Definition at line 99 of file indiDriver.hpp.
MagAOX::app::indiDriver< parentT >::~indiDriver | ( | ) |
D'tor, deletes the IndiClient pointer.
Definition at line 143 of file indiDriver.hpp.
|
virtual |
Define the execute virtual function. This runs the processIndiRequests function in this thread, and does not return.
Definition at line 173 of file indiDriver.hpp.
Referenced by MagAOX::app::indiDriver< MagAOX::app::MagAOXApp >::good().
|
inline |
Get the value of the good flag.
Definition at line 71 of file indiDriver.hpp.
|
virtual |
Definition at line 149 of file indiDriver.hpp.
Referenced by MagAOX::app::indiDriver< MagAOX::app::MagAOXApp >::good(), and MagAOX::app::indiDriver< MagAOX::app::MagAOXApp >::handleDefProperty().
|
virtual |
Definition at line 155 of file indiDriver.hpp.
Referenced by MagAOX::app::indiDriver< MagAOX::app::MagAOXApp >::good(), and MagAOX::app::indiDriver< MagAOX::app::MagAOXApp >::handleGetProperties().
|
virtual |
Definition at line 161 of file indiDriver.hpp.
Referenced by MagAOX::app::indiDriver< MagAOX::app::MagAOXApp >::good(), and MagAOX::app::indiDriver< MagAOX::app::MagAOXApp >::handleNewProperty().
|
virtual |
Definition at line 167 of file indiDriver.hpp.
Referenced by MagAOX::app::indiDriver< MagAOX::app::MagAOXApp >::good(), and MagAOX::app::indiDriver< MagAOX::app::MagAOXApp >::handleSetProperty().
|
virtual |
Send a newProperty command to another INDI driver.
Uses the IndiClient member of this class, which is initialized the first time if necessary.
Definition at line 185 of file indiDriver.hpp.
Referenced by MagAOX::app::indiDriver< MagAOX::app::MagAOXApp >::good().
|
virtual |
Define the update virt. func. here so the uptime message isn't sent.
Definition at line 179 of file indiDriver.hpp.
Referenced by MagAOX::app::indiDriver< MagAOX::app::MagAOXApp >::good().
|
private |
Flag to hold the status of this connection.
Definition at line 49 of file indiDriver.hpp.
Referenced by MagAOX::app::indiDriver< MagAOX::app::MagAOXApp >::good().
|
protected |
An INDI Client is used to send commands to other drivers.
Definition at line 38 of file indiDriver.hpp.
|
protected |
This objects parent class.
Definition at line 35 of file indiDriver.hpp.
|
protected |
The IP address of the server for the INDI Client connection.
Definition at line 41 of file indiDriver.hpp.
|
protected |
The port of the server for the INDI Client connection.
Definition at line 44 of file indiDriver.hpp.