1 | /**************************************************************************** |
2 | ** |
3 | ** Copyright (C) 2016 The Qt Company Ltd. |
4 | ** Contact: https://www.qt.io/licensing/ |
5 | ** |
6 | ** This file is part of the QtNetwork 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 HTTP2STREAMS_P_H |
41 | #define HTTP2STREAMS_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 for the convenience |
48 | // of the Network Access API. This header file may change from |
49 | // version to version without notice, or even be removed. |
50 | // |
51 | // We mean it. |
52 | // |
53 | |
54 | #include "http2frames_p.h" |
55 | #include "hpack_p.h" |
56 | |
57 | #include <private/qhttpnetworkconnectionchannel_p.h> |
58 | #include <private/qhttpnetworkrequest_p.h> |
59 | |
60 | #include <QtCore/qglobal.h> |
61 | #include <QtCore/qstring.h> |
62 | |
63 | #include <vector> |
64 | |
65 | QT_REQUIRE_CONFIG(http); |
66 | |
67 | QT_BEGIN_NAMESPACE |
68 | |
69 | class QNonContiguousByteDevice; |
70 | |
71 | namespace Http2 |
72 | { |
73 | |
74 | struct Q_AUTOTEST_EXPORT Stream |
75 | { |
76 | enum StreamState { |
77 | idle, |
78 | open, |
79 | halfClosedLocal, |
80 | halfClosedRemote, |
81 | remoteReserved, |
82 | closed |
83 | }; |
84 | |
85 | Stream(); |
86 | // That's a ctor for a client-initiated stream: |
87 | Stream(const HttpMessagePair &message, quint32 streamID, qint32 sendSize, |
88 | qint32 recvSize); |
89 | // That's a reserved stream, created by PUSH_PROMISE from a server: |
90 | Stream(const QString &key, quint32 streamID, qint32 recvSize); |
91 | |
92 | QHttpNetworkReply *reply() const; |
93 | const QHttpNetworkRequest &request() const; |
94 | QHttpNetworkRequest &request(); |
95 | QHttpNetworkRequest::Priority priority() const; |
96 | uchar weight() const; |
97 | |
98 | QNonContiguousByteDevice *data() const; |
99 | |
100 | HttpMessagePair httpPair; |
101 | quint32 streamID = 0; |
102 | // Signed as window sizes can become negative: |
103 | qint32 sendWindow = 65535; |
104 | qint32 recvWindow = 65535; |
105 | |
106 | StreamState state = idle; |
107 | QString key; // for PUSH_PROMISE |
108 | }; |
109 | |
110 | struct PushPromise |
111 | { |
112 | quint32 reservedID = 0; |
113 | // PUSH_PROMISE has its own HEADERS, |
114 | // usually similar to what request has: |
115 | HPack::HttpHeader ; |
116 | // Response has its own (normal) HEADERS: |
117 | HPack::HttpHeader ; |
118 | // DATA frames on a promised stream: |
119 | std::vector<Frame> dataFrames; |
120 | }; |
121 | |
122 | } // namespace Http2 |
123 | |
124 | QT_END_NAMESPACE |
125 | |
126 | #endif |
127 | |
128 | |