 |
API
|
|
Loading...
Searching...
No Matches
Go to the documentation of this file.
11#ifndef app_indiMacros_hpp
12#define app_indiMacros_hpp
22#define SET_INDI_NEWCALLBACK(class, prop) static int st_ ## newCallBack ## _ ## prop( void * app, const pcf::IndiProperty &ipRecv)\
24 return static_cast<class *>(app)->newCallBack ## _ ## prop(ipRecv);\
35#define SET_INDI_SETCALLBACK(class, prop) static int st_ ## setCallBack ## _ ## prop( void * app, const pcf::IndiProperty &ipRecv)\
37 return static_cast<class *>(app)->setCallBack ## _ ## prop(ipRecv);\
48#define INDI_NEWCALLBACK_DECL(class, prop) int newCallBack_ ## prop(const pcf::IndiProperty &ipRecv); \
49 SET_INDI_NEWCALLBACK(class, prop)
59#define INDI_SETCALLBACK_DECL(class, prop) int setCallBack_ ## prop(const pcf::IndiProperty &ipRecv); \
60 SET_INDI_SETCALLBACK(class, prop)
89#define INDI_NEWCALLBACK_DEFN(class, prop) int class::newCallBack_ ## prop
118#define INDI_SETCALLBACK_DEFN(class, prop) int class::setCallBack_ ## prop
120#ifndef XWCTEST_INDI_CALLBACK_VALIDATION
121#define INDI_VALIDATE_LOG_ERROR(prop1, prop2) log<software_error>({__FILE__,__LINE__, "INDI properties do not match in callback: " \
122 + prop1.createUniqueKey() + " != " + prop2.createUniqueKey()});
124#define INDI_VALIDATE_LOG_ERROR_DERIVED(prop1, prop2) derivedT::template log<software_error>({__FILE__,__LINE__, "INDI properties do not match in callback: " \
125 + prop1.createUniqueKey() + " != " + prop2.createUniqueKey()});
127#define INDI_VALIDATE_LOG_ERROR(prop1, prop2)
128#define INDI_VALIDATE_LOG_ERROR_DERIVED(prop1,prop2)
135#define INDI_VALIDATE_CALLBACK_PROPS_IMPL(prop1, prop2) \
136 if(prop1.createUniqueKey() != prop2.createUniqueKey()) \
138 INDI_VALIDATE_LOG_ERROR(prop1, prop2) \
142#ifdef XWCTEST_INDI_CALLBACK_VALIDATION
145#define INDI_VALIDATE_CALLBACK_PROPS(prop1, prop2) INDI_VALIDATE_CALLBACK_PROPS_IMPL(prop1, prop2) \
162#define INDI_VALIDATE_CALLBACK_PROPS(prop1, prop2) INDI_VALIDATE_CALLBACK_PROPS_IMPL( prop1, prop2 )
171#define INDI_VALIDATE_CALLBACK_PROPS_DERIVED_IMPL(prop1, prop2) \
172 if(prop1.createUniqueKey() != prop2.createUniqueKey()) \
174 INDI_VALIDATE_LOG_ERROR_DERIVED(prop1, prop2) \
178#ifdef XWCTEST_INDI_CALLBACK_VALIDATION
181#define INDI_VALIDATE_CALLBACK_PROPS_DERIVED(prop1, prop2) INDI_VALIDATE_CALLBACK_PROPS_DERIVED_IMPL(prop1, prop2) else {return 0;}
197#define INDI_VALIDATE_CALLBACK_PROPS_DERIVED(prop1, prop2) INDI_VALIDATE_CALLBACK_PROPS_DERIVED_IMPL( prop1, prop2)
208#define INDI_NEWCALLBACK(prop) st_newCallBack_ ## prop
217#define INDI_SETCALLBACK(prop) st_setCallBack_ ## prop
230#define REG_INDI_NEWPROP(prop, propName, type) \
231if( registerIndiPropertyNew( prop, propName, type, pcf::IndiProperty::ReadWrite, pcf::IndiProperty::Idle, INDI_NEWCALLBACK(prop)) < 0) \
233 return log<software_error,-1>({__FILE__,__LINE__, "failed to register new property"}); \
246 #define REG_INDI_NEWPROP_NOSETUP(prop) \
247 if( registerIndiPropertyNew( prop, INDI_NEWCALLBACK(prop)) < 0) \
249 return log<software_error,-1>({__FILE__,__LINE__, "failed to register new property"}); \
263#define REG_INDI_NEWPROP_NOCB(prop, propName, type) \
264if( registerIndiPropertyNew( prop, propName, type, pcf::IndiProperty::ReadOnly, pcf::IndiProperty::Idle, 0) < 0) \
266 return log<software_error,-1>({__FILE__,__LINE__, "failed to register read only property"}); \
280#define REG_INDI_NEWPROP_NOCB_DERIVED(prop, propName, type) \
281if( derived().registerIndiPropertyNew( prop, propName, type, pcf::IndiProperty::ReadOnly, pcf::IndiProperty::Idle, 0) < 0) \
283 return derivedT::template log<software_error,-1>({__FILE__,__LINE__, "failed to register read only property"}); \
297#define REG_INDI_SETPROP(prop, devName, propName) \
298if( registerIndiPropertySet( prop,devName, propName, INDI_SETCALLBACK(prop)) < 0) \
300 return log<software_error,-1>({__FILE__,__LINE__, "failed to register set property"}); \
303#define REG_INDI_SETPROP_DERIVED(prop, devName, propName) \
304if( derived().template registerIndiPropertySet( prop,devName, propName, INDI_SETCALLBACK(prop)) < 0) \
306 return derivedT::template log<software_error,-1>({__FILE__,__LINE__, "failed to register set property"}); \
320 #define CREATE_REG_INDI_NEW_TEXT( prop, name, label, group) \
321 if( createStandardIndiText( prop, name, label, group) < 0) \
323 log<software_error>({__FILE__,__LINE__, "error from createStandardIndiText"}); \
326 if( registerIndiPropertyNew( prop, INDI_NEWCALLBACK(prop)) < 0) \
328 log<software_error>({__FILE__,__LINE__, "error from registerIndiPropertyNew"}); \
347#define CREATE_REG_INDI_NEW_NUMBERF( prop, name, min, max, step, format, label, group) \
348 if( createStandardIndiNumber<float>( prop, name, min, max, step, format, label, group) < 0) \
350 log<software_error>({__FILE__,__LINE__, "error from createStandardIndiNumber"}); \
353 if( registerIndiPropertyNew( prop, INDI_NEWCALLBACK(prop)) < 0) \
355 log<software_error>({__FILE__,__LINE__, "error from registerIndiPropertyNew"}); \
374#define CREATE_REG_INDI_NEW_NUMBERD( prop, name, min, max, step, format, label, group) \
375 if( createStandardIndiNumber<double>( prop, name, min, max, step, format, label, group) < 0) \
377 log<software_error>({__FILE__,__LINE__, "error from createStandardIndiNumber"}); \
380 if( registerIndiPropertyNew( prop, INDI_NEWCALLBACK(prop)) < 0) \
382 log<software_error>({__FILE__,__LINE__, "error from registerIndiPropertyNew"}); \
401#define CREATE_REG_INDI_NEW_NUMBERI( prop, name, min, max, step, format, label, group) \
402 if( createStandardIndiNumber<int>( prop, name, min, max, step, format, label, group) < 0) \
404 log<software_error>({__FILE__,__LINE__, "error from createStandardIndiNumber"}); \
407 if( registerIndiPropertyNew( prop, INDI_NEWCALLBACK(prop)) < 0) \
409 log<software_error>({__FILE__,__LINE__, "error from registerIndiPropertyNew"}); \
428#define CREATE_REG_INDI_NEW_NUMBERU( prop, name, min, max, step, format, label, group) \
429 if( createStandardIndiNumber<unsigned>( prop, name, min, max, step, format, label, group) < 0) \
431 log<software_error>({__FILE__,__LINE__, "error from createStandardIndiNumber"}); \
434 if( registerIndiPropertyNew( prop, INDI_NEWCALLBACK(prop)) < 0) \
436 log<software_error>({__FILE__,__LINE__, "error from registerIndiPropertyNew"}); \
450#define CREATE_REG_INDI_RO_NUMBER( prop, name, label, group ) \
451 if( createROIndiNumber( prop, name, label, group ) < 0) \
453 log<software_error>({__FILE__,__LINE__, "error from createROIndiNumber"}); \
456 if( registerIndiPropertyReadOnly( prop ) < 0) \
458 log<software_error>({__FILE__,__LINE__, "error from registerIndiPropertyReadOnly"}); \
470#define CREATE_REG_INDI_NEW_TOGGLESWITCH( prop, name) \
471 if( createStandardIndiToggleSw( prop, name) < 0) \
473 log<software_error>({__FILE__,__LINE__, "error from createStandardIndiToggleSw"}); \
476 if( registerIndiPropertyNew( prop, INDI_NEWCALLBACK(prop)) < 0) \
478 log<software_error>({__FILE__,__LINE__, "error from registerIndiPropertyNew"}); \
490#define CREATE_REG_INDI_NEW_TOGGLESWITCH_NOCB( prop, name) \
491 if( createStandardIndiToggleSw( prop, name) < 0) \
493 log<software_error>({__FILE__,__LINE__, "error from createStandardIndiToggleSw"}); \
496 if( registerIndiPropertyNew( prop, nullptr) < 0) \
498 log<software_error>({__FILE__,__LINE__, "error from registerIndiPropertyNew"}); \
510#define CREATE_REG_INDI_NEW_REQUESTSWITCH( prop, name) \
511 if( createStandardIndiRequestSw( prop, name) < 0) \
513 log<software_error>({__FILE__,__LINE__, "error from createStandardIndiRequestSw"}); \
516 if( registerIndiPropertyNew( prop, INDI_NEWCALLBACK(prop)) < 0) \
518 log<software_error>({__FILE__,__LINE__, "error from registerIndiPropertyNew"}); \
537#define CREATE_REG_INDI_NEW_NUMBERF_DERIVED( prop, name, min, max, step, format, label, group) \
538 if( derived().template createStandardIndiNumber<float>( prop, name, min, max, step, format, label, group) < 0) \
540 derivedT::template log<software_error>({__FILE__,__LINE__, "error from createStandardIndiNumber"}); \
543 if( derived().template registerIndiPropertyNew( prop, INDI_NEWCALLBACK(prop)) < 0) \
545 derivedT::template log<software_error>({__FILE__,__LINE__, "error from registerIndiPropertyNew"}); \
565#define CREATE_REG_INDI_NEW_NUMBERI_DERIVED( prop, name, min, max, step, format, label, group) \
566 if( derived().template createStandardIndiNumber<int>( prop, name, min, max, step, format, label, group) < 0) \
568 derivedT::template log<software_error>({__FILE__,__LINE__, "error from createStandardIndiNumber"}); \
571 if( derived().template registerIndiPropertyNew( prop, INDI_NEWCALLBACK(prop)) < 0) \
573 derivedT::template log<software_error>({__FILE__,__LINE__, "error from registerIndiPropertyNew"}); \
585#define CREATE_REG_INDI_NEW_TOGGLESWITCH_DERIVED( prop, name ) \
586 if( derived().template createStandardIndiToggleSw( prop, name) < 0) \
588 derivedT::template log<software_error>({__FILE__,__LINE__, "error from createStandardIndiToggleSw"}); \
591 if( derived().template registerIndiPropertyNew( prop, INDI_NEWCALLBACK(prop)) < 0) \
593 derivedT::template log<software_error>({__FILE__,__LINE__, "error from registerIndiPropertyNew"}); \
605#define CREATE_REG_INDI_NEW_REQUESTSWITCH_DERIVED( prop, name) \
606 if( derived().template createStandardIndiRequestSw( prop, name) < 0) \
608 derivedT::template log<software_error>({__FILE__,__LINE__, "error from createStandardIndiRequestSw"}); \
611 if( derived().template registerIndiPropertyNew( prop, INDI_NEWCALLBACK(prop)) < 0) \
613 derivedT::template log<software_error>({__FILE__,__LINE__, "error from registerIndiPropertyNew"}); \