You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

165 lines
5.1 KiB

/****************************************************************************
**
** https://www.qxorm.com/
** Copyright (C) 2013 Lionel Marty (contact@qxorm.com)
**
** This file is part of the QxOrm library
**
** This software is provided 'as-is', without any express or implied
** warranty. In no event will the authors be held liable for any
** damages arising from the use of this software
**
** Commercial Usage
** Licensees holding valid commercial QxOrm licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and Lionel Marty
**
** 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.gpl3.txt' 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
**
** If you are unsure which license is appropriate for your use, or
** if you have questions regarding the use of this file, please contact :
** contact@qxorm.com
**
****************************************************************************/
#ifdef Q_MOC_RUN
#include <QxCommon/QxConfig.h> // Need to include this file for the 'moc' process
#endif // Q_MOC_RUN
#ifdef _QX_ENABLE_QT_NETWORK
#ifndef _QX_SERVICE_THREAD_H_
#define _QX_SERVICE_THREAD_H_
#ifdef _MSC_VER
#pragma once
#endif
/*!
* \file QxThread.h
* \author Lionel Marty
* \ingroup QxService
* \brief Thread to execute a transaction of QxService module
*/
#ifdef _QX_NO_PRECOMPILED_HEADER
#ifndef Q_MOC_RUN
#include <QxPrecompiled.h> // Need to include precompiled header for the generated moc file
#endif // Q_MOC_RUN
#endif // _QX_NO_PRECOMPILED_HEADER
#ifdef QT_NO_OPENSSL
#ifndef QT_NO_SSL
#define QT_NO_SSL /* Nothing */
#endif // QT_NO_SSL
#endif // QT_NO_OPENSSL
#include <QtNetwork/qtcpsocket.h>
#ifndef QT_NO_SSL
#include <QtNetwork/qsslsocket.h>
#include <QtNetwork/qsslconfiguration.h>
#include <QtNetwork/qsslcertificate.h>
#include <QtNetwork/qsslerror.h>
#include <QtNetwork/qsslkey.h>
#endif // QT_NO_SSL
#ifndef Q_MOC_RUN
#include <QxService/QxTransaction.h>
#endif // Q_MOC_RUN
#if (QT_VERSION >= QT_VERSION_CHECK(5, 0, 0))
#define QX_TYPE_SOCKET_DESC qintptr
#else // (QT_VERSION >= QT_VERSION_CHECK(5, 0, 0))
#define QX_TYPE_SOCKET_DESC int
#endif // (QT_VERSION >= QT_VERSION_CHECK(5, 0, 0))
namespace qx {
namespace service {
class QxThreadPool;
/*!
* \ingroup QxService
* \brief qx::service::QxThread : thread to execute a transaction of QxService module
*
* <a href="https://www.qxorm.com/qxorm_en/tutorial_2.html" target="_blank">Click here to access to a tutorial to explain how to work with QxService module.</a>
*/
class QX_DLL_EXPORT QxThread : public QObject
{
Q_OBJECT
protected:
QX_TYPE_SOCKET_DESC m_iSocketDescriptor; //!< Socket descriptor to retrieve 'QTcpSocket'
QxThreadPool * m_pThreadPool; //!< Parent thread pool to set available
QThread * m_pThread; //!< Thread where this worker is executed
QxTransaction_ptr m_pTransaction; //!< Current service transaction
bool m_bIsStopped; //!< Set this flag to 'true' to terminate thread
bool m_bIsDisconnected; //!< Socket has been disconnected
QMutex m_mutex; //!< Mutex => 'QxThread' is thread-safe
public:
QxThread(QxThreadPool * pool, QThread * thread) : QObject(), m_iSocketDescriptor(0), m_pThreadPool(pool), m_pThread(thread), m_bIsStopped(false), m_bIsDisconnected(false) { qAssert(m_pThreadPool); qAssert(m_pThread); }
virtual ~QxThread() { clearData(); }
void init();
void stop();
void wait();
bool isAvailable();
void execute(QX_TYPE_SOCKET_DESC socketDescriptor);
protected:
void quit();
void clearData();
bool hasBeenStopped();
void doProcess(QTcpSocket & socket);
bool checkKeepAlive(QTcpSocket & socket);
QX_TYPE_SOCKET_DESC getSocketDescriptor();
#ifndef QT_NO_SSL
bool checkSocketSSLEncrypted(QTcpSocket * socket);
QSslSocket * initSocketSSL();
#endif // QT_NO_SSL
Q_SIGNALS:
void error(const QString & err, qx::service::QxTransaction_ptr transaction);
void transactionStarted(qx::service::QxTransaction_ptr transaction);
void transactionFinished(qx::service::QxTransaction_ptr transaction);
void customRequestHandler(qx::service::QxTransaction_ptr transaction);
void incomingConnection();
void finished();
private Q_SLOTS:
void onCustomRequestHandler();
void onIncomingConnection();
void onSocketDisconnected();
void onSocketReadyRead();
#ifndef QT_NO_SSL
#ifndef QT_NO_OPENSSL
void onSocketSSLEncrypted();
void onSocketSSLErrors(const QList<QSslError> & errors);
void onSocketSSLPeerVerifyError(const QSslError & error);
#endif // QT_NO_OPENSSL
#endif // QT_NO_SSL
};
} // namespace service
} // namespace qx
#endif // _QX_SERVICE_THREAD_H_
#endif // _QX_ENABLE_QT_NETWORK