QGIS API Documentation  3.16.0-Hannover (43b64b13f3)
qgsserverfilter.h
Go to the documentation of this file.
1 /***************************************************************************
2  qgsserverfilter.h
3  Server I/O filters class for QGIS Server for use by plugins
4  -------------------
5  begin : 2014-09-10
6  copyright : (C) 2014 by Alessandro Pasotti
7  email : a dot pasotti at itopen dot it
8  ***************************************************************************/
9 
10 /***************************************************************************
11  * *
12  * This program is free software; you can redistribute it and/or modify *
13  * it under the terms of the GNU General Public License as published by *
14  * the Free Software Foundation; either version 2 of the License, or *
15  * (at your option) any later version. *
16  * *
17  ***************************************************************************/
18 
19 
20 #ifndef QGSSERVERFILTER_H
21 #define QGSSERVERFILTER_H
22 
23 #include <QMultiMap>
24 #include "qgis_server.h"
25 #include "qgis_sip.h"
26 
27 SIP_IF_MODULE( HAVE_SERVER_PYTHON_PLUGINS )
28 
29 class QgsServerInterface;
30 
43 class SERVER_EXPORT QgsServerFilter
44 {
45 
46  public:
47 
53  QgsServerFilter( QgsServerInterface *serverInterface );
54 
55  virtual ~QgsServerFilter() = default;
56 
58  QgsServerInterface *serverInterface() { return mServerInterface; }
59 
64  virtual void requestReady();
65 
71  virtual void responseComplete();
72 
81  virtual void sendResponse();
82 
83  private:
84 
85  QgsServerInterface *mServerInterface = nullptr;
86 
87 };
88 
89 typedef QMultiMap<int, QgsServerFilter *> QgsServerFiltersMap;
90 
91 #endif // QGSSERVERFILTER_H
QgsServerFilter::~QgsServerFilter
virtual ~QgsServerFilter()=default
QgsServerFilter::serverInterface
QgsServerInterface * serverInterface()
Returns the QgsServerInterface instance.
Definition: qgsserverfilter.h:58
QgsServerFilter
Class defining I/O filters for QGIS Server and implemented in plugins.
Definition: qgsserverfilter.h:44
qgis_sip.h
SIP_IF_MODULE
#define SIP_IF_MODULE(condition)
Definition: qgis_sip.h:28
QgsServerFiltersMap
QMultiMap< int, QgsServerFilter * > QgsServerFiltersMap
Definition: qgsserverfilter.h:89
QgsServerInterface
QgsServerInterface Class defining interfaces exposed by QGIS Server and made available to plugins.
Definition: qgsserverinterface.h:61