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
|
---|
28 | void stopQueue();
|
---|
29 | void waitQueue();
|
---|
30 | #endif
|
---|
31 |
|
---|
32 | namespace MoleCuilder {
|
---|
33 |
|
---|
34 | class ActionHistory;
|
---|
35 | class ActionRegistry;
|
---|
36 | class 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 | */
|
---|
43 | class ActionQueue : public Singleton<ActionQueue>
|
---|
44 | {
|
---|
45 | friend class Singleton<ActionQueue>;
|
---|
46 | public:
|
---|
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 |
|
---|
129 | private:
|
---|
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 |
|
---|
179 | private:
|
---|
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_ */
|
---|