| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232 | /*=============================================================================  Library: CTK  Copyright (c) German Cancer Research Center,    Division of Medical and Biological Informatics  Licensed under the Apache License, Version 2.0 (the "License");  you may not use this file except in compliance with the License.  You may obtain a copy of the License at    http://www.apache.org/licenses/LICENSE-2.0  Unless required by applicable law or agreed to in writing, software  distributed under the License is distributed on an "AS IS" BASIS,  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the License for the specific language governing permissions and  limitations under the License.=============================================================================*/#include "ctkEASyncThread_p.h"#include <dispatch/ctkEADefaultThreadPool_p.h>#include <dispatch/ctkEASyncMasterThread_p.h>#include <util/ctkEARendezvous_p.h>#include <util/ctkEATimeoutException_p.h>#include <QDateTime>template<class HandlerTask>class _TimeoutRunnable : public ctkEARunnable{public:  ctkEARendezvous timerBarrier;  ctkEARendezvous startBarrier;  _TimeoutRunnable(HandlerTask* task)    : task(task)  {  }  void run()  {    try    {      // notify the outer thread to start the timer      startBarrier.waitForRendezvous();      // execute the task      task->execute();      // stop the timer      timerBarrier.waitForRendezvous();    }    catch (const ctkIllegalStateException& )    {      // this can happen on shutdown, so we ignore it    }  }private:  HandlerTask* task;};template<class HandlerTask>class _RunInSyncMaster : public QRunnable{public:  _RunInSyncMaster(ctkEASyncDeliverTasks<HandlerTask>* handlerTasks,                   const QList<HandlerTask>& tasks)    : handlerTasks(handlerTasks), tasks(tasks)  {  }  void run()  {    handlerTasks->executeInSyncMaster(tasks);  }private:  ctkEASyncDeliverTasks<HandlerTask>* handlerTasks;  const QList<HandlerTask>& tasks;};template<class HandlerTask>ctkEASyncDeliverTasks<HandlerTask>::ctkEASyncDeliverTasks(  ctkEADefaultThreadPool* pool, ctkEASyncMasterThread* syncMasterThread,  long timeout, const QList<QString>& ignoreTimeout)  : pool(pool), syncMasterThread(syncMasterThread){  update(timeout, ignoreTimeout);}template<class HandlerTask>void ctkEASyncDeliverTasks<HandlerTask>::update(long timeout, const QList<QString>& ignoreTimeout){  {    QMutexLocker l(&mutex);    this->timeout = timeout;  }  if (ignoreTimeout.isEmpty())  {    QMutexLocker l(&mutex);    qDeleteAll(ignoreTimeoutMatcher);    ignoreTimeoutMatcher.clear();  }  else  {    QList<Matcher*> newMatcherList;    foreach(QString value, ignoreTimeout)    {      value = value.trimmed();      if (!value.isEmpty())      {        newMatcherList.push_back(new ClassMatcher(value));      }    }    {      QMutexLocker l(&mutex);      qDeleteAll(ignoreTimeoutMatcher);      ignoreTimeoutMatcher = newMatcherList;    }  }}template<class HandlerTask>void ctkEASyncDeliverTasks<HandlerTask>::execute(const QList<HandlerTask>& tasks){  _RunInSyncMaster<HandlerTask> runnable(this, tasks);  runnable.setAutoDelete(false);  syncMasterThread->syncRun(&runnable);}template<class HandlerTask>void ctkEASyncDeliverTasks<HandlerTask>::executeInSyncMaster(const QList<HandlerTask>& tasks){  QThread* const sleepingThread = QThread::currentThread();  ctkEASyncThread* const syncThread = qobject_cast<ctkEASyncThread*>(sleepingThread);  foreach(HandlerTask task, tasks)  {    if (!useTimeout(task))    {      // no timeout, we can directly execute      task.execute();    }    else if (syncThread != 0)    {      // if this is a cascaded event, we directly use this thread      // otherwise we could end up in a starvation      //TODO use Qt4.7 API      //long startTime = System.currentTimeMillis();      QDateTime startTime = QDateTime::currentDateTime();      task.execute();      if (startTime.time().msecsTo(QDateTime::currentDateTime().time()) > timeout)      {        task.blackListHandler();      }    }    else    {      _TimeoutRunnable<HandlerTask>* timeoutRunnable          = new _TimeoutRunnable<HandlerTask>(&task);      ctkEAScopedRunnableReference runnableRef(timeoutRunnable);      ctkEARendezvous* startBarrier = &timeoutRunnable->startBarrier;      ctkEARendezvous* timerBarrier = &timeoutRunnable->timerBarrier;      pool->executeTask(timeoutRunnable);      // we wait for the inner thread to start      startBarrier->waitForRendezvous();      // timeout handling      // we sleep for the sleep time      // if someone wakes us up it's the finished inner task      try      {        timerBarrier->waitAttemptForRendezvous(timeout);      }      catch (const ctkEATimeoutException& )      {        // if we timed out, we have to blacklist the handler        task.blackListHandler();      }    }  }}template<class HandlerTask>bool ctkEASyncDeliverTasks<HandlerTask>::useTimeout(const HandlerTask& task){  // we only check the classname if a timeout is configured  long t = 0;  {    QMutexLocker l(&mutex);    t = timeout;  }  if (t > 0)  {    QList<Matcher*> currMatcherList;    {      QMutexLocker l(&mutex);      currMatcherList = ignoreTimeoutMatcher;    }    if (!currMatcherList.isEmpty())    {      QString className = task.getHandlerClassName();      foreach(Matcher* matcher, currMatcherList)      {        if (matcher)        {          if (matcher->match(className))          {            return false;          }        }      }    }    return true;  }  return false;}
 |