source: src/Actions/ActionQueue.cpp@ fff8fc

Last change on this file since fff8fc was fff8fc, checked in by Frederik Heber <heber@…>, 10 years ago

Cleaned up use of mutexes in ActionQueue.

  • tempqueue now has its own mutex.
  • more often using lock_guard.
  • run_thread_isIdle has own mutex.
  • Property mode set to 100644
File size: 11.6 KB
RevLine 
[628577]1/*
2 * Project: MoleCuilder
3 * Description: creates and alters molecular systems
4 * Copyright (C) 2013 Frederik Heber. All rights reserved.
5 *
6 *
7 * This file is part of MoleCuilder.
8 *
9 * MoleCuilder is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation, either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * MoleCuilder is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with MoleCuilder. If not, see <http://www.gnu.org/licenses/>.
21 */
22
23/*
24 * ActionQueue.cpp
25 *
26 * Created on: Aug 16, 2013
27 * Author: heber
28 */
29
30// include config.h
31#ifdef HAVE_CONFIG_H
32#include <config.h>
33#endif
34
35#include "CodePatterns/MemDebug.hpp"
36
[1d3563]37#include "Actions/ActionQueue.hpp"
[628577]38
[690741]39#include "CodePatterns/Assert.hpp"
40#include "CodePatterns/IteratorAdaptors.hpp"
[46b181]41#include "CodePatterns/Log.hpp"
[628577]42#include "CodePatterns/Singleton_impl.hpp"
43
[415ddd]44#include <boost/date_time/posix_time/posix_time.hpp>
45#include <boost/version.hpp>
[46b181]46#include <string>
47#include <sstream>
[690741]48#include <vector>
49
[0d4168]50#include "Actions/ActionExceptions.hpp"
[6367dd]51#include "Actions/ActionHistory.hpp"
[ed3944]52#include "Actions/ActionRegistry.hpp"
[0d4168]53#include "World.hpp"
[ed3944]54
[628577]55using namespace MoleCuilder;
56
[29b52b]57const Action* ActionQueue::_lastchangedaction = NULL;
58
[ed3944]59ActionQueue::ActionQueue() :
[29b52b]60 Observable("ActionQueue"),
[6367dd]61 AR(new ActionRegistry()),
[af5384]62 history(new ActionHistory),
[a61dbb]63 CurrentAction(0),
[74459a]64#ifndef HAVE_ACTION_THREAD
[a61dbb]65 lastActionOk(true)
[74459a]66#else
[a61dbb]67 lastActionOk(true),
[23b6cf]68 run_thread_isIdle(true),
[9a4949]69 run_thread_running(false),
[23b6cf]70 run_thread(boost::bind(&ActionQueue::run, this))
[74459a]71#endif
[29b52b]72{
73 // channels of observable
74 Channels *OurChannel = new Channels;
75 NotificationChannels.insert( std::make_pair(static_cast<Observable *>(this), OurChannel) );
76 // add instance for each notification type
77 for (size_t type = 0; type < NotificationType_MAX; ++type)
78 OurChannel->addChannel(type);
79}
[628577]80
81ActionQueue::~ActionQueue()
[ed3944]82{
[74459a]83#ifdef HAVE_ACTION_THREAD
[415ddd]84 stop();
[74459a]85#endif
[415ddd]86
[7f1a1a]87 clearQueue();
[af5384]88
[6367dd]89 delete history;
[ed3944]90 delete AR;
91}
[628577]92
[f54cda]93void ActionQueue::queueAction(const std::string &name, enum Action::QueryOptions state)
[05c989]94{
[7f1a1a]95 const Action * const registryaction = AR->getActionByName(name);
96 queueAction(registryaction, state);
[f54cda]97}
98
[7f1a1a]99void ActionQueue::queueAction(const Action * const _action, enum Action::QueryOptions state)
[f54cda]100{
[af5384]101 Action *newaction = _action->clone(state);
102 newaction->prepare(state);
[74459a]103#ifdef HAVE_ACTION_THREAD
[fff8fc]104 mtx_actionqueue.lock();
[74459a]105#endif
[7fc447]106 actionqueue.push_back( newaction );
[74459a]107#ifndef HAVE_ACTION_THREAD
108 try {
109 newaction->call();
[a61dbb]110 lastActionOk = true;
[74459a]111 } catch(ActionFailureException &e) {
112 std::cerr << "Action " << *boost::get_error_info<ActionNameString>(e) << " has failed." << std::endl;
113 World::getInstance().setExitFlag(5);
[7f1a1a]114 clearQueue();
[a61dbb]115 lastActionOk = false;
116 std::cerr << "ActionQueue cleared." << std::endl;
[11d433]117 } catch (std::exception &e) {
118 pushStatus("FAIL: General exception caught, aborting.");
119 World::getInstance().setExitFlag(134);
120 clearQueue();
121 lastActionOk = false;
122 std::cerr << "ActionQueue cleared." << std::endl;
[74459a]123 }
[cfb9c5]124 if (lastActionOk) {
125 OBSERVE;
126 NOTIFY(ActionQueued);
127 _lastchangedaction = newaction;
128 }
[74459a]129#else
[23b6cf]130 const bool new_run_thread_isIdle = (CurrentAction == actionqueue.size());
[fff8fc]131 mtx_actionqueue.unlock();
[415ddd]132 {
[23b6cf]133 boost::lock_guard<boost::mutex> lock(mtx_run_thread_isIdle);
134 run_thread_isIdle = new_run_thread_isIdle;
[0d4168]135 }
[74459a]136#endif
[05c989]137}
138
[fff8fc]139bool ActionQueue::isActionQueueDone() const
140{
141#ifdef HAVE_ACTION_THREAD
142 boost::lock_guard<boost::mutex> lock(mtx_actionqueue);
143#endif
144 return (CurrentAction == actionqueue.size());
145}
146
147bool ActionQueue::isTempQueueDone() const
148{
149#ifdef HAVE_ACTION_THREAD
150 boost::lock_guard<boost::mutex> lock(mtx_tempqueue);
151#endif
152 return tempqueue.empty();
153}
154
[975b83]155void ActionQueue::insertAction(Action *_action, enum Action::QueryOptions state)
156{
[74459a]157#ifndef HAVE_ACTION_THREAD
158 queueAction(_action, state);
159#else
[415ddd]160 Action *newaction = _action->clone(state);
161 newaction->prepare(state);
162 {
[fff8fc]163 boost::lock_guard<boost::mutex> lock(mtx_tempqueue);
164 tempqueue.push_back( newaction );
165 }
166 {
167 bool new_run_thread_isIdle = getrun_thread_isIdle();
168 new_run_thread_isIdle &= isTempQueueDone();
169 setrun_thread_isIdle(new_run_thread_isIdle);
[415ddd]170 }
[74459a]171#endif
[415ddd]172}
173
[74459a]174#ifdef HAVE_ACTION_THREAD
[415ddd]175void ActionQueue::run()
176{
[9a4949]177 {
178 boost::lock_guard<boost::mutex> lock(mtx_run_thread_isIdle);
179 run_thread_running = true;
180 }
[415ddd]181 bool Interrupted = false;
182 do {
183 // sleep for some time and wait for queue to fill up again
184 try {
185#if BOOST_VERSION < 105000
[23b6cf]186 boost::this_thread::sleep(boost::get_system_time() + boost::posix_time::milliseconds(100));
[415ddd]187#else
[d93b4b3]188 boost::this_thread::sleep_for(boost::chrono::milliseconds(100));
[415ddd]189#endif
190 } catch(boost::thread_interrupted &e) {
191 LOG(2, "INFO: ActionQueue has received stop signal.");
192 Interrupted = true;
193 }
194// LOG(1, "DEBUG: Start of ActionQueue's run() loop.");
195 // call all currently present Actions
196 insertTempQueue();
[fff8fc]197 while ((!Interrupted) && (!isActionQueueDone())) {
[415ddd]198 // boost::this_thread::disable_interruption di;
[23b6cf]199 // access actionqueue, hence using mutex
[fff8fc]200 mtx_actionqueue.lock();
[415ddd]201 LOG(0, "Calling Action " << actionqueue[CurrentAction]->getName() << " ... ");
202 try {
203 actionqueue[CurrentAction]->call();
[0b6b77]204 pushStatus("SUCCESS: Action "+actionqueue[CurrentAction]->getName()+" successful.");
[a61dbb]205 lastActionOk = true;
[415ddd]206 } catch(ActionFailureException &e) {
[0b6b77]207 pushStatus("FAIL: Action "+*boost::get_error_info<ActionNameString>(e)+" has failed.");
[415ddd]208 World::getInstance().setExitFlag(5);
[7f1a1a]209 clearQueue();
[a61dbb]210 lastActionOk = false;
211 std::cerr << "ActionQueue cleared." << std::endl;
212 CurrentAction = (size_t)-1;
[11d433]213 } catch (std::exception &e) {
214 pushStatus("FAIL: General exception caught, aborting.");
215 World::getInstance().setExitFlag(134);
216 clearQueue();
217 std::cerr << "ActionQueue cleared." << std::endl;
218 CurrentAction = (size_t)-1;
[415ddd]219 }
[23b6cf]220 // remember action we juse executed
221 const Action *lastaction = actionqueue[CurrentAction];
[415ddd]222 // step on to next action and check for end
223 CurrentAction++;
224 // insert new actions (before [CurrentAction]) if they have been spawned
225 // we must have an extra vector for this, as we cannot change actionqueue
226 // while an action instance is "in-use"
[fff8fc]227 mtx_actionqueue.unlock();
228
[415ddd]229 insertTempQueue();
[fff8fc]230
[23b6cf]231 // set last action
232 if (lastActionOk) {
233 OBSERVE;
234 NOTIFY(ActionQueued);
235 _lastchangedaction = lastaction;
236 }
[415ddd]237 }
238 {
[fff8fc]239 bool new_run_thread_isIdle = isActionQueueDone();
240 new_run_thread_isIdle &= isTempQueueDone();
241 setrun_thread_isIdle(new_run_thread_isIdle);
[415ddd]242 }
243 cond_idle.notify_one();
244// LOG(1, "DEBUG: End of ActionQueue's run() loop.");
245 } while (!Interrupted);
[9a4949]246 {
247 boost::lock_guard<boost::mutex> lock(mtx_run_thread_isIdle);
248 run_thread_running = false;
249 }
[415ddd]250}
[74459a]251#endif
[415ddd]252
253void ActionQueue::insertTempQueue()
254{
[fff8fc]255#ifdef HAVE_ACTION_THREAD
256 boost::lock_guard<boost::mutex> lock(mtx_tempqueue);
257#endif
[415ddd]258 if (!tempqueue.empty()) {
[fff8fc]259#ifdef HAVE_ACTION_THREAD
260 boost::lock_guard<boost::mutex> lock(mtx_actionqueue);
261#endif
[415ddd]262 ActionQueue_t::iterator InsertionIter = actionqueue.begin();
263 std::advance(InsertionIter, CurrentAction);
264 actionqueue.insert( InsertionIter, tempqueue.begin(), tempqueue.end() );
265 tempqueue.clear();
266 }
267}
268
[74459a]269#ifdef HAVE_ACTION_THREAD
[fff8fc]270void ActionQueue::setrun_thread_isIdle(
271 const bool _run_thread_isIdle)
[415ddd]272{
[23b6cf]273 boost::unique_lock<boost::mutex> lock(mtx_run_thread_isIdle);
[fff8fc]274 run_thread_isIdle = _run_thread_isIdle;
275}
276
277bool ActionQueue::getrun_thread_isIdle() const
278{
279 boost::unique_lock<boost::mutex> lock(mtx_run_thread_isIdle);
280 return run_thread_isIdle;
281}
282#endif
283
284#ifdef HAVE_ACTION_THREAD
285void ActionQueue::wait()
286{
287 if (run_thread_running) {
288 boost::unique_lock<boost::mutex> lock(mtx_run_thread_isIdle);
[9a4949]289 while(!run_thread_isIdle)
290 {
291 cond_idle.wait(lock);
292 }
[fff8fc]293 }
[415ddd]294}
[74459a]295#endif
[415ddd]296
[74459a]297#ifdef HAVE_ACTION_THREAD
[415ddd]298void ActionQueue::stop()
299{
300 // notify actionqueue thread that we wish to terminate
301 run_thread.interrupt();
302 // wait till it ends
303 run_thread.join();
[975b83]304}
[74459a]305#endif
[975b83]306
[a6ceab]307Action* ActionQueue::getActionByName(const std::string &name)
[1d3563]308{
[ed3944]309 return AR->getActionByName(name);
[1d3563]310}
311
[a6ceab]312bool ActionQueue::isActionKnownByName(const std::string &name) const
[1d3563]313{
[ed3944]314 return AR->isActionPresentByName(name);
[1d3563]315}
316
[126867]317void ActionQueue::registerAction(Action *_action)
318{
319 AR->registerInstance(_action);
320}
321
[46b181]322void ActionQueue::outputAsCLI(std::ostream &output) const
323{
[7fc447]324 for (ActionQueue_t::const_iterator iter = actionqueue.begin();
325 iter != actionqueue.end();
[46b181]326 ++iter) {
[bad589]327 // skip store-session in printed list
[12d946]328 if ( ((*iter)->getName() != std::string("store-session"))
329 && ((*iter)->getName() != std::string("load-session"))) {
[7fc447]330 if (iter != actionqueue.begin())
[bad589]331 output << " ";
332 (*iter)->outputAsCLI(output);
333 }
[46b181]334 }
335 output << std::endl;
336}
337
[477012]338void ActionQueue::outputAsPython(std::ostream &output) const
339{
340 const std::string prefix("pyMoleCuilder");
341 output << "import " << prefix << std::endl;
[9e4655]342 output << "# ========================== Stored Session BEGIN ==========================" << std::endl;
[7fc447]343 for (ActionQueue_t::const_iterator iter = actionqueue.begin();
344 iter != actionqueue.end();
[477012]345 ++iter) {
346 // skip store-session in printed list
[12d946]347 if ( ((*iter)->getName() != std::string("store-session"))
348 && ((*iter)->getName() != std::string("load-session")))
[477012]349 (*iter)->outputAsPython(output, prefix);
350 }
[9e4655]351 output << "# =========================== Stored Session END ===========================" << std::endl;
[477012]352}
353
[a6ceab]354const ActionTrait& ActionQueue::getActionsTrait(const std::string &name) const
[690741]355{
356 // this const_cast is just required as long as we have a non-const getActionByName
357 const Action * const action = const_cast<ActionQueue *>(this)->getActionByName(name);
358 return action->Traits;
359}
360
[6367dd]361void ActionQueue::addElement(Action* _Action,ActionState::ptr _state)
362{
363 history->addElement(_Action, _state);
364}
365
366void ActionQueue::clear()
367{
368 history->clear();
369}
370
[7f1a1a]371void ActionQueue::clearQueue()
372{
373 // free all actions contained in actionqueue
[fff8fc]374 {
375#ifdef HAVE_ACTION_THREAD
376 boost::lock_guard<boost::mutex> lock(mtx_actionqueue);
377#endif
378 for (ActionQueue_t::iterator iter = actionqueue.begin();
379 !actionqueue.empty(); iter = actionqueue.begin()) {
380 delete *iter;
381 actionqueue.erase(iter);
382 }
[7f1a1a]383 }
384 // free all actions contained in tempqueue
[fff8fc]385 {
386#ifdef HAVE_ACTION_THREAD
387 boost::lock_guard<boost::mutex> lock(mtx_tempqueue);
388#endif
389 for (ActionQueue_t::iterator iter = tempqueue.begin();
390 !tempqueue.empty(); iter = tempqueue.begin()) {
391 delete *iter;
392 tempqueue.erase(iter);
393 }
[7f1a1a]394 }
[06b5df]395#ifdef HAVE_ACTION_THREAD
396 {
397 boost::unique_lock<boost::mutex> lock(mtx_idle);
398 run_thread_isIdle = true;
399 }
400#endif
[7f1a1a]401}
[6367dd]402
[690741]403const ActionQueue::ActionTokens_t ActionQueue::getListOfActions() const
404{
405 ActionTokens_t returnlist;
406
407 returnlist.insert(
408 returnlist.end(),
[ed3944]409 MapKeyConstIterator<ActionRegistry::const_iterator>(AR->getBeginIter()),
410 MapKeyConstIterator<ActionRegistry::const_iterator>(AR->getEndIter()));
[690741]411
412 return returnlist;
413}
414
[6367dd]415void ActionQueue::undoLast()
416{
417 history->undoLast();
418}
419
420void ActionQueue::redoLast()
421{
422 history->redoLast();
423}
424
425
[628577]426CONSTRUCT_SINGLETON(ActionQueue)
Note: See TracBrowser for help on using the repository browser.