source: src/Actions/ActionQueue.hpp@ caece4

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 caece4 was 74459a, checked in by Frederik Heber <heber@…>, 11 years ago

Added --disable-action-thread to allow disabling of extra run thread.

  • this removes all functionality related to having ActionQueue::run() executed in a distinct thread.
  • the extra thread is currently disabled by default as probably some stuff in QtGUI will be broken (bonds disappearing while being drawn ...)
  • Property mode set to 100644
File size: 5.2 KB
Line 
1/*
2 * ActionQueue.hpp
3 *
4 * Created on: Aug 16, 2013
5 * Author: heber
6 */
7
8#ifndef ACTIONQUEUE_HPP_
9#define ACTIONQUEUE_HPP_
10
11// include config.h
12#ifdef HAVE_CONFIG_H
13#include <config.h>
14#endif
15
16#include "CodePatterns/Singleton.hpp"
17
18
19#ifdef HAVE_ACTION_THREAD
20#include <boost/thread.hpp>
21#endif
22#include <vector>
23
24#include "Actions/Action.hpp"
25#include "Actions/ActionState.hpp"
26
27#ifdef HAVE_ACTION_THREAD
28void stopQueue();
29void waitQueue();
30#endif
31
32namespace MoleCuilder {
33
34class ActionHistory;
35class ActionRegistry;
36class ActionTrait;
37
38/** This class combines the whole handling of Actions into a single class.
39 *
40 * It spawns new Actions by its internal ActionRegistry. Spawned Actions are
41 * automatically queued and placed into a History after execution.
42 */
43class ActionQueue : public Singleton<ActionQueue>
44{
45 friend class Singleton<ActionQueue>;
46public:
47 typedef std::vector<std::string> ActionTokens_t;
48 typedef std::vector< Action * > ActionQueue_t;
49
50 /** Queues the Action with \a name to be called.
51 *
52 * \param name token of Action to actionqueue
53 * \param state whether Actions needs to be filled via a Dialog or not
54 */
55 void queueAction(const std::string &name, enum Action::QueryOptions state = Action::Interactive);
56
57 /** Queues the Action with \a name to be called.
58 *
59 * \param _action action to add
60 * \param state whether Actions needs to be filled via a Dialog or not
61 */
62 void queueAction(Action *_action, enum Action::QueryOptions state = Action::Interactive);
63
64 /** Returns the spawned action by token \a name.
65 *
66 * Action is checked into internal actionqueue.
67 *
68 * \return pointer to newly spawned action
69 */
70 Action* getActionByName(const std::string &name);
71
72 /** Checks whether the Action is known by the given \a name.
73 *
74 * \param name token of action to check
75 * \return true - token is known, false - else
76 */
77 bool isActionKnownByName(const std::string &name) const;
78
79 /** Register an Action with the ActionRegistry.
80 *
81 * \param _action action to add
82 */
83 void registerAction(Action *_action);
84
85 /** Returns the vector with the tokens of all currently known Actions.
86 *
87 * \return list of all tokens
88 */
89 const ActionTokens_t getListOfActions() const;
90
91 /** Returns the trait to an Action.
92 *
93 * \param name name of Action
94 * \return const ref to its default Trait.
95 */
96 const ActionTrait& getActionsTrait(const std::string &name) const;
97
98 /** Print the current contents of the actionqueue as CLI instantiated list of Actions.
99 *
100 * This is useful for storing the current session.
101 *
102 * \param output output stream to print to
103 */
104 void outputAsCLI(std::ostream &output) const;
105
106 /** Print the current contents of the actionqueue as Python instantiated list of Actions.
107 *
108 * This is useful for storing the current session.
109 *
110 * \param output output stream to print to
111 */
112 void outputAsPython(std::ostream &output) const;
113
114 /** Undoes last called Acfriend void ::cleanUp();tion.
115 *
116 */
117 void undoLast();
118
119 /** Redoes last undone Action.
120 *
121 */
122 void redoLast();
123
124#ifdef HAVE_ACTION_THREAD
125 boost::thread &getRunThread()
126 { return run_thread; }
127#endif
128
129private:
130 //!> grant Action access to internal history functions.
131 friend class Action;
132
133 /** Wrapper function to add state to ActionHistory.
134 *
135 * \param _Action Action whose state to add
136 * \param _state state to add
137 */
138 void addElement(Action* _Action, ActionState::ptr _state);
139
140 /** Wrapper function to clear ActionHistory.
141 *
142 */
143 void clear();
144
145#ifdef HAVE_ACTION_THREAD
146 /** Runs the ActionQueue.
147 *
148 */
149 void run();
150
151 friend void ::stopQueue();
152
153 /** Stops the internal thread.
154 *
155 */
156 void stop();
157
158 friend void ::waitQueue();
159
160 /** Wait till all currently queued actions are processed.
161 *
162 */
163 void wait();
164#endif
165
166 /** Insert an action after CurrentAction.
167 *
168 * This is implemented only to allow action's COMMAND to work. If we
169 * were to use queueAction, actions would come after all other already
170 * present actions.
171 */
172 void insertAction(Action *_action, enum Action::QueryOptions state);
173
174 /** Moves all action from tempqueue into real queue.
175 *
176 */
177 void insertTempQueue();
178
179private:
180 /** Private cstor for ActionQueue.
181 *
182 * Must be private as is singleton.
183 *
184 */
185 ActionQueue();
186
187 /** Dstor for ActionQueue.
188 *
189 */
190 ~ActionQueue();
191
192 //!> ActionRegistry to spawn new actions
193 ActionRegistry *AR;
194
195 //!> ActionHistory is for undoing and redoing actions, requires ActionRegistry fully initialized
196 ActionHistory *history;
197
198 //!> internal actionqueue of actions
199 ActionQueue_t actionqueue;
200
201 //!> point to current action in actionqueue
202 size_t CurrentAction;
203
204 //!> internal temporary actionqueue of actions used by insertAction()
205 ActionQueue_t tempqueue;
206
207#ifdef HAVE_ACTION_THREAD
208 //!> internal thread to call Actions
209 boost::thread run_thread;
210
211 //!> internal mutex to synchronize access to queue
212 boost::mutex mtx_queue;
213
214 //!> conditional variable notifying when run_thread is idling
215 boost::condition_variable cond_idle;
216
217 //!> flag indicating whether run_thread is idle or not
218 bool run_thread_isIdle;
219
220 //!> internal mutex to synchronize access to run_thread_isIdle
221 boost::mutex mtx_idle;
222#endif
223};
224
225};
226
227#endif /* ACTIONQUEUE_HPP_ */
Note: See TracBrowser for help on using the repository browser.