summaryrefslogtreecommitdiffstats
path: root/examples/blockingmaster/masterthread.h
diff options
context:
space:
mode:
authorDenis Shienkov <denis.shienkov@gmail.com>2012-12-03 22:31:49 +0400
committerDenis Shienkov <denis.shienkov@gmail.com>2012-12-05 10:41:18 +0100
commit125a2bb81b15eb0c80c7e0aa8bf0d66d67489892 (patch)
treed7fd90b82138f6897d378db84475b2525a37f890 /examples/blockingmaster/masterthread.h
parent6cc3c66ef0f8237434bcfbc39b66ccadae949bc4 (diff)
Refactoring for BlockingMaster and BlockingSlave examples
Renamed classes and methods to a more appropriate in meaning. Change-Id: I69f1ef2fb30f3e207e506fea60eeca3195bf70ed Reviewed-by: Denis Shienkov <denis.shienkov@gmail.com>
Diffstat (limited to 'examples/blockingmaster/masterthread.h')
-rw-r--r--examples/blockingmaster/masterthread.h74
1 files changed, 74 insertions, 0 deletions
diff --git a/examples/blockingmaster/masterthread.h b/examples/blockingmaster/masterthread.h
new file mode 100644
index 00000000..d4f51f23
--- /dev/null
+++ b/examples/blockingmaster/masterthread.h
@@ -0,0 +1,74 @@
+/****************************************************************************
+**
+** Copyright (C) 2012 Denis Shienkov <scapig@yandex.ru>
+** Contact: http://www.qt-project.org/
+**
+** This file is part of the QtSerialPort module of the Qt Toolkit.
+**
+** $QT_BEGIN_LICENSE:LGPL$
+** GNU Lesser General Public License Usage
+** This file may be used under the terms of the GNU Lesser General Public
+** License version 2.1 as published by the Free Software Foundation and
+** appearing in the file LICENSE.LGPL included in the packaging of this
+** file. Please review the following information to ensure the GNU Lesser
+** General Public License version 2.1 requirements will be met:
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, Nokia gives you certain additional
+** rights. These rights are described in the Nokia Qt LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU General
+** Public License version 3.0 as published by the Free Software Foundation
+** and appearing in the file LICENSE.GPL included in the packaging of this
+** file. Please review the following information to ensure the GNU General
+** Public License version 3.0 requirements will be met:
+** http://www.gnu.org/copyleft/gpl.html.
+**
+** Other Usage
+** Alternatively, this file may be used in accordance with the terms and
+** conditions contained in a signed written agreement between you and Nokia.
+**
+**
+**
+**
+**
+**
+** $QT_END_LICENSE$
+**
+****************************************************************************/
+
+#ifndef MASTERTHREAD_H
+#define MASTERTHREAD_H
+
+#include <QThread>
+#include <QMutex>
+#include <QWaitCondition>
+
+class MasterThread : public QThread
+{
+ Q_OBJECT
+
+public:
+ MasterThread(QObject *parent = 0);
+ ~MasterThread();
+
+ void transaction(const QString &portName, int waitTimeout, const QString &request);
+ void run();
+
+signals:
+ void response(const QString &s);
+ void error(const QString &s);
+ void timeout(const QString &s);
+
+private:
+ QString portName;
+ QString request;
+ int waitTimeout;
+ QMutex mutex;
+ QWaitCondition cond;
+ bool quit;
+};
+
+#endif // MASTERTHREAD_H