QGIS API Documentation 3.41.0-Master (af5edcb665c)
Loading...
Searching...
No Matches
qgsfcgiserverresponse.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsfcgiserverresponse.h
3
4 Define response wrapper for fcgi response
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 QGSFCGISERVERRESPONSE_H
20#define QGSFCGISERVERRESPONSE_H
21
22#define SIP_NO_FILE
23
24
25#include "qgsserverrequest.h"
26#include "qgsserverresponse.h"
27
28#include <QBuffer>
29#include <QThread>
30
37class QgsSocketMonitoringThread : public QThread
38{
39 Q_OBJECT
40
41 public:
47 QgsSocketMonitoringThread( bool *isResponseFinished, QgsFeedback *feedback );
48 void run();
49
50 private:
51 bool *mIsResponseFinished = nullptr;
52 QgsFeedback *mFeedback = nullptr;
53 int mIpcFd = -1;
54};
55
61class SERVER_EXPORT QgsFcgiServerResponse : public QgsServerResponse
62{
63 public:
69 virtual ~QgsFcgiServerResponse();
70
71 void setHeader( const QString &key, const QString &value ) override;
72
73 void removeHeader( const QString &key ) override;
74
75 QString header( const QString &key ) const override;
76
77 QMap<QString, QString> headers() const override { return mHeaders; }
78
79 bool headersSent() const override;
80
81 void setStatusCode( int code ) override;
82
83 int statusCode() const override { return mStatusCode; }
84
85 void sendError( int code, const QString &message ) override;
86
87 QIODevice *io() override;
88
89 void finish() override;
90
91 void flush() override;
92
93 void clear() override;
94
95 QByteArray data() const override;
96
97 void truncate() override;
98
102 void setDefaultHeaders();
103
108 QgsFeedback *feedback() const override { return mFeedback.get(); }
109
110 private:
111 QMap<QString, QString> mHeaders;
112 QBuffer mBuffer;
113 bool mFinished = false;
114 bool mHeadersSent = false;
116 int mStatusCode = 0;
117
118 std::unique_ptr<QgsSocketMonitoringThread> mSocketMonitoringThread;
119 std::unique_ptr<QgsFeedback> mFeedback;
120};
121
122#endif
Class defining fcgi response.
QgsFeedback * feedback() const override
Returns socket feedback if any.
QMap< QString, QString > headers() const override
Returns the header value.
int statusCode() const override
Returns the http status code.
Base class for feedback objects to be used for cancellation of something running in a worker thread.
Definition qgsfeedback.h:44
Method
HTTP Method (or equivalent) used for the request.
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.
Thread used to monitor the fcgi socket.