QGIS API Documentation 3.41.0-Master (cea29feecf2)
Loading...
Searching...
No Matches
qgsbufferserverresponse.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsbufferserverresponse.h
3
4 Define response wrapper for storing responsea in buffer
5 -------------------
6 begin : 2017-01-03
7 copyright : (C) 2017 by David Marteau
8 email : david dot marteau at 3liz dot com
9 ***************************************************************************/
10
11/***************************************************************************
12 * *
13 * This program is free software; you can redistribute it and/or modify *
14 * it under the terms of the GNU General Public License as published by *
15 * the Free Software Foundation; either version 2 of the License, or *
16 * (at your option) any later version. *
17 * *
18 ***************************************************************************/
19#ifndef QGSBUFFERSERVERRESPONSE_H
20#define QGSBUFFERSERVERRESPONSE_H
21
22#include "qgis_server.h"
23#include "qgis_sip.h"
24#include "qgsserverresponse.h"
25
26#include <QBuffer>
27#include <QByteArray>
28#include <QMap>
29#include <QString>
30
36class SERVER_EXPORT QgsBufferServerResponse : public QgsServerResponse
37{
38 public:
41
47 void setHeader( const QString &key, const QString &value ) override;
48
53 void removeHeader( const QString &key ) override;
54
58 QString header( const QString &key ) const override;
59
63 QMap<QString, QString> headers() const override { return mHeaders; }
64
68 bool headersSent() const override;
69
74 void setStatusCode( int code ) override;
75
79 int statusCode() const override { return mStatusCode; }
80
90 void sendError( int code, const QString &message ) override;
91
95 QIODevice *io() override;
96
100 void finish() override;
101
108 void flush() override;
109
113 void clear() override;
114
124 QByteArray data() const override;
125
131 void truncate() override;
132
136 QByteArray body() const { return mBody; }
137
138
139 private:
140#ifdef SIP_RUN
142#endif
143
144 QMap<QString, QString> mHeaders;
145 QBuffer mBuffer;
146 QByteArray mBody;
147 bool mFinished = false;
148 bool mHeadersSent = false;
149 int mStatusCode = 200;
150};
151
152#endif
Class defining buffered response.
QMap< QString, QString > headers() const override
Returns all the headers.
QgsBufferServerResponse(const QgsBufferServerResponse &)=delete
QByteArray body() const
Returns body.
int statusCode() const override
Returns the http status code.
QgsServerResponse Class defining response interface passed to services QgsService::executeRequest() m...
virtual void removeHeader(const QString &key)=0
Clear header Undo a previous 'setHeader' call.
virtual void truncate()=0
Truncate data.
virtual void flush()
Flushes the current output buffer to the network.
virtual QByteArray data() const =0
Gets the data written so far.
virtual void setHeader(const QString &key, const QString &value)=0
Set Header entry Add Header entry to the response Note that it is usually an error to set Header afte...
virtual void clear()=0
Reset all headers and content for this response.
virtual void finish()
Finish the response, ending the transaction.
virtual bool headersSent() const =0
Returns true if the headers have already been sent.
virtual void sendError(int code, const QString &message)=0
Send error This method delegates error handling at the server level.
virtual QIODevice * io()=0
Returns the underlying QIODevice.
virtual QString header(const QString &key) const =0
Returns the header value.
virtual void setStatusCode(int code)=0
Set the http status code.
#define SIP_FORCE
Definition qgis_sip.h:131