/******************************************************************************* Copyright(c) 2011 Jasem Mutlaq. All rights reserved. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License version 2 as published by the Free Software Foundation. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *******************************************************************************/ #ifndef INDIBASEDRIVER_H #define INDIBASEDRIVER_H #include #include #include "indiapi.h" #include "indidevapi.h" #include "indibase.h" #define MAXRBUF 2048 class PropertyContainer { public: PropertyContainer(); ~PropertyContainer(); /*! INDI property type */ typedef enum { INDI_NUMBER, /*!< INumberVectorProperty. */ INDI_SWITCH, /*!< ISwitchVectorProperty. */ INDI_TEXT, /*!< ITextVectorProperty. */ INDI_LIGHT, /*!< ILightVectorProperty. */ INDI_BLOB, /*!< IBLOBVectorProperty. */ INDI_UNKNOWN } INDI_TYPE; void setProperty(void *); void setType(INDI_TYPE t); void setRegistered(bool r); void setDynamic(bool d); void *getProperty() { return pPtr; } INDI_TYPE getType() { return pType; } bool getRegistered() { return pRegistered; } bool getDynamic() { return pDynamic; } private: void *pPtr; INDI_TYPE pType; bool pRegistered; bool pDynamic; }; /** * \class INDI::BaseDriver \brief Class to provide basic INDI driver functionality. INDI::BaseClient contains a vector list of INDI::BaseDrivers. Upon connection with INDI server, the client create a INDI::BaseDriver \e instance for each driver owned by the INDI server. Properties of the driver can be build either by loading an external skeleton file that contains a list of defXXX commands, or by dynamically building properties as they arrive from the server. \author Jasem Mutlaq */ class INDI::BaseDriver { public: BaseDriver(); ~BaseDriver(); /*! INDI error codes. */ enum INDI_ERROR { INDI_DEVICE_NOT_FOUND=-1, /*!< INDI Device was not found. */ INDI_PROPERTY_INVALID=-2, /*!< Property has an invalid syntax or attribute. */ INDI_PROPERTY_DUPLICATED = -3, /*!< INDI Device was not found. */ INDI_DISPATCH_ERROR=-4 /*!< Dispatching command to driver failed. */ }; /** \return Return vector number property given its name */ INumberVectorProperty * getNumber(const char *name); /** \return Return vector text property given its name */ ITextVectorProperty * getText(const char *name); /** \return Return vector switch property given its name */ ISwitchVectorProperty * getSwitch(const char *name); /** \return Return vector light property given its name */ ILightVectorProperty * getLight(const char *name); /** \return Return vector BLOB property given its name */ IBLOBVectorProperty * getBLOB(const char *name); void registerProperty(void *p, PropertyContainer::INDI_TYPE type); /** \brief Remove a property \param name name of property to be removed \return 0 if successul, -1 otherwise. */ int removeProperty(const char *name); /** \brief Return a property and its type given its name. \param name of property to be found. \param type of property found. \return If property is found, it is returned. To be used you must use static_cast with given the type of property returned. \note This is a low-level function and should not be called directly unless necessary. Use getXXX instead where XXX is the property type (Number, Text, Switch..etc). */ void * getProperty(const char *name, PropertyContainer::INDI_TYPE type = PropertyContainer::INDI_UNKNOWN); PropertyContainer * getContainer(const char *name, PropertyContainer::INDI_TYPE type = PropertyContainer::INDI_UNKNOWN); /** \brief Build driver properties from a skeleton file. \param filename full path name of the file. A skeloton file defines the properties supported by this driver. It is a list of defXXX elements enclosed by @@ and @@ opening and closing tags. After the properties are created, they can be rerieved, manipulated, and defined to other clients. \see An example skeleton file can be found under examples/tutorial_four_sk.xml */ void buildSkeleton(const char *filename); /** \return True if the device is connected (CONNECT=ON), False otherwise */ bool isConnected(); /** \brief Set the device name \param dev new device name */ void setDeviceName(const char *dev); /** \return Returns the device name */ const char *deviceName(); /** \brief Add message to the driver's message queue. \param msg Message to add. */ void addMessage(const char *msg); /** \return Returns the contents of the driver's message queue. */ const char *message() { return messageQueue.c_str(); } /** \brief Set the driver's mediator to receive notification of news devices and updated property values. */ void setMediator(INDI::BaseMediator *med) { mediator = med; } /** \returns Get the meditator assigned to this driver */ INDI::BaseMediator * getMediator() { return mediator; } protected: /** \brief Build a property given the supplied XML element (defXXX) \param root XML element to parse and build. \param errmsg buffer to store error message in parsing fails. \return 0 if parsing is successful, -1 otherwise and errmsg is set */ int buildProp(XMLEle *root, char *errmsg); /** \brief handle SetXXX commands from client */ int setValue (XMLEle *root, char * errmsg); /** \brief handle SetBLOB command from client */ int processBLOB(IBLOB *blobEL, XMLEle *ep, char * errmsg); /** \brief Parse and store BLOB in the respective vector */ int setBLOB(IBLOBVectorProperty *pp, XMLEle * root, char * errmsg); private: char deviceID[MAXINDINAME]; std::vector pAll; LilXML *lp; std::string messageQueue; INDI::BaseMediator *mediator; friend class INDI::BaseClient; friend class INDI::DefaultDriver; }; #endif // INDIBASEDRIVER_H