| 1 | /* | 
|---|
| 2 | * Action_impl_header.hpp | 
|---|
| 3 | * | 
|---|
| 4 | *  Created on: Aug 25, 2010 | 
|---|
| 5 | *      Author: heber | 
|---|
| 6 | */ | 
|---|
| 7 |  | 
|---|
| 8 | // include config.h | 
|---|
| 9 | #ifdef HAVE_CONFIG_H | 
|---|
| 10 | #include <config.h> | 
|---|
| 11 | #endif | 
|---|
| 12 |  | 
|---|
| 13 | #include <boost/preprocessor/cat.hpp> | 
|---|
| 14 | #include <boost/preprocessor/comparison/equal.hpp> | 
|---|
| 15 | #include <boost/preprocessor/comparison/not_equal.hpp> | 
|---|
| 16 | #include <boost/preprocessor/control/expr_if.hpp> | 
|---|
| 17 | #include <boost/preprocessor/control/if.hpp> | 
|---|
| 18 | #include <boost/preprocessor/debug/assert.hpp> | 
|---|
| 19 | #include <boost/preprocessor/iteration/local.hpp> | 
|---|
| 20 | #include <boost/preprocessor/list/adt.hpp> | 
|---|
| 21 | #include <boost/preprocessor/punctuation/comma_if.hpp> | 
|---|
| 22 | #include <boost/preprocessor/punctuation/paren.hpp> | 
|---|
| 23 | #include <boost/preprocessor/repetition/repeat.hpp> | 
|---|
| 24 | #include <boost/preprocessor/seq/elem.hpp> | 
|---|
| 25 | #include <boost/preprocessor/seq/push_back.hpp> | 
|---|
| 26 | #include <boost/preprocessor/seq/seq.hpp> | 
|---|
| 27 | #include <boost/preprocessor/seq/size.hpp> | 
|---|
| 28 | #include <boost/preprocessor/seq/transform.hpp> | 
|---|
| 29 |  | 
|---|
| 30 | #include <iostream> | 
|---|
| 31 | #include <typeinfo> | 
|---|
| 32 |  | 
|---|
| 33 | #include "Actions/ActionTraits.hpp" | 
|---|
| 34 |  | 
|---|
| 35 | #include "Parameters/Parameter.hpp" | 
|---|
| 36 |  | 
|---|
| 37 | // some derived names: if CATEGORY is not given, we don't prefix with it | 
|---|
| 38 | #ifdef CATEGORY | 
|---|
| 39 | #define ACTION BOOST_PP_CAT(CATEGORY, BOOST_PP_CAT(ACTIONNAME, Action)) | 
|---|
| 40 | #define COMMAND BOOST_PP_CAT(CATEGORY, ACTIONNAME) | 
|---|
| 41 | #define PARAMS BOOST_PP_CAT(CATEGORY, BOOST_PP_CAT(ACTIONNAME, Parameters)) | 
|---|
| 42 | #else | 
|---|
| 43 | #define ACTION BOOST_PP_CAT(ACTIONNAME, Action) | 
|---|
| 44 | #define COMMAND ACTIONNAME | 
|---|
| 45 | #define PARAMS BOOST_PP_CAT(ACTIONNAME, Parameters) | 
|---|
| 46 | #endif | 
|---|
| 47 | // check if no lists given | 
|---|
| 48 | #ifndef paramtypes | 
|---|
| 49 | #define MAXPARAMTYPES 0 | 
|---|
| 50 | #else | 
|---|
| 51 | #define MAXPARAMTYPES BOOST_PP_SEQ_SIZE(paramtypes) | 
|---|
| 52 | #endif | 
|---|
| 53 | #ifndef paramdefaults | 
|---|
| 54 | #define MAXPARAMDEFAULTS 0 | 
|---|
| 55 | // this is required for valid_print "else part" | 
|---|
| 56 | #define sequencer(z,n,data) \ | 
|---|
| 57 | BOOST_PP_SEQ_PUSH_BACK( data, NOPARAM_DEFAULT) | 
|---|
| 58 | #define paramdefaults BOOST_PP_REPEAT( MAXPARAMTYPES, sequencer, BOOST_PP_SEQ_NIL ) | 
|---|
| 59 | #else | 
|---|
| 60 | #define MAXPARAMDEFAULTS BOOST_PP_SEQ_SIZE(paramdefaults) | 
|---|
| 61 | #endif | 
|---|
| 62 | #define PARAM_DEFAULT(x) \ | 
|---|
| 63 | (x, BOOST_PP_NIL) | 
|---|
| 64 |  | 
|---|
| 65 | // check user has given name and category | 
|---|
| 66 | #ifndef ACTIONNAME | 
|---|
| 67 | ERROR: No "ACTIONNAME" defined in: __FILE__ | 
|---|
| 68 | #endif | 
|---|
| 69 |  | 
|---|
| 70 | // calculate numbers and check whether all have same size | 
|---|
| 71 | #ifdef paramtokens | 
|---|
| 72 | BOOST_PP_ASSERT_MSG(BOOST_PP_EQUAL(MAXPARAMTYPES, BOOST_PP_SEQ_SIZE(paramtokens)),\ | 
|---|
| 73 | ERROR: There are not the same number of "paramtokens" and "paramtypes" in: __FILE__ \ | 
|---|
| 74 | ) | 
|---|
| 75 | #endif | 
|---|
| 76 | #ifdef paramreferences | 
|---|
| 77 | BOOST_PP_ASSERT_MSG(BOOST_PP_EQUAL(MAXPARAMTYPES, BOOST_PP_SEQ_SIZE(paramreferences)),\ | 
|---|
| 78 | ERROR: There are not the same number of "paramtokens" and "paramreferences" in: __FILE__ \ | 
|---|
| 79 | ) | 
|---|
| 80 | #endif | 
|---|
| 81 | #ifdef paramdescriptions | 
|---|
| 82 | BOOST_PP_ASSERT_MSG(BOOST_PP_EQUAL(MAXPARAMTYPES, BOOST_PP_SEQ_SIZE(paramdescriptions)),\ | 
|---|
| 83 | ERROR: There are not the same number of "paramtokens" and "paramdescriptions" in: __FILE__ \ | 
|---|
| 84 | ) | 
|---|
| 85 | #endif | 
|---|
| 86 |  | 
|---|
| 87 | // check for mandatory defines | 
|---|
| 88 | #ifndef DESCRIPTION | 
|---|
| 89 | BOOST_PP_ASSERT_MSG(0, \ | 
|---|
| 90 | "ERROR: Description is mandatory for Actions, here for ACTION " \ | 
|---|
| 91 | ) | 
|---|
| 92 | #endif | 
|---|
| 93 |  | 
|---|
| 94 | // check if paramdefaults is given, otherwise fill list with NOPARAM_DEFAULT | 
|---|
| 95 | // this does not work: paramdefaults has to be completely defined before | 
|---|
| 96 | // being used within option_print (used as an array there and not as | 
|---|
| 97 | // some function call still to be expanded) | 
|---|
| 98 | //#define paramdefaults (NOPARAM_DEFAULT) | 
|---|
| 99 | //#define tempvalue(z,n,value) | 
|---|
| 100 | //  BOOST_PP_CAT(value,(NOPARAM_DEFAULT)) | 
|---|
| 101 | //BOOST_PP_REPEAT(tempvalue, MAXPARAMTYPES, paramdefaults) | 
|---|
| 102 | //#undef tempvalue | 
|---|
| 103 | //#else | 
|---|
| 104 |  | 
|---|
| 105 | // if present, check if correct number of arguments | 
|---|
| 106 | #ifdef paramdefaults | 
|---|
| 107 | BOOST_PP_ASSERT_MSG(BOOST_PP_EQUAL(MAXPARAMTYPES, BOOST_PP_SEQ_SIZE(paramdefaults)),\ | 
|---|
| 108 | ERROR: There are not the same number of "paramtokens" and "paramdefaults" in: __FILE__ \ | 
|---|
| 109 | ) | 
|---|
| 110 | #endif | 
|---|
| 111 |  | 
|---|
| 112 | // print a list of type ref followed by a separator, i.e. "Parameter<int> i;" | 
|---|
| 113 | #define type_print(z,n,TYPELIST, VARLIST, separator) \ | 
|---|
| 114 | Parameter < \ | 
|---|
| 115 | BOOST_PP_SEQ_ELEM(n, TYPELIST) \ | 
|---|
| 116 | > \ | 
|---|
| 117 | BOOST_PP_SEQ_ELEM(n, VARLIST) \ | 
|---|
| 118 | separator | 
|---|
| 119 |  | 
|---|
| 120 | // print a list of type ref followed, i.e. "int i, double position" | 
|---|
| 121 | #define type_list(z,n,TYPELIST, VARLIST) \ | 
|---|
| 122 | BOOST_PP_COMMA_IF(n)\ | 
|---|
| 123 | BOOST_PP_SEQ_ELEM(n, TYPELIST) \ | 
|---|
| 124 | BOOST_PP_SEQ_ELEM(n, VARLIST) | 
|---|
| 125 |  | 
|---|
| 126 | // prints Options.insert | 
|---|
| 127 | #define option_print(z,n,unused, unused2) \ | 
|---|
| 128 | tester = Options. insert (\ | 
|---|
| 129 | std::pair< std::string, OptionTrait *> ( \ | 
|---|
| 130 | BOOST_PP_SEQ_ELEM(n, paramtokens), \ | 
|---|
| 131 | new OptionTrait(\ | 
|---|
| 132 | BOOST_PP_SEQ_ELEM(n, paramtokens), \ | 
|---|
| 133 | &typeid( BOOST_PP_SEQ_ELEM(n, paramtypes) ), \ | 
|---|
| 134 | BOOST_PP_SEQ_ELEM(n, paramdescriptions) \ | 
|---|
| 135 | BOOST_PP_COMMA_IF( BOOST_PP_NOT( BOOST_PP_LIST_IS_NIL( BOOST_PP_SEQ_ELEM(n, paramdefaults) ) ) ) \ | 
|---|
| 136 | BOOST_PP_EXPR_IF( \ | 
|---|
| 137 | BOOST_PP_NOT( BOOST_PP_LIST_IS_NIL( BOOST_PP_SEQ_ELEM(n, paramdefaults) ) ), \ | 
|---|
| 138 | toString BOOST_PP_LPAREN() \ | 
|---|
| 139 | BOOST_PP_LIST_FIRST( BOOST_PP_SEQ_ELEM(n, paramdefaults) )) \ | 
|---|
| 140 | BOOST_PP_RPAREN() \ | 
|---|
| 141 | )\ | 
|---|
| 142 | )\ | 
|---|
| 143 | ); \ | 
|---|
| 144 | ASSERT(tester.second, "ActionTrait<ACTION>::ActionTrait<ACTION>() option token present twice!"); | 
|---|
| 145 |  | 
|---|
| 146 | #define stringtype std::string | 
|---|
| 147 |  | 
|---|
| 148 | #define type2string(s, data, elem) \ | 
|---|
| 149 | stringtype | 
|---|
| 150 |  | 
|---|
| 151 | namespace MoleCuilder { | 
|---|
| 152 |  | 
|---|
| 153 | void COMMAND( | 
|---|
| 154 | #if defined paramtypes && defined paramreferences | 
|---|
| 155 | #define BOOST_PP_LOCAL_MACRO(n) type_list(~, n, paramtypes, paramreferences) | 
|---|
| 156 | #define BOOST_PP_LOCAL_LIMITS  (0, MAXPARAMTYPES-1) | 
|---|
| 157 | #include BOOST_PP_LOCAL_ITERATE() | 
|---|
| 158 | #endif | 
|---|
| 159 | ); | 
|---|
| 160 |  | 
|---|
| 161 | void BOOST_PP_CAT( COMMAND, _stringargs)( | 
|---|
| 162 | #if defined paramtypes && defined paramreferences && BOOST_PP_NOT_EQUAL(MAXPARAMTYPES,0) | 
|---|
| 163 | #define BOOST_PP_LOCAL_MACRO(n) type_list(~, n, BOOST_PP_SEQ_TRANSFORM( type2string, , paramtypes), paramreferences) | 
|---|
| 164 | #define BOOST_PP_LOCAL_LIMITS  (0, MAXPARAMTYPES-1) | 
|---|
| 165 | #include BOOST_PP_LOCAL_ITERATE() | 
|---|
| 166 | #endif | 
|---|
| 167 | ); | 
|---|
| 168 |  | 
|---|
| 169 | class ACTION; | 
|---|
| 170 |  | 
|---|
| 171 | template <> | 
|---|
| 172 | class ActionTraits<ACTION> : public ActionTrait { | 
|---|
| 173 | public: | 
|---|
| 174 | ActionTraits() : | 
|---|
| 175 | #ifndef SHORTFORM | 
|---|
| 176 | ActionTrait(OptionTrait(TOKEN, &typeid(void), DESCRIPTION, std::string())) | 
|---|
| 177 | #else | 
|---|
| 178 | ActionTrait(OptionTrait(TOKEN, &typeid(void), DESCRIPTION, std::string(), SHORTFORM)) | 
|---|
| 179 | #endif /* SHORTFORM */ | 
|---|
| 180 | { | 
|---|
| 181 | // initialize remainder of action info | 
|---|
| 182 | #ifdef MENUNAME | 
|---|
| 183 | MenuTitle = MENUNAME; | 
|---|
| 184 | #endif | 
|---|
| 185 | #ifdef MENUPOSITION | 
|---|
| 186 | MenuPosition = MENUPOSITION; | 
|---|
| 187 | #endif | 
|---|
| 188 |  | 
|---|
| 189 | // initialize action's options | 
|---|
| 190 | std::pair< ActionTrait::options_iterator, bool > tester; | 
|---|
| 191 | #ifdef paramtokens | 
|---|
| 192 | #define BOOST_PP_LOCAL_MACRO(n) option_print(~, n, ~, ) | 
|---|
| 193 | #define BOOST_PP_LOCAL_LIMITS  (0, MAXPARAMTYPES-1) | 
|---|
| 194 | #include BOOST_PP_LOCAL_ITERATE() | 
|---|
| 195 | #endif | 
|---|
| 196 | // associate action's short form also with option | 
|---|
| 197 | #ifdef SHORTFORM | 
|---|
| 198 | if (Options.find(TOKEN) != Options.end()) | 
|---|
| 199 | Options[TOKEN]->setShortForm(std::string(SHORTFORM)); | 
|---|
| 200 | #endif /* SHORTFORM */ | 
|---|
| 201 | //std::cout << "ActionTraits<" << BOOST_PP_STRINGIZE(ACTION) << ">::ActionTraits() on instance " << this << " with " << getName() << ", type " << getTypeName() << " and description " << getDescription() << std::endl; | 
|---|
| 202 | } | 
|---|
| 203 |  | 
|---|
| 204 | virtual ~ActionTraits() { | 
|---|
| 205 | //std::cout << "ActionTraits<" << BOOST_PP_STRINGIZE(ACTION) << ">::~ActionTraits() on instance " << this << " with name " << getName() << " called." << std::endl; | 
|---|
| 206 | } | 
|---|
| 207 | }; | 
|---|
| 208 |  | 
|---|
| 209 | #if defined BASECLASS | 
|---|
| 210 | class ACTION : public BASECLASS { | 
|---|
| 211 | #else | 
|---|
| 212 | class ACTION : public Action { | 
|---|
| 213 | #endif | 
|---|
| 214 | friend void COMMAND( | 
|---|
| 215 | #if defined paramtypes && defined paramreferences | 
|---|
| 216 | #define BOOST_PP_LOCAL_MACRO(n) type_list(~, n, paramtypes, paramreferences) | 
|---|
| 217 | #define BOOST_PP_LOCAL_LIMITS  (0, MAXPARAMTYPES-1) | 
|---|
| 218 | #include BOOST_PP_LOCAL_ITERATE() | 
|---|
| 219 | #endif | 
|---|
| 220 | ); | 
|---|
| 221 |  | 
|---|
| 222 | friend void BOOST_PP_CAT( COMMAND, _stringargs)( | 
|---|
| 223 | #if defined paramtypes && defined paramreferences && BOOST_PP_NOT_EQUAL(MAXPARAMTYPES,0) | 
|---|
| 224 | #define BOOST_PP_LOCAL_MACRO(n) type_list(~, n, BOOST_PP_SEQ_TRANSFORM( type2string, , paramtypes), paramreferences) | 
|---|
| 225 | #define BOOST_PP_LOCAL_LIMITS  (0, MAXPARAMTYPES-1) | 
|---|
| 226 | #include BOOST_PP_LOCAL_ITERATE() | 
|---|
| 227 | #endif | 
|---|
| 228 | ); | 
|---|
| 229 |  | 
|---|
| 230 | public: | 
|---|
| 231 | ACTION(); | 
|---|
| 232 | virtual ~ACTION(); | 
|---|
| 233 |  | 
|---|
| 234 | bool canUndo(); | 
|---|
| 235 | bool shouldUndo(); | 
|---|
| 236 |  | 
|---|
| 237 | Action* clone(enum QueryOptions flag = Interactive) const; | 
|---|
| 238 |  | 
|---|
| 239 | void outputAsCLI(std::ostream &ost) const; | 
|---|
| 240 | void outputAsPython(std::ostream &ost, const std::string &prefix) const; | 
|---|
| 241 |  | 
|---|
| 242 | struct PARAMS : ActionParameters { | 
|---|
| 243 | //!> constructor for class PARAMS, setting valid ranges | 
|---|
| 244 | PARAMS(); | 
|---|
| 245 | //!> copy constructor for class PARAMS, setting valid ranges | 
|---|
| 246 | PARAMS(const PARAMS &p); | 
|---|
| 247 | #if defined paramtypes && defined paramreferences | 
|---|
| 248 | #define BOOST_PP_LOCAL_MACRO(n) type_print(~, n, paramtypes, paramreferences, ;) | 
|---|
| 249 | #define BOOST_PP_LOCAL_LIMITS  (0, MAXPARAMTYPES-1) | 
|---|
| 250 | #include BOOST_PP_LOCAL_ITERATE() | 
|---|
| 251 | #endif | 
|---|
| 252 | } params; | 
|---|
| 253 |  | 
|---|
| 254 | protected: | 
|---|
| 255 | virtual Dialog * fillDialog(Dialog*); | 
|---|
| 256 |  | 
|---|
| 257 | void startTimer() const; | 
|---|
| 258 | void endTimer() const; | 
|---|
| 259 |  | 
|---|
| 260 | private: | 
|---|
| 261 | virtual ActionState::ptr performCall(); | 
|---|
| 262 | virtual ActionState::ptr performUndo(ActionState::ptr); | 
|---|
| 263 | virtual ActionState::ptr performRedo(ActionState::ptr); | 
|---|
| 264 | }; | 
|---|
| 265 |  | 
|---|
| 266 | } | 
|---|
| 267 |  | 
|---|
| 268 | #undef paramvalids | 
|---|
| 269 | #undef paramtypes | 
|---|
| 270 | #undef paramtokens | 
|---|
| 271 | #undef paramreferences | 
|---|
| 272 | #undef paramdescriptions | 
|---|
| 273 | #undef paramdefaults | 
|---|
| 274 | #undef MAXPARAMTYPES | 
|---|
| 275 | #undef MAXPARAMDEFAULTS | 
|---|
| 276 | #undef statetypes | 
|---|
| 277 | #undef statereferences | 
|---|
| 278 | #undef MAXSTATETYPES | 
|---|
| 279 | #undef PARAM_DEFAULT | 
|---|
| 280 |  | 
|---|
| 281 | #undef option_print | 
|---|
| 282 | #undef sequencer | 
|---|
| 283 | #undef type_print | 
|---|
| 284 | #undef type_list | 
|---|
| 285 |  | 
|---|
| 286 | #undef ACTION | 
|---|
| 287 | #undef COMMAND | 
|---|
| 288 | #undef COMMANDFULL | 
|---|
| 289 | #undef PARAMS | 
|---|
| 290 |  | 
|---|
| 291 | #undef ACTIONNAME | 
|---|
| 292 | #undef CATEGORY | 
|---|
| 293 | #undef MENUNAME | 
|---|
| 294 | #undef MENUPOSITION | 
|---|
| 295 | #undef TOKEN | 
|---|
| 296 | #undef BASECLASS | 
|---|
| 297 |  | 
|---|
| 298 | #undef DESCRIPTION | 
|---|
| 299 | #undef SHORTFORM | 
|---|