11#ifndef app_indiUtils_hpp
12#define app_indiUtils_hpp
17#include "../../INDI/libcommon/IndiProperty.hpp"
18#include "../../INDI/libcommon/IndiElement.hpp"
27#define INDI_IDLE ( pcf::IndiProperty::Idle )
28#define INDI_OK ( pcf::IndiProperty::Ok )
29#define INDI_BUSY ( pcf::IndiProperty::Busy )
30#define INDI_ALERT ( pcf::IndiProperty::Alert )
38 const std::string &name,
39 const std::string &label =
""
42 prop.add( pcf::IndiElement( name,
"" ) );
47 prop[name].setLabel( label );
60 const std::string &name,
64 const std::string &format,
66 const std::string &label =
""
69 prop.add( pcf::IndiElement( name, 0 ) );
70 prop[name].setMin( min );
71 prop[name].setMax( max );
72 prop[name].setStep( step );
73 prop[name].setFormat( format );
78 prop[name].setLabel( label );
91template <
typename T,
class indiDriverT>
93 const std::string &el,
96 pcf::IndiProperty::PropertyStateType newState = pcf::IndiProperty::Ok )
104 std::stringstream ssValue;
105 ssValue.precision( 15 );
106 ssValue << std::boolalpha << newVal;
108 pcf::IndiProperty::PropertyStateType oldState = p.getState();
111 if( p[el].getValue() != ssValue.str() || oldState != newState )
114 p.setTimeStamp( pcf::TimeStamp() );
115 p.setState( newState );
119 catch( std::exception &e )
121 std::cerr <<
"Exception caught at " << __FILE__ <<
" " << __LINE__ <<
" ";
122 std::cerr <<
"from " << p.getName() <<
"." << el <<
": ";
123 std::cerr << e.what() <<
"\n";
127 std::cerr <<
"Exception caught at " << __FILE__ <<
" " << __LINE__ <<
" ";
128 std::cerr <<
"from " << p.getName() <<
"." << el <<
"\n";
137template <
typename T,
class indiDriverT>
139 const std::vector<std::string> &els,
140 const std::vector<T> &newVals,
142 pcf::IndiProperty::PropertyStateType newState = pcf::IndiProperty::Ok )
152 bool changed =
false;
153 pcf::IndiProperty::PropertyStateType oldState = p.getState();
155 if( oldState != newState )
158 for( n = 0; n < els.size() && changed !=
true; ++n )
161 std::stringstream ssValue;
162 ssValue.precision( 15 );
163 ssValue << std::boolalpha << newVals[n];
166 if( p[els[n]].getValue() != ssValue.str() )
173 for( n = 0; n < els.size(); ++n )
175 p[els[n]].set( newVals[n] );
177 p.setTimeStamp( pcf::TimeStamp() );
178 p.setState( newState );
182 catch( std::exception &e )
184 std::cerr <<
"Exception caught at " << __FILE__ <<
" " << __LINE__ <<
" ";
187 std::cerr <<
"from " << p.getName() <<
"." << els[n] <<
": ";
189 std::cerr << e.what() <<
"\n";
193 std::cerr <<
"Exception caught at " << __FILE__ <<
" " << __LINE__ <<
" ";
196 std::cerr <<
"from " << p.getName() <<
"." << els[n] <<
"\n";
208template <
typename T,
typename elVecT,
class indiDriverT>
211 const std::vector<T> &newVals,
213 pcf::IndiProperty::PropertyStateType newState = pcf::IndiProperty::Ok )
223 bool changed =
false;
224 pcf::IndiProperty::PropertyStateType oldState = p.getState();
226 if( oldState != newState )
229 for( n = 0; n < els.size() && changed !=
true; ++n )
232 std::stringstream ssValue;
233 ssValue.precision( 15 );
234 ssValue << std::boolalpha << newVals[n];
237 if( p[els[n]].getValue() != ssValue.str() )
244 for( n = 0; n < els.size(); ++n )
246 p[els[n]].set( newVals[n] );
248 p.setTimeStamp( pcf::TimeStamp() );
249 p.setState( newState );
253 catch( std::exception &e )
255 std::cerr <<
"Exception caught at " << __FILE__ <<
" " << __LINE__ <<
" ";
258 std::cerr <<
"from " << p.getName() <<
"." << els[n] <<
": ";
260 std::cerr << e.what() <<
"\n";
264 std::cerr <<
"Exception caught at " << __FILE__ <<
" " << __LINE__ <<
" ";
267 std::cerr <<
"from " << p.getName() <<
"." << els[n] <<
"\n";
281template <
typename T,
class indiDriverT>
283 const std::vector<const char *> &els,
284 const std::vector<T> &newVals,
286 pcf::IndiProperty::PropertyStateType newState = pcf::IndiProperty::Ok )
288 updatesIfChanged<T, std::vector<const char *>, indiDriverT>( p, els, newVals,
indiDriver, newState );
300template <
typename T,
class indiDriverT>
302 const std::vector<std::string> &els,
303 const std::vector<T> &newVals,
305 pcf::IndiProperty::PropertyStateType newState = pcf::IndiProperty::Ok )
307 updatesIfChanged<T, std::vector<std::string>, indiDriverT>( p, els, newVals,
indiDriver, newState );
317template <
class indiDriverT>
319 const std::string &el,
320 const pcf::IndiElement::SwitchStateType &newVal,
322 pcf::IndiProperty::PropertyStateType newState = pcf::IndiProperty::Ok )
331 pcf::IndiElement::SwitchStateType oldVal = p[el].getSwitchState();
333 pcf::IndiProperty::PropertyStateType oldState = p.getState();
335 if( oldVal != newVal || oldState != newState )
337 p[el].setSwitchState( newVal );
338 p.setTimeStamp( pcf::TimeStamp() );
339 p.setState( newState );
345 std::cerr <<
"INDI Exception at " << __FILE__ <<
" " << __LINE__ <<
"\n";
346 std::cerr <<
"from " << p.getName() <<
"." << el <<
"\n";
355template <
class indiDriverT>
357 pcf::IndiProperty &p,
358 const std::string &el,
360 pcf::IndiProperty::PropertyStateType newState = pcf::IndiProperty::Ok )
367 std::cerr <<
"INDI error at " << __FILE__ <<
" " << __LINE__ <<
"\n";
368 std::cerr << p.getName() <<
" does not have " << el <<
"\n";
375 bool changed =
false;
376 for(
auto elit = p.getElements().begin(); elit != p.getElements().end(); ++elit )
378 if( elit->first == el )
380 if( elit->second.getSwitchState() != pcf::IndiElement::On )
382 p[elit->first].setSwitchState( pcf::IndiElement::On );
388 if( elit->second.getSwitchState() != pcf::IndiElement::Off )
390 p[elit->first].setSwitchState( pcf::IndiElement::Off );
396 pcf::IndiProperty::PropertyStateType oldState = p.getState();
398 if( changed || oldState != newState )
400 p.setState( newState );
401 p.setTimeStamp( pcf::TimeStamp() );
407 std::cerr <<
"INDI Exception at " << __FILE__ <<
" " << __LINE__ <<
"\n";
408 std::cerr <<
"from " << p.getName() <<
"." << el <<
"\n";
424 std::string &propName,
425 const std::string &key
433 size_t p = key.find(
'.' );
435 if( p == std::string::npos )
449 if( p == key.size() - 1 )
456 devName = key.substr( 0, p );
457 propName = key.substr( p + 1 );
void updateIfChanged(pcf::IndiProperty &p, const std::string &el, const T &newVal, indiDriverT *indiDriver, pcf::IndiProperty::PropertyStateType newState=pcf::IndiProperty::Ok)
Update the value of the INDI element, but only if it has changed.
void updateSelectionSwitchIfChanged(pcf::IndiProperty &p, const std::string &el, indiDriverT *indiDriver, pcf::IndiProperty::PropertyStateType newState=pcf::IndiProperty::Ok)
Update the values of a one-of-many INDI switch vector, but only if it has changed.
int parseIndiKey(std::string &devName, std::string &propName, const std::string &key)
Parse an INDI key into the device and property names.
int addTextElement(pcf::IndiProperty &prop, const std::string &name, const std::string &label="")
Add a standard INDI Text element.
void updateSwitchIfChanged(pcf::IndiProperty &p, const std::string &el, const pcf::IndiElement::SwitchStateType &newVal, indiDriverT *indiDriver, pcf::IndiProperty::PropertyStateType newState=pcf::IndiProperty::Ok)
Update the value of the INDI element, but only if it has changed.
int addNumberElement(pcf::IndiProperty &prop, const std::string &name, const T &min, const T &max, const T &step, const std::string &format, const std::string &label="")
Add a standard INDI Number element.
void updatesIfChanged(pcf::IndiProperty &p, const elVecT &els, const std::vector< T > &newVals, indiDriverT *indiDriver, pcf::IndiProperty::PropertyStateType newState=pcf::IndiProperty::Ok)
Update the elements of an INDI propery, but only if there has been a change in at least one.