1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
|
/*=========================================================================
Program: ParaView
Module: pqEventDispatcher.cxx
Copyright (c) 2005-2008 Sandia Corporation, Kitware Inc.
All rights reserved.
ParaView is a free software; you can redistribute it and/or modify it
under the terms of the ParaView license version 1.2.
See License_v1.2.txt for the full ParaView license.
A copy of this license can be obtained by contacting
Kitware Inc.
28 Corporate Drive
Clifton Park, NY 12065
USA
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR
CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
=========================================================================*/
#include "pqEventDispatcher.h"
#include "pqEventPlayer.h"
#include "pqEventSource.h"
#include <QAbstractEventDispatcher>
#include <QtDebug>
#include <QApplication>
#include <QEventLoop>
#include <QThread>
#include <QDialog>
#include <QMainWindow>
#include <QList>
#include <QPointer>
#include <QTimer>
#include <iostream>
using namespace std;
namespace
{
static QList<QPointer<QTimer> > RegisteredTimers;
void processTimers()
{
foreach (QTimer* timer, RegisteredTimers)
{
if (timer && timer->isActive())
{
QTimerEvent event(timer->timerId());
qApp->notify(timer, &event);
}
}
}
static int EventPlaybackDelay = QT_TESTING_EVENT_PLAYBACK_DELAY;
};
bool pqEventDispatcher::DeferMenuTimeouts = false;
//-----------------------------------------------------------------------------
pqEventDispatcher::pqEventDispatcher(QObject* parentObject) :
Superclass(parentObject)
{
this->ActiveSource = NULL;
this->ActivePlayer = NULL;
this->PlayBackStatus = false;
this->PlayBackFinished = false;
#ifdef __APPLE__
this->BlockTimer.setInterval(1000);
#else
this->BlockTimer.setInterval(100);
#endif
this->BlockTimer.setSingleShot(true);
QObject::connect(&this->BlockTimer, SIGNAL(timeout()),
this, SLOT(playEventOnBlocking()));
}
//-----------------------------------------------------------------------------
pqEventDispatcher::~pqEventDispatcher()
{
}
//-----------------------------------------------------------------------------
void pqEventDispatcher::setEventPlaybackDelay(int milliseconds)
{
EventPlaybackDelay = (milliseconds <= 0)? 0 : milliseconds;
}
//-----------------------------------------------------------------------------
int pqEventDispatcher::eventPlaybackDelay()
{
return EventPlaybackDelay;
}
//-----------------------------------------------------------------------------
void pqEventDispatcher::registerTimer(QTimer* timer)
{
if (timer)
{
RegisteredTimers.push_back(timer);
}
}
//-----------------------------------------------------------------------------
void pqEventDispatcher::aboutToBlock()
{
// if (!pqEventDispatcher::DeferMenuTimeouts)
{
if (!this->BlockTimer.isActive())
{
// cout << "aboutToBlock" << endl;
// Request a delayed playback for an event.
this->BlockTimer.start();
}
}
}
//-----------------------------------------------------------------------------
void pqEventDispatcher::awake()
{
//if (!pqEventDispatcher::DeferMenuTimeouts)
// {
// // cout << "awake" << endl;
// // this->BlockTimer.stop();
// }
}
//-----------------------------------------------------------------------------
bool pqEventDispatcher::playEvents(pqEventSource& source, pqEventPlayer& player)
{
if (this->ActiveSource || this->ActivePlayer)
{
qCritical() << "Event dispatcher is already playing";
return false;
}
emit this->started();
this->ActiveSource = &source;
this->ActivePlayer = &player;
QApplication::setEffectEnabled(Qt::UI_General, false);
QObject::connect(QAbstractEventDispatcher::instance(), SIGNAL(aboutToBlock()),
this, SLOT(aboutToBlock()));
QObject::connect(QAbstractEventDispatcher::instance(), SIGNAL(awake()),
this, SLOT(awake()));
// This is how the playback logic works:
// * In here, we continuously keep on playing one event after another until
// we are done processing all the events.
// * If a modal dialog pops up, then this->aboutToBlock() gets called. To me
// accurate, aboutToBlock() is called everytime the sub-event loop is entered
// and more modal dialogs that loop is entered after processing of each event
// (not merely when the dialog pops up).
// * In this->aboutToBlock() we start a timer which on timeout processes just 1 event.
// * After executing that event, if the dialog still is up, them aboutToBlock() will
// be called again and the cycle continues. If not, the control returns to this main
// playback loop, and it continues.
this->PlayBackStatus = true; // success.
this->PlayBackFinished = false;
while (!this->PlayBackFinished)
{
this->playEvent();
}
this->ActiveSource = NULL;
this->ActivePlayer = NULL;
QObject::disconnect(QAbstractEventDispatcher::instance(), SIGNAL(aboutToBlock()),
this, SLOT(aboutToBlock()));
QObject::disconnect(QAbstractEventDispatcher::instance(), SIGNAL(awake()),
this, SLOT(awake()));
emit this->stopped();
return this->PlayBackStatus;
}
//-----------------------------------------------------------------------------
void pqEventDispatcher::playEventOnBlocking()
{
if (pqEventDispatcher::DeferMenuTimeouts)
{
this->BlockTimer.start();
return;
}
//cout << "---blocked event: " << endl;
// if needed for debugging, I can print blocking annotation here.
this->playEvent(1);
//if (!this->BlockTimer.isActive())
// {
// this->BlockTimer.start();
// }
}
//-----------------------------------------------------------------------------
void pqEventDispatcher::playEvent(int indent)
{
this->BlockTimer.stop();
if (this->PlayBackFinished)
{
return;
}
if (!this->ActiveSource)
{
this->PlayBackFinished = true;
this->PlayBackStatus = false; // failure.
qCritical("Internal error: playEvent called without a valid event source.");
return;
}
QString object;
QString command;
QString arguments;
int result = this->ActiveSource->getNextEvent(object, command, arguments);
if (result == pqEventSource::DONE)
{
this->PlayBackFinished = true;
return;
}
else if(result == pqEventSource::FAILURE)
{
this->PlayBackFinished = true;
this->PlayBackStatus = false; // failure.
return;
}
QApplication::syncX();
static unsigned long counter=0;
unsigned long local_counter = counter++;
QString pretty_name = object.mid(object.lastIndexOf('/'));
bool print_debug = getenv("PV_DEBUG_TEST") != NULL;
#if defined(WIN32) || defined(__APPLE__) // temporary debugging on both platforms.
print_debug = true;
#endif
if (print_debug)
{
cout << QTime::currentTime().toString("hh:mm:ss").toStdString().c_str()
<< " : "
<< QString().fill(' ', 4*indent).toStdString().c_str()
<< local_counter << ": Test (" << indent << "): "
<< pretty_name.toStdString().c_str() << ": "
<< command.toStdString().c_str() << " : "
<< arguments.toStdString().c_str() << endl;
}
bool error = false;
this->ActivePlayer->playEvent(object, command, arguments, error);
this->BlockTimer.stop();
// process any posted events. We call processEvents() so that any slots
// connected using QueuedConnection also get handled.
this->processEventsAndWait(EventPlaybackDelay);
// We explicitly timeout timers that have been registered with us.
processTimers();
this->BlockTimer.stop();
if (print_debug)
{
cout << QTime::currentTime().toString("hh:mm:ss").toStdString().c_str()
<< " : "
<< QString().fill(' ', 4*indent).toStdString().c_str()
<< local_counter << ": Done" << endl;
}
if (error)
{
this->PlayBackStatus = false;
this->PlayBackFinished = true;
return;
}
}
//-----------------------------------------------------------------------------
void pqEventDispatcher::processEventsAndWait(int ms)
{
bool prev = pqEventDispatcher::DeferMenuTimeouts;
pqEventDispatcher::DeferMenuTimeouts = true;
if (ms > 0)
{
ms = (ms < 100) ? 100 : ms;
QApplication::processEvents();
QEventLoop loop;
QTimer::singleShot(ms, &loop, SLOT(quit()));
loop.exec();
}
QApplication::processEvents();
QApplication::sendPostedEvents();
QApplication::processEvents();
pqEventDispatcher::DeferMenuTimeouts = prev;
}
//-----------------------------------------------------------------------------
void pqEventDispatcher::processEvents(QEventLoop::ProcessEventsFlags flags)
{
bool prev = pqEventDispatcher::DeferMenuTimeouts;
pqEventDispatcher::DeferMenuTimeouts = true;
QApplication::processEvents(flags);
pqEventDispatcher::DeferMenuTimeouts = prev;
}
|