QGIS API Documentation
3.8.0-Zanzibar (11aff65)
|
QgsServerResponse Class defining response interface passed to services QgsService::executeRequest() method. More...
#include <qgsserverresponse.h>
Public Member Functions | |
QgsServerResponse ()=default | |
constructor More... | |
virtual | ~QgsServerResponse ()=default |
destructor More... | |
virtual void | clear ()=0 |
Reset all headers and content for this response. More... | |
virtual QByteArray | data () const =0 |
Gets the data written so far. More... | |
virtual void | finish ()=0 |
Finish the response, ending the transaction. More... | |
virtual void | flush ()=0 |
Flushes the current output buffer to the network. More... | |
virtual QString | header (const QString &key) const =0 |
Returns the header value. More... | |
virtual QMap< QString, QString > | headers () const =0 |
Returns the header value. More... | |
virtual bool | headersSent () const =0 |
Returns true if the headers have already been sent. More... | |
virtual QIODevice * | io ()=0 |
Returns the underlying QIODevice. More... | |
virtual void | removeHeader (const QString &key)=0 |
Clear header Undo a previous 'setHeader' call. More... | |
virtual void | sendError (int code, const QString &message)=0 |
Send error This method delegates error handling at the server level. More... | |
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 after data have been sent through the wire. More... | |
virtual void | setStatusCode (int code)=0 |
Set the http status code. More... | |
virtual int | statusCode () const =0 |
Returns the http status code. More... | |
virtual void | truncate ()=0 |
Truncate data. More... | |
virtual void | write (const QString &data) |
Write string This is a convenient method that will write directly to the underlying I/O device. More... | |
virtual qint64 | write (const QByteArray &byteArray) |
Write chunk of data This is a convenient method that will write directly to the underlying I/O device. More... | |
virtual qint64 | write (const char *data, qint64 maxsize) |
Writes at most maxSize bytes of data. More... | |
virtual qint64 | write (const char *data) |
Writes at most maxSize bytes of data. More... | |
virtual void | write (const QgsServerException &ex) |
Write server exception. More... | |
QgsServerResponse Class defining response interface passed to services QgsService::executeRequest() method.
Definition at line 42 of file qgsserverresponse.h.
|
default |
constructor
|
virtualdefault |
destructor
|
pure virtual |
Reset all headers and content for this response.
Implemented in QgsBufferServerResponse, QgsFilterResponseDecorator, and QgsFcgiServerResponse.
|
pure virtual |
Gets the data written so far.
This is implementation dependent: some implementations may not give access to the underlying and return an empty array.
Note that each call to 'flush' may empty the buffer and in case of streaming process you may get partial content
Implemented in QgsBufferServerResponse, QgsFilterResponseDecorator, and QgsFcgiServerResponse.
|
pure virtual |
Finish the response, ending the transaction.
Implemented in QgsBufferServerResponse, QgsFilterResponseDecorator, and QgsFcgiServerResponse.
|
pure virtual |
Flushes the current output buffer to the network.
'flush()' may be called multiple times. For HTTP transactions headers will be written on the first call to 'flush()'.
Implemented in QgsBufferServerResponse, QgsFilterResponseDecorator, and QgsFcgiServerResponse.
|
pure virtual |
Returns the header value.
Implemented in QgsBufferServerResponse, QgsFilterResponseDecorator, and QgsFcgiServerResponse.
|
pure virtual |
Returns the header value.
Implemented in QgsBufferServerResponse, QgsFilterResponseDecorator, and QgsFcgiServerResponse.
|
pure virtual |
Returns true
if the headers have already been sent.
Implemented in QgsBufferServerResponse, QgsFilterResponseDecorator, and QgsFcgiServerResponse.
|
pure virtual |
Returns the underlying QIODevice.
Implemented in QgsBufferServerResponse, QgsFilterResponseDecorator, and QgsFcgiServerResponse.
|
pure virtual |
Clear header Undo a previous 'setHeader' call.
Implemented in QgsBufferServerResponse, QgsFilterResponseDecorator, and QgsFcgiServerResponse.
|
pure virtual |
Send error This method delegates error handling at the server level.
This is different from calling setReturnCode() which let you return a specific response body. Calling sendError() will end the transaction and any attempt to write data or set headers will be an error.
code | HHTP return code value |
message | An informative error message |
Implemented in QgsBufferServerResponse, QgsFilterResponseDecorator, and QgsFcgiServerResponse.
|
pure virtual |
Set Header entry Add Header entry to the response Note that it is usually an error to set Header after data have been sent through the wire.
Implemented in QgsFilterResponseDecorator, QgsBufferServerResponse, and QgsFcgiServerResponse.
|
pure virtual |
Set the http status code.
code | HTTP status code value |
Implemented in QgsBufferServerResponse, QgsFilterResponseDecorator, and QgsFcgiServerResponse.
|
pure virtual |
Returns the http status code.
Implemented in QgsBufferServerResponse, QgsFilterResponseDecorator, and QgsFcgiServerResponse.
|
pure virtual |
Truncate data.
Clear internal buffer
Implemented in QgsBufferServerResponse, QgsFilterResponseDecorator, and QgsFcgiServerResponse.
|
virtual |
Write string This is a convenient method that will write directly to the underlying I/O device.
Definition at line 25 of file qgsserverresponse.cpp.
|
virtual |
Write chunk of data This is a convenient method that will write directly to the underlying I/O device.
Definition at line 38 of file qgsserverresponse.cpp.
|
virtual |
Writes at most maxSize bytes of data.
This is a convenient method that will write directly to the underlying I/O device
Definition at line 48 of file qgsserverresponse.cpp.
|
virtual |
Writes at most maxSize bytes of data.
This is a convenient method that will write directly to the underlying I/O device
Definition at line 58 of file qgsserverresponse.cpp.
|
virtual |
Write server exception.
Definition at line 68 of file qgsserverresponse.cpp.