source: src/Actions/Action_impl_pre.hpp@ c20b35

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since c20b35 was 88ba1f, checked in by Frederik Heber <heber@…>, 13 years ago

Added Action's COMMAND_stringargs() function call.

  • also added ValueStorage::setCurrentValueByString() which gets type only via template specialization but whose argument is always of type string.
  • this allows to call the Action with string arguments only.
  • We need this for the (lazy) python exporting where no internal classes such as BoxVector are exposed to the python outside.
  • Property mode set to 100644
File size: 9.3 KB
Line 
1/*
2 * Action_impl.hpp
3 *
4 * Created on: Aug 25, 2010
5 * Author: heber
6 */
7
8/** These macros define the following functions, necessary but repetitive for
9 * every Action:
10 * -# Dialog* fillDialog()
11 * -# action command (e.g. AnalysisMolecularVolume() )
12 * -# void getParametersfromValuStorage()
13 * -# struct Action...Parameters
14 *
15 * For this, the user has the define the following values, each with
16 * parenthesis, for the values/parameters the action needs
17 * -# paramtypes, e.g. (int)(double)
18 * -# paramtokens, e.g. ("Z")("length")
19 * -# paramreferences, e.g. (Z)(length)
20 * and for additional values/parameters to save in the state
21 * -# statetypes, e.g. (int)(double)
22 * -# statereferences, e.g. (Z)(length)
23 * and the name and category of the action
24 * -# CATEGORY, e.g. Analysis
25 * -# ACTIONNAME, e.g. MolecularVolume
26 */
27
28// include config.h
29#ifdef HAVE_CONFIG_H
30#include <config.h>
31#endif
32
33#include "CodePatterns/Chronos.hpp"
34
35#include <boost/preprocessor/cat.hpp>
36#include <boost/preprocessor/expand.hpp>
37#include <boost/preprocessor/comparison/equal.hpp>
38#include <boost/preprocessor/comparison/not_equal.hpp>
39#include <boost/preprocessor/control/if.hpp>
40#include <boost/preprocessor/debug/assert.hpp>
41#include <boost/preprocessor/iteration/local.hpp>
42#include <boost/preprocessor/punctuation/comma_if.hpp>
43#include <boost/preprocessor/repetition/repeat.hpp>
44#include <boost/preprocessor/seq/elem.hpp>
45#include <boost/preprocessor/seq/push_back.hpp>
46#include <boost/preprocessor/seq/seq.hpp>
47#include <boost/preprocessor/seq/size.hpp>
48#include <boost/preprocessor/seq/transform.hpp>
49
50// some derived names: if CATEGORY is not given, we don't prefix with it
51#ifdef CATEGORY
52#define ACTION BOOST_PP_CAT(CATEGORY, BOOST_PP_CAT(ACTIONNAME, Action))
53#define COMMAND BOOST_PP_CAT(CATEGORY, ACTIONNAME)
54#define STATE BOOST_PP_CAT(CATEGORY, BOOST_PP_CAT(ACTIONNAME, State))
55#define PARAMS BOOST_PP_CAT(CATEGORY, BOOST_PP_CAT(ACTIONNAME, Parameters))
56#else
57#define ACTION BOOST_PP_CAT(ACTIONNAME, Action)
58#define COMMAND ACTIONNAME
59#define STATE BOOST_PP_CAT(ACTIONNAME, State)
60#define PARAMS BOOST_PP_CAT(ACTIONNAME, Parameters)
61#endif
62#define INSTANCE BOOST_PP_CAT(this_, BOOST_PP_CAT(ACTIONNAME, _instance))
63
64// check if no lists given
65#ifndef paramtypes
66#define MAXPARAMTYPES 0
67#else
68#define MAXPARAMTYPES BOOST_PP_SEQ_SIZE(paramtypes)
69#endif
70#ifndef statetypes
71#define MAXSTATETYPES 0
72#else
73#define MAXSTATETYPES BOOST_PP_SEQ_SIZE(statetypes)
74#endif
75
76// check user has given name and category
77#ifndef ACTIONNAME
78ERROR: No "ACTIONNAME" defined in: __FILE__
79#endif
80
81// calculate numbers and check whether all have same size
82#ifdef paramtokens
83BOOST_PP_ASSERT_MSG(BOOST_PP_EQUAL(MAXPARAMTYPES, BOOST_PP_SEQ_SIZE(paramtokens)),\
84 ERROR: There are not the same number of "paramtokens" and "paramtypes" in: __FILE__ \
85)
86#endif
87#ifdef paramreferences
88BOOST_PP_ASSERT_MSG(BOOST_PP_EQUAL(MAXPARAMTYPES, BOOST_PP_SEQ_SIZE(paramreferences)),\
89 ERROR: There are not the same number of "paramtokens" and "paramreferences" in: __FILE__ \
90)
91#endif
92
93#ifdef statetypes
94BOOST_PP_ASSERT_MSG(BOOST_PP_EQUAL(MAXSTATETYPES, BOOST_PP_SEQ_SIZE(statereferences)),\
95 ERROR: There are not the same number of "statetypes" and "statereferences" in: __FILE__ \
96)
97#endif
98
99// print a list of type ref followed by a separator, i.e. "int i;"
100#define initialiser_print(z,n,initialiserlist) \
101 BOOST_PP_SEQ_ELEM(n, initialiserlist) \
102 (BOOST_PP_CAT(_, BOOST_PP_SEQ_ELEM(n, initialiserlist))),
103
104// print a list of ref(_ref) followed by a separator, i.e. "id(_id),"
105#define type_print(z,n,TYPELIST, VARLIST, separator) \
106 BOOST_PP_SEQ_ELEM(n, TYPELIST) \
107 BOOST_PP_SEQ_ELEM(n, VARLIST)\
108 separator
109
110// print a list of type ref followed, i.e. "int i, double position"
111#define type_list(z,n,TYPELIST,VARLIST) \
112 BOOST_PP_COMMA_IF(n)\
113 BOOST_PP_SEQ_ELEM(n, TYPELIST) \
114 BOOST_PP_SEQ_ELEM(n, VARLIST)
115
116// prints dialog->query calls for paramtypes with tokens
117#define dialog_print(z,n,unused) \
118 dialog->query<\
119 BOOST_PP_SEQ_ELEM(n, paramtypes)\
120 >(\
121 BOOST_PP_SEQ_ELEM(n, paramtokens)\
122 , Traits.getDescription()\
123 );
124
125// prints set/queryCurrentValue (command) for paramreferences and paramtokens
126#define value_print(z,n,command, prefix) \
127 ValueStorage::getInstance(). command (\
128 BOOST_PP_SEQ_ELEM(n, paramtokens)\
129 , \
130 prefix\
131 BOOST_PP_SEQ_ELEM(n, paramreferences)\
132 );
133
134// prints set/queryCurrentValue (command) for paramreferences and paramtokens
135#define valuetype_print(z,n,command, prefix) \
136 ValueStorage::getInstance(). command< \
137 BOOST_PP_SEQ_ELEM(n, paramtypes) \
138 > (\
139 BOOST_PP_SEQ_ELEM(n, paramtokens)\
140 , \
141 prefix\
142 BOOST_PP_SEQ_ELEM(n, paramreferences)\
143 );
144
145#define stringtype std::string
146
147#define type2string(s, data, elem) \
148 stringtype
149
150
151#include "Actions/ActionRegistry.hpp"
152#include "UIElements/Dialog.hpp"
153
154#ifdef paramtokens
155#define statenecessary 1
156#endif
157#ifndef statetokens
158#define statenecessary 1
159#endif
160
161namespace MoleCuilder {
162
163// =========== memento to remember the state when undoing ===========
164#ifdef statenecessary
165class STATE : public ActionState {
166public:
167 STATE(
168#if defined statetypes && defined statereferences // if we have parameters, we have to add "_" before each reference and add the params as the last one
169#define OP(s,data,elem) BOOST_PP_CAT(data, elem) // OP to add "_"
170#define BOOST_PP_LOCAL_MACRO(n) type_list(~, n, BOOST_PP_SEQ_PUSH_BACK(statetypes, const ACTION::PARAMS &), BOOST_PP_SEQ_TRANSFORM(OP, _, BOOST_PP_SEQ_PUSH_BACK(statereferences, params)))
171#else /// if not, params is only list
172#define BOOST_PP_LOCAL_MACRO(n) type_list(~, n, (const ACTION::PARAMS &), (_params))
173#endif
174#define BOOST_PP_LOCAL_LIMITS (0, MAXSTATETYPES)
175#include BOOST_PP_LOCAL_ITERATE()
176) :
177#if defined statetypes && defined statereferences // do we have parameters at all?
178BOOST_PP_REPEAT(MAXSTATETYPES, initialiser_print, statereferences)
179#endif
180params(_params)
181 {}
182
183#if defined statetypes && defined statereferences // do we have parameters at all?
184#define BOOST_PP_LOCAL_MACRO(n) type_print(~, n, statetypes, statereferences, ;)
185#define BOOST_PP_LOCAL_LIMITS (0, MAXSTATETYPES-1)
186#include BOOST_PP_LOCAL_ITERATE()
187#endif
188 ACTION::PARAMS params;
189};
190#endif /* statenecessary */
191
192// (const) prototype to be placed into the ActionRegistry (must be deleted by registry itself)
193//const ACTION INSTANCE;
194//boost::shared_ptr< ACTION > INSTANCE( new ACTION() );
195
196// =========== constructor ===========
197ACTION::ACTION () :
198 Action(ActionTrait< ACTION >(), false)
199{}
200
201// =========== destructor ===========
202ACTION::~ACTION ()
203{
204 //std::cout << "Action ACTION is being destroyed." << std::endl;
205}
206
207// =========== fill a dialog ===========
208Dialog* ACTION::fillDialog(Dialog *dialog) {
209 ASSERT(dialog,"No Dialog given when filling actionname's dialog");
210#if BOOST_PP_EQUAL(MAXPARAMTYPES,0)
211 dialog->queryEmpty(TOKEN, Traits.getDescription());
212#else
213#define BOOST_PP_LOCAL_MACRO(n) dialog_print(~, n, ~)
214#define BOOST_PP_LOCAL_LIMITS (0, MAXPARAMTYPES-1)
215#include BOOST_PP_LOCAL_ITERATE()
216#endif
217 return dialog;
218};
219
220// =========== time the action ===========
221// we need this here to have the correct function name
222void ACTION::startTimer() const { Chronos::getInstance().startTiming( std::string( TOKEN ) ); }
223void ACTION::endTimer() const { Chronos::getInstance().endTiming( std::string( TOKEN ) ); }
224
225// =========== command for calling action directly ===========
226void COMMAND(
227#if defined paramtypes && defined paramreferences
228#define BOOST_PP_LOCAL_MACRO(n) type_list(~, n, paramtypes, paramreferences)
229#define BOOST_PP_LOCAL_LIMITS (0, MAXPARAMTYPES-1)
230#include BOOST_PP_LOCAL_ITERATE()
231#endif
232)
233{
234 Action *ToCall = ActionRegistry::getInstance().getActionByName( TOKEN ); //->clone(params);
235 //ACTION::PARAMS params;
236#if BOOST_PP_NOT_EQUAL(MAXPARAMTYPES,0)
237#define BOOST_PP_LOCAL_MACRO(n) value_print(~, n, setCurrentValue, )
238#define BOOST_PP_LOCAL_LIMITS (0, MAXPARAMTYPES-1)
239#include BOOST_PP_LOCAL_ITERATE()
240#endif
241 ToCall->call(Action::NonInteractive);
242};
243
244void BOOST_PP_CAT( COMMAND, _stringargs)(
245#if defined paramtypes && defined paramreferences
246#define BOOST_PP_LOCAL_MACRO(n) type_list(~, n, BOOST_PP_SEQ_TRANSFORM( type2string, , paramtypes), paramreferences)
247#define BOOST_PP_LOCAL_LIMITS (0, MAXPARAMTYPES-1)
248#include BOOST_PP_LOCAL_ITERATE()
249#endif
250 ) {
251 Action *ToCall = ActionRegistry::getInstance().getActionByName( TOKEN ); //->clone(params);
252 //ACTION::PARAMS params;
253#if BOOST_PP_NOT_EQUAL(MAXPARAMTYPES,0)
254#define BOOST_PP_LOCAL_MACRO(n) valuetype_print(~, n, setCurrentValueByString, )
255#define BOOST_PP_LOCAL_LIMITS (0, MAXPARAMTYPES-1)
256#include BOOST_PP_LOCAL_ITERATE()
257#endif
258 ToCall->call(MoleCuilder::Action::NonInteractive);
259};
260
261// =========== obtain parameters from Storage, used by performCall() ===========
262void ACTION::getParametersfromValueStorage() {
263#if BOOST_PP_NOT_EQUAL(MAXPARAMTYPES,0)
264#define BOOST_PP_LOCAL_MACRO(n) value_print(~, n, queryCurrentValue, params.)
265#define BOOST_PP_LOCAL_LIMITS (0, MAXPARAMTYPES-1)
266#include BOOST_PP_LOCAL_ITERATE()
267#endif
268};
269
270}
271
272// free up defines
273#undef paramtypes
274#undef paramtokens
275#undef paramreferences
276#undef MAXPARAMTYPES
277#undef statetypes
278#undef statereferences
279#undef MAXSTATETYPES
280
281#undef type2string
282#undef stringtype
283#undef initialiser_print
284#undef type_print
285#undef type_list
286#undef dialog_print
287#undef value_print
288#undef valuetype_print
289
290#undef ACTION
291#undef COMMAND
292#undef PARAMS
293#undef STATE
294#undef INSTANCE
295
296#undef ACTIONNAME
297#undef CATEGORY
298#undef TOKEN
Note: See TracBrowser for help on using the repository browser.