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
|
/****************************************************************************
**
** Copyright (C) 1992-2008 Trolltech ASA. All rights reserved.
**
** This file is part of an example program for Qt. This example
** program may be used, distributed and modified without limitation.
**
*****************************************************************************/
#include <qapplication.h>
#include <qwidget.h>
#include <qpushbutton.h>
#include <qmultilineedit.h>
#include <qthread.h>
#include <qsemaphore.h>
#include <qmutex.h>
#include <qlayout.h>
#include <qmessagebox.h>
#include <qlabel.h>
#if defined(QT_NO_THREAD)
# error Thread support not enabled.
#endif
// Use pointers to create semaphores after QApplication object!
QSemaphore* yellowSem, *greenSem;
class YellowThread : public QThread
{
public:
YellowThread(QWidget *o)
: receiver(o), stopped(FALSE)
{ ; }
void run();
void stop();
private:
QWidget *receiver;
QMutex mutex;
bool stopped;
};
void YellowThread::run()
{
for (int i = 0; i < 20; i++) {
(*yellowSem)++;
QCustomEvent *event = new QCustomEvent(12345);
event->setData(new QString("Yellow!"));
QApplication::postEvent(receiver, event);
msleep(200);
(*greenSem)--;
mutex.lock();
if (stopped) {
stopped = FALSE;
mutex.unlock();
break;
}
mutex.unlock();
}
(*yellowSem)++;
QCustomEvent *event = new QCustomEvent(12346);
event->setData(new QString("Yellow!"));
QApplication::postEvent(receiver, event);
(*greenSem)--;
}
void YellowThread::stop()
{
mutex.lock();
stopped = TRUE;
mutex.unlock();
}
class GreenThread: public QThread
{
public:
GreenThread(QWidget *o)
: receiver(o), stopped( FALSE )
{ ; }
void run();
void stop();
private:
QWidget *receiver;
QMutex mutex;
bool stopped;
};
void GreenThread::run()
{
for (int i = 0; i < 20; i++) {
(*greenSem)++;
QCustomEvent *event = new QCustomEvent(12345);
event->setData(new QString("Green!"));
QApplication::postEvent(receiver, event);
msleep(200);
(*yellowSem)--;
mutex.lock();
if (stopped) {
stopped = FALSE;
mutex.unlock();
break;
}
mutex.unlock();
}
(*greenSem)++;
QCustomEvent *event = new QCustomEvent(12346);
event->setData(new QString("Green!"));
QApplication::postEvent(receiver, event);
msleep(10);
(*yellowSem)--;
}
void GreenThread::stop()
{
mutex.lock();
stopped = TRUE;
mutex.unlock();
}
class SemaphoreExample : public QWidget
{
Q_OBJECT
public:
SemaphoreExample();
~SemaphoreExample();
void customEvent(QCustomEvent *);
public slots:
void startExample();
protected:
private:
QMultiLineEdit *mlineedit;
QPushButton *button;
QLabel *label;
YellowThread yellowThread;
GreenThread greenThread;
};
SemaphoreExample::SemaphoreExample()
: QWidget(), yellowThread(this), greenThread(this)
{
yellowSem = new QSemaphore(1);
greenSem = new QSemaphore(1);
button = new QPushButton("&Ignition!", this);
connect(button, SIGNAL(clicked()), SLOT(startExample()));
mlineedit = new QMultiLineEdit(this);
label = new QLabel(this);
QVBoxLayout *vbox = new QVBoxLayout(this, 5);
vbox->addWidget(button);
vbox->addWidget(mlineedit);
vbox->addWidget(label);
}
SemaphoreExample::~SemaphoreExample()
{
bool stopYellow = yellowThread.running(),
stopGreen = greenThread.running();
if (stopYellow)
yellowThread.stop();
if (greenThread.running())
greenThread.stop();
if (stopYellow)
yellowThread.wait();
if (stopGreen)
greenThread.wait();
delete yellowSem;
delete greenSem;
}
void SemaphoreExample::startExample()
{
if (yellowThread.running() || greenThread.running()) {
QMessageBox::information(this, "Sorry",
"The threads have not completed yet, and must finish before "
"they can be started again.");
return;
}
mlineedit->clear();
while (yellowSem->available() < yellowSem->total()) (*yellowSem)--;
(*yellowSem)++;
yellowThread.start();
greenThread.start();
}
void SemaphoreExample::customEvent(QCustomEvent *event) {
switch (event->type()) {
case 12345:
{
QString *s = (QString *) event->data();
mlineedit->append(*s);
if (*s == "Green!")
label->setBackgroundColor(green);
else
label->setBackgroundColor(yellow);
label->setText(*s);
delete s;
break;
}
case 12346:
{
QString *s = (QString *) event->data();
QMessageBox::information(this, (*s) + " - Finished",
"The thread creating the \"" + *s +
"\" events has finished.");
delete s;
break;
}
default:
{
qWarning("Unknown custom event type: %d", event->type());
}
}
}
int main(int argc, char **argv)
{
QApplication app(argc, argv);
SemaphoreExample se;
app.setMainWidget(&se);
se.show();
return app.exec();
}
#include "main.moc"
|