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
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
|
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
#include <QtHttpServer/qhttpserverresponder.h>
#include <QtHttpServer/qhttpserverrequest.h>
#include <QtHttpServer/qhttpserverresponse.h>
#include <private/qhttpserverresponder_p.h>
#include <private/qhttpserverliterals_p.h>
#include <private/qhttpserverrequest_p.h>
#include <private/qhttpserverresponse_p.h>
#include <private/qhttpserverstream_p.h>
#include <QtCore/qjsondocument.h>
#include <QtCore/qloggingcategory.h>
#include <memory>
QT_BEGIN_NAMESPACE
/*!
\class QHttpServerResponder
\since 6.4
\inmodule QtHttpServer
\brief API for sending replies from an HTTP server.
Provides functions for writing back to an HTTP client with overloads for
serializing JSON objects. It also has support for writing HTTP headers and
status code.
*/
/*!
\enum QHttpServerResponder::StatusCode
HTTP status codes
\value Continue
\value SwitchingProtocols
\value Processing
\value Ok
\value Created
\value Accepted
\value NonAuthoritativeInformation
\value NoContent
\value ResetContent
\value PartialContent
\value MultiStatus
\value AlreadyReported
\value IMUsed
\value MultipleChoices
\value MovedPermanently
\value Found
\value SeeOther
\value NotModified
\value UseProxy
\value TemporaryRedirect
\value PermanentRedirect
\value BadRequest
\value Unauthorized
\value PaymentRequired
\value Forbidden
\value NotFound
\value MethodNotAllowed
\value NotAcceptable
\value ProxyAuthenticationRequired
\value RequestTimeout
\value Conflict
\value Gone
\value LengthRequired
\value PreconditionFailed
\value PayloadTooLarge
\value UriTooLong
\value UnsupportedMediaType
\value RequestRangeNotSatisfiable
\value ExpectationFailed
\value ImATeapot
\value MisdirectedRequest
\value UnprocessableEntity
\value Locked
\value FailedDependency
\value UpgradeRequired
\value PreconditionRequired
\value TooManyRequests
\value RequestHeaderFieldsTooLarge
\value UnavailableForLegalReasons
\value InternalServerError
\value NotImplemented
\value BadGateway
\value ServiceUnavailable
\value GatewayTimeout
\value HttpVersionNotSupported
\value VariantAlsoNegotiates
\value InsufficientStorage
\value LoopDetected
\value NotExtended
\value NetworkAuthenticationRequired
\value NetworkConnectTimeoutError
*/
/*!
\internal
*/
QHttpServerResponderPrivate::QHttpServerResponderPrivate(QHttpServerStream *stream) : stream(stream)
{
Q_ASSERT(stream);
stream->startHandlingRequest();
}
/*!
\internal
*/
QHttpServerResponderPrivate::~QHttpServerResponderPrivate()
{
Q_ASSERT(stream);
stream->responderDestroyed();
}
/*!
\internal
*/
void QHttpServerResponderPrivate::write(QHttpServerResponder::StatusCode status)
{
Q_ASSERT(stream);
stream->write(status, m_streamId);
}
/*!
\internal
*/
void QHttpServerResponderPrivate::write(const QByteArray &body, const QHttpHeaders &headers,
QHttpServerResponder::StatusCode status)
{
Q_ASSERT(stream);
stream->write(body, headers, status, m_streamId);
}
/*!
\internal
*/
void QHttpServerResponderPrivate::write(QIODevice *data, const QHttpHeaders &headers,
QHttpServerResponder::StatusCode status)
{
Q_ASSERT(stream);
stream->write(data, headers, status, m_streamId);
}
/*!
\internal
*/
void QHttpServerResponderPrivate::writeBeginChunked(const QHttpHeaders &headers,
QHttpServerResponder::StatusCode status)
{
Q_ASSERT(stream);
stream->writeBeginChunked(headers, status, m_streamId);
}
/*!
\internal
*/
void QHttpServerResponderPrivate::writeChunk(const QByteArray &data)
{
Q_ASSERT(stream);
stream->writeChunk(data, m_streamId);
}
/*!
\internal
*/
void QHttpServerResponderPrivate::writeEndChunked(const QByteArray &data,
const QHttpHeaders &trailers)
{
Q_ASSERT(stream);
stream->writeEndChunked(data, trailers, m_streamId);
}
/*!
Constructs a QHttpServerResponder instance using a \a stream
to output the response to.
*/
QHttpServerResponder::QHttpServerResponder(QHttpServerStream *stream)
: d_ptr(new QHttpServerResponderPrivate(stream))
{
Q_ASSERT(stream);
}
/*!
\fn QHttpServerResponder::QHttpServerResponder(QHttpServerResponder &&other)
Move-constructs a QHttpServerResponder instance, making it point
at the same object that \a other was pointing to.
*/
/*!
Destroys a QHttpServerResponder.
*/
QHttpServerResponder::~QHttpServerResponder()
{
delete d_ptr;
};
/*!
\fn void QHttpServerResponder::swap(QHttpServerResponder &other) noexcept
Swaps QHttpServerResponder \a other with this QHttpServerResponder.
This operation is very fast and never fails.
\since 6.8
*/
/*!
Answers a request with an HTTP status code \a status and
HTTP headers \a headers. The I/O device \a data provides the body
of the response. If \a data is sequential, the body of the
message is sent in chunks: otherwise, the function assumes all
the content is available and sends it all at once but the read
is done in chunks.
\note This function takes the ownership of \a data.
*/
void QHttpServerResponder::write(QIODevice *data,
const QHttpHeaders &headers,
StatusCode status)
{
Q_D(QHttpServerResponder);
d->write(data, headers, status);
}
/*!
Answers a request with an HTTP status code \a status and a
MIME type \a mimeType. The I/O device \a data provides the body
of the response. If \a data is sequential, the body of the
message is sent in chunks: otherwise, the function assumes all
the content is available and sends it all at once but the read
is done in chunks.
\note This function takes the ownership of \a data.
*/
void QHttpServerResponder::write(QIODevice *data,
const QByteArray &mimeType,
StatusCode status)
{
QHttpHeaders headers;
headers.append(QHttpHeaders::WellKnownHeader::ContentType, mimeType);
write(data, headers, status);
}
/*!
Answers a request with an HTTP status code \a status, JSON
document \a document and HTTP headers \a headers.
Note: This function sets HTTP Content-Type header as
\c{"application/json"}.
*/
void QHttpServerResponder::write(const QJsonDocument &document,
const QHttpHeaders &headers,
StatusCode status)
{
Q_D(QHttpServerResponder);
const QByteArray &json = document.toJson();
QHttpHeaders allHeaders(headers);
allHeaders.append(QHttpHeaders::WellKnownHeader::ContentType,
QHttpServerLiterals::contentTypeJson());
allHeaders.append(QHttpHeaders::WellKnownHeader::ContentLength,
QByteArray::number(json.size()));
d->write(document.toJson(), allHeaders, status);
}
/*!
Answers a request with an HTTP status code \a status, and JSON
document \a document.
Note: This function sets HTTP Content-Type header as
\c{"application/json"}.
*/
void QHttpServerResponder::write(const QJsonDocument &document,
StatusCode status)
{
write(document, {}, status);
}
/*!
Answers a request with an HTTP status code \a status,
HTTP Headers \a headers and a body \a data.
Note: This function sets HTTP Content-Length header.
*/
void QHttpServerResponder::write(const QByteArray &data,
const QHttpHeaders &headers,
StatusCode status)
{
Q_D(QHttpServerResponder);
QHttpHeaders allHeaders(headers);
allHeaders.append(QHttpHeaders::WellKnownHeader::ContentLength,
QByteArray::number(data.size()));
d->write(data, allHeaders, status);
}
/*!
Answers a request with an HTTP status code \a status, a
MIME type \a mimeType and a body \a data.
*/
void QHttpServerResponder::write(const QByteArray &data,
const QByteArray &mimeType,
StatusCode status)
{
QHttpHeaders headers;
headers.append(QHttpHeaders::WellKnownHeader::ContentType, mimeType);
write(data, headers, status);
}
/*!
Answers a request with an HTTP status code \a status.
Note: This function sets HTTP Content-Type header as
\c{"application/x-empty"}.
*/
void QHttpServerResponder::write(StatusCode status)
{
write(QByteArray(), QHttpServerLiterals::contentTypeXEmpty(), status);
}
/*!
Answers a request with an HTTP status code \a status and
HTTP Headers \a headers.
*/
void QHttpServerResponder::write(const QHttpHeaders &headers, StatusCode status)
{
write(QByteArray(), headers, status);
}
/*!
Sends a HTTP \a response to the client.
\since 6.5
*/
void QHttpServerResponder::sendResponse(const QHttpServerResponse &response)
{
Q_D(QHttpServerResponder);
const auto &r = response.d_ptr;
QHttpHeaders allHeaders(r->headers);
allHeaders.append(QHttpHeaders::WellKnownHeader::ContentLength,
QByteArray::number(r->data.size()));
d->write(r->data, allHeaders, r->statusCode);
}
/*!
Start sending chunks of data with \a headers and and the status
code \a status. This call must be followed up with an arbitrary
number of repeated \c writeChunk calls and and a single call to
\c writeEndChunked.
\since 6.8
\sa writeChunk, writeEndChunked
*/
void QHttpServerResponder::writeBeginChunked(const QHttpHeaders &headers, StatusCode status)
{
Q_D(QHttpServerResponder);
d->writeBeginChunked(headers, status);
}
/*!
Start sending chunks of data with the mime type \a mimeType and
and the given status code \a status. This call must be followed
up with an arbitrary number of repeated \c writeChunk calls and
and a single call to \c writeEndChunked.
\since 6.8
\sa writeChunk, writeEndChunked
*/
void QHttpServerResponder::writeBeginChunked(const QByteArray &mimeType, StatusCode status)
{
QHttpHeaders headers;
headers.append(QHttpHeaders::WellKnownHeader::ContentType, mimeType);
writeBeginChunked(headers, status);
}
/*!
Start sending chunks of data with \a headers and and the given
status code \a status. This call must be followed up with an
arbitrary number of repeated \c writeChunk calls and and a single
call to \c writeEndChunked with the same trailers given in
\a trailers.
\since 6.8
\sa writeChunk, writeEndChunked
*/
void QHttpServerResponder::writeBeginChunked(const QHttpHeaders &headers,
QList<QHttpHeaders::WellKnownHeader> trailers,
StatusCode status)
{
QHttpHeaders allHeaders(headers);
QByteArray trailerList;
for (qsizetype i = 0; i < trailers.size(); ++i) {
if (i != 0)
trailerList.append(", ");
trailerList.append(QHttpHeaders::wellKnownHeaderName(trailers[i]).toByteArray());
}
allHeaders.append(QHttpHeaders::WellKnownHeader::Trailer, trailerList);
writeBeginChunked(allHeaders, status);
}
/*!
Write \a data back to the client. To be called when data is
available to write. This can be called multiple times, but before
calling this \c writeBeginChunked must called, and afterwards
\c writeEndChunked must be called.
\sa writeBeginChunked, writeEndChunked
\since 6.8
*/
void QHttpServerResponder::writeChunk(const QByteArray &data)
{
Q_D(QHttpServerResponder);
d->writeChunk(data);
}
/*!
Write \a data back to the client with the \a trailers
announced in \c writeBeginChunked.
\since 6.8
\sa writeBeginChunked, writeChunk
*/
void QHttpServerResponder::writeEndChunked(const QByteArray &data, const QHttpHeaders &trailers)
{
Q_D(QHttpServerResponder);
d->writeEndChunked(data, trailers);
}
/*!
Write \a data back to the client. Must be preceded
by a call to \c writeBeginChunked.
\since 6.8
\sa writeBeginChunked, writeChunk
*/
void QHttpServerResponder::writeEndChunked(const QByteArray &data)
{
writeEndChunked(data, {});
}
QT_END_NAMESPACE
|