/usr/include/libindi/baseclient.h is in libindi-dev 0.8-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 | #ifndef INDIBASECLIENT_H
#define INDIBASECLIENT_H
#include <vector>
#include <map>
#include <boost/shared_ptr.hpp>
#include <string>
#include "indiapi.h"
#include "indidevapi.h"
#include "indibase.h"
#define MAXRBUF 2048
using namespace std;
/**
* \class INDI::BaseClient
\brief Class to provide basic client functionality.
BaseClient enables accelerated development of INDI Clients by providing a framework that facilitates communication, device
handling, and event notification. By subclassing BaseClient, clients can quickly connect to an INDI server, and query for
a set of INDI::BaseDriver devices, and read and write properties seamlessly. Event driven programming is possible due to
notifications upon reception of new devices or properties.
\attention All notifications functions defined in INDI::BaseMediator must be implemented in the client class even if
they are not used because these are pure virtual functions.
\author Jasem Mutlaq
*/
class INDI::BaseClient : public INDI::BaseMediator
{
public:
enum { INDI_DEVICE_NOT_FOUND=-1, INDI_PROPERTY_INVALID=-2, INDI_PROPERTY_DUPLICATED = -3, INDI_DISPATCH_ERROR=-4 };
typedef boost::shared_ptr<INDI::BaseDriver> devicePtr;
BaseClient();
~BaseClient();
/** \brief Set the server host name and port
\param hostname INDI server host name or IP address.
\param port INDI server port.
*/
void setServer(const char * hostname, unsigned int port);
/** \brief Add a device to the watch list.
A client may select to receive notifications of only a specific device or a set of devices.
If the client encounters any of the devices set via this function, it will create a corresponding
INDI::BaseDriver object to handle them. If no devices are watched, then all devices owned by INDI server
will be created and handled.
*/
void watchDevice(const char * deviceName);
/** \brief Connect to INDI server.
\returns True if the connection is successful, false otherwise.
\note This function blocks until connection is either successull or unsuccessful.
*/
bool connectServer();
/** \brief Disconnect from INDI server.
Disconnects from INDI servers. Any devices previously created will be deleted and memory cleared.
\return True if disconnection is successful, false otherwise.
*/
bool disconnectServer();
/** \brief Connect/Disconnect to INDI driver
\param status If true, the client will attempt to turn on CONNECTION property within the driver (i.e. turn on the device).
Otherwise, CONNECTION will be turned off.
\param deviceName Name of the device to connect to.
*/
void setDriverConnection(bool status, const char *deviceName);
/** \param deviceName Name of device to search for in the list of devices owned by INDI server,
\returns If \e deviceName exists, it returns an instance of the device. Otherwise, it returns NULL.
*/
INDI::BaseDriver * getDriver(const char * deviceName);
/** \returns Returns a vector of all devices created in the client.
*/
const vector<devicePtr> & getDrivers() const { return cDevices; }
/** \brief Set Binary Large Object policy mode
Set the BLOB handling mode for the client. The client may either recieve:
<ul>
<li>Only BLOBS</li>
<li>BLOBs mixed with normal messages</li>
<li>Normal messages only, no BLOBs</li>
</ul>
If \e dev and \e prop are supplied, then the BLOB handling policy is set for this particular device and property.
if \e prop is NULL, then the BLOB policy applies to the whole device.
\param blobH BLOB handling policy
\param dev name of device, required.
\param prop name of property, optional.
*/
void setBLOBMode(BLOBHandling blobH, const char *dev, const char *prop = NULL);
// Update
static void * listenHelper(void *context);
protected:
/** \brief Dispatch command received from INDI server to respective devices handled by the client */
int dispatchCommand(XMLEle *root, char* errmsg);
/** \brief Remove device */
int removeDevice( const char * devName, char * errmsg );
/** \brief Delete property command */
int delPropertyCmd (XMLEle *root, char * errmsg);
/** \brief Find and return a particular device */
INDI::BaseDriver * findDev( const char * devName, char * errmsg);
/** \brief Add a new device */
INDI::BaseDriver * addDevice (XMLEle *dep, char * errmsg);
/** \brief Find a device, and if it doesn't exist, create it if create is set to 1 */
INDI::BaseDriver * findDev (XMLEle *root, int create, char * errmsg);
/** Process messages */
int messageCmd (XMLEle *root, char * errmsg);
/** Process messages */
void checkMsg (XMLEle *root, INDI::BaseDriver *dp);
/** Process messages */
void doMsg (XMLEle *msg, INDI::BaseDriver *dp);
/** \brief Send new Text command to server */
void sendNewText (ITextVectorProperty *pp);
/** \brief Send new Number command to server */
void sendNewNumber (INumberVectorProperty *pp);
/** \brief Send new Switch command to server */
void sendNewSwitch (ISwitchVectorProperty *pp, ISwitch *lp);
/** \brief Send opening tag for BLOB command to server */
void startBlob( const char *devName, const char *propName, const char *timestamp);
/** \brief Send ONE blob content to server */
void sendOneBlob( const char *blobName, unsigned int blobSize, const char *blobFormat, unsigned char * blobBuffer);
/** \brief Send closing tag for BLOB command to server */
void finishBlob();
private:
// Listen to INDI server and process incoming messages
void listenINDI();
// Thread for listenINDI()
pthread_t listen_thread;
vector<devicePtr> cDevices;
vector<string> cDeviceNames;
string cServer;
unsigned int cPort;
bool sConnected;
// Parse & FILE buffers for IO
int sockfd;
LilXML *lillp; /* XML parser context */
FILE *svrwfp; /* FILE * to talk to server */
};
#endif // INDIBASECLIENT_H
|