1 | /**************************************************************************** |
2 | ** |
3 | ** Copyright (C) 2016 Kurt Pattyn <pattyn.kurt@gmail.com>. |
4 | ** Contact: https://www.qt.io/licensing/ |
5 | ** |
6 | ** This file is part of the QtWebSockets module of the Qt Toolkit. |
7 | ** |
8 | ** $QT_BEGIN_LICENSE:LGPL$ |
9 | ** Commercial License Usage |
10 | ** Licensees holding valid commercial Qt licenses may use this file in |
11 | ** accordance with the commercial license agreement provided with the |
12 | ** Software or, alternatively, in accordance with the terms contained in |
13 | ** a written agreement between you and The Qt Company. For licensing terms |
14 | ** and conditions see https://www.qt.io/terms-conditions. For further |
15 | ** information use the contact form at https://www.qt.io/contact-us. |
16 | ** |
17 | ** GNU Lesser General Public License Usage |
18 | ** Alternatively, this file may be used under the terms of the GNU Lesser |
19 | ** General Public License version 3 as published by the Free Software |
20 | ** Foundation and appearing in the file LICENSE.LGPL3 included in the |
21 | ** packaging of this file. Please review the following information to |
22 | ** ensure the GNU Lesser General Public License version 3 requirements |
23 | ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html. |
24 | ** |
25 | ** GNU General Public License Usage |
26 | ** Alternatively, this file may be used under the terms of the GNU |
27 | ** General Public License version 2.0 or (at your option) the GNU General |
28 | ** Public license version 3 or any later version approved by the KDE Free |
29 | ** Qt Foundation. The licenses are as published by the Free Software |
30 | ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3 |
31 | ** included in the packaging of this file. Please review the following |
32 | ** information to ensure the GNU General Public License requirements will |
33 | ** be met: https://www.gnu.org/licenses/gpl-2.0.html and |
34 | ** https://www.gnu.org/licenses/gpl-3.0.html. |
35 | ** |
36 | ** $QT_END_LICENSE$ |
37 | ** |
38 | ****************************************************************************/ |
39 | |
40 | #ifndef QWEBSOCKETDATAPROCESSOR_P_H |
41 | #define QWEBSOCKETDATAPROCESSOR_P_H |
42 | |
43 | // |
44 | // W A R N I N G |
45 | // ------------- |
46 | // |
47 | // This file is not part of the Qt API. It exists purely as an |
48 | // implementation detail. This header file may change from version to |
49 | // version without notice, or even be removed. |
50 | // |
51 | // We mean it. |
52 | // |
53 | |
54 | #include <QtCore/QObject> |
55 | #include <QtCore/QByteArray> |
56 | #include <QtCore/QString> |
57 | #include <QtCore/QTextCodec> |
58 | #include <QTimer> |
59 | #include "qwebsocketframe_p.h" |
60 | #include "qwebsocketprotocol.h" |
61 | #include "qwebsocketprotocol_p.h" |
62 | |
63 | QT_BEGIN_NAMESPACE |
64 | |
65 | class QIODevice; |
66 | class QWebSocketFrame; |
67 | |
68 | const quint64 MAX_MESSAGE_SIZE_IN_BYTES = std::numeric_limits<int>::max() - 1; |
69 | |
70 | class Q_AUTOTEST_EXPORT QWebSocketDataProcessor : public QObject |
71 | { |
72 | Q_OBJECT |
73 | Q_DISABLE_COPY(QWebSocketDataProcessor) |
74 | |
75 | public: |
76 | explicit QWebSocketDataProcessor(QObject *parent = nullptr); |
77 | ~QWebSocketDataProcessor() override; |
78 | |
79 | void setMaxAllowedFrameSize(quint64 maxAllowedFrameSize); |
80 | quint64 maxAllowedFrameSize() const; |
81 | void setMaxAllowedMessageSize(quint64 maxAllowedMessageSize); |
82 | quint64 maxAllowedMessageSize() const; |
83 | static quint64 maxMessageSize(); |
84 | static quint64 maxFrameSize(); |
85 | |
86 | Q_SIGNALS: |
87 | void pingReceived(const QByteArray &data); |
88 | void pongReceived(const QByteArray &data); |
89 | void closeReceived(QWebSocketProtocol::CloseCode closeCode, const QString &closeReason); |
90 | void textFrameReceived(const QString &frame, bool lastFrame); |
91 | void binaryFrameReceived(const QByteArray &frame, bool lastFrame); |
92 | void textMessageReceived(const QString &message); |
93 | void binaryMessageReceived(const QByteArray &message); |
94 | void errorEncountered(QWebSocketProtocol::CloseCode code, const QString &description); |
95 | |
96 | public Q_SLOTS: |
97 | bool process(QIODevice *pIoDevice); |
98 | void clear(); |
99 | |
100 | private: |
101 | enum |
102 | { |
103 | , |
104 | PS_READ_PAYLOAD_LENGTH, |
105 | PS_READ_BIG_PAYLOAD_LENGTH, |
106 | PS_READ_MASK, |
107 | PS_READ_PAYLOAD, |
108 | PS_DISPATCH_RESULT |
109 | } m_processingState; |
110 | |
111 | bool m_isFinalFrame; |
112 | bool m_isFragmented; |
113 | QWebSocketProtocol::OpCode m_opCode; |
114 | bool m_isControlFrame; |
115 | bool m_hasMask; |
116 | quint32 m_mask; |
117 | QByteArray m_binaryMessage; |
118 | QString m_textMessage; |
119 | quint64 m_payloadLength; |
120 | QTextCodec::ConverterState *m_pConverterState; |
121 | QTextCodec *m_pTextCodec; |
122 | QWebSocketFrame frame; |
123 | QTimer *m_waitTimer; |
124 | quint64 m_maxAllowedMessageSize = MAX_MESSAGE_SIZE_IN_BYTES; |
125 | |
126 | bool processControlFrame(const QWebSocketFrame &frame); |
127 | void timeout(); |
128 | }; |
129 | |
130 | QT_END_NAMESPACE |
131 | |
132 | #endif // QWEBSOCKETDATAPROCESSOR_P_H |
133 | |