QGIS API Documentation 3.43.0-Master (37eec98dbf6)
qgsserverinterface.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsserverinterface.h
3
4 Class defining the interface made available to QGIS Server plugins.
5 -------------------
6 begin : 2014-09-10
7 copyright : (C) 2014 by Alessandro Pasotti
8 email : a dot pasotti at itopen dot it
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
20
21#ifndef QGSSERVERINTERFACE_H
22#define QGSSERVERINTERFACE_H
23
24#include "qgsconfig.h"
25#include "qgis_sip.h"
27#include "qgsrequesthandler.h"
28#include "qgsserverfilter.h"
29#include "qgsserversettings.h"
30#ifdef HAVE_SERVER_PYTHON_PLUGINS
32#include "qgsaccesscontrol.h"
35#else
40#endif
41#include "qgsserviceregistry.h"
42#include "qgis_server.h"
43
44SIP_IF_MODULE( HAVE_SERVER_PYTHON_PLUGINS )
45
46
47
58class SERVER_EXPORT QgsServerInterface
59{
60 public:
63
64 virtual ~QgsServerInterface() = default;
65
71 virtual void setRequestHandler( QgsRequestHandler *requestHandler ) = 0 SIP_SKIP;
72
78 virtual void clearRequestHandler() = 0 SIP_SKIP;
79
85
91
97 virtual void registerFilter( QgsServerFilter *filter SIP_TRANSFER, int priority = 0 ) = 0;
98
103 virtual void setFilters( QgsServerFiltersMap *filters SIP_TRANSFER ) = 0;
104
110
116 virtual void registerAccessControl( QgsAccessControlFilter *accessControl SIP_TRANSFER, int priority = 0 ) = 0;
117
119 virtual QgsAccessControl *accessControls() const = 0;
120
127 virtual void registerServerCache( QgsServerCacheFilter *serverCache SIP_TRANSFER, int priority = 0 ) = 0;
128
134
136 virtual QString getEnv( const QString &name ) const = 0;
137
142 virtual QString configFilePath() = 0;
143
148 virtual void setConfigFilePath( const QString &configFilePath ) = 0;
149
154 virtual void removeConfigCacheEntry( const QString &path ) = 0;
155
161
169
175 virtual void reloadSettings() = 0;
176
177 private:
178#ifdef SIP_RUN
180#endif
181
182 QString mConfigFilePath;
183};
184
185#endif // QGSSERVERINTERFACE_H
Defines access control interface for QGIS Server plugins.
A helper class that centralizes restrictions given by all the access control filter plugins.
A cache for capabilities xml documents (by configuration file path).
An interface hiding the details of reading input and writing output from/to a wms request mechanism.
Defines cache interface for QGIS Server plugins.
A helper class that centralizes caches accesses given by all the server cache filter plugins.
Defines I/O filters for QGIS Server and implemented in plugins.
Defines interfaces exposed by QGIS Server and made available to plugins.
virtual QgsServiceRegistry * serviceRegistry()=0
Returns the service registry.
virtual void removeConfigCacheEntry(const QString &path)=0
Remove entry from config cache.
virtual void setConfigFilePath(const QString &configFilePath)=0
Set the configuration file path.
virtual QgsRequestHandler * requestHandler()=0
Gets pointer to the request handler.
virtual void registerServerCache(QgsServerCacheFilter *serverCache, int priority=0)=0
Register a server cache filter.
virtual void reloadSettings()=0
Reloads the server settings re-reading the configuration.
virtual QgsServerFiltersMap filters()=0
Returns the list of current QgsServerFilter.
virtual ~QgsServerInterface()=default
virtual QgsServerCacheManager * cacheManager() const =0
Gets the registered server cache filters.
virtual void registerAccessControl(QgsAccessControlFilter *accessControl, int priority=0)=0
Register an access control filter.
virtual void clearRequestHandler()=0
Clear the request handler.
virtual QString configFilePath()=0
Returns the configuration file path.
virtual void setFilters(QgsServerFiltersMap *filters)=0
Set the filters map.
virtual QgsAccessControl * accessControls() const =0
Gets the registered access control filters.
virtual QgsServerSettings * serverSettings()=0
Returns the server settings.
virtual QgsCapabilitiesCache * capabilitiesCache()=0
Gets pointer to the capabiblities cache.
virtual void registerFilter(QgsServerFilter *filter, int priority=0)=0
Register a QgsServerFilter.
virtual void setRequestHandler(QgsRequestHandler *requestHandler)=0
Set the request handler.
virtual QString getEnv(const QString &name) const =0
Returns an enrironment variable, used to pass environment variables to Python.
Provides a way to retrieve settings by prioritizing according to environment variables,...
A registry manager for QGIS server services.
#define SIP_IF_MODULE(condition)
Definition qgis_sip.h:28
#define SIP_KEEPREFERENCE
Definition qgis_sip.h:86
#define SIP_SKIP
Definition qgis_sip.h:126
#define SIP_TRANSFER
Definition qgis_sip.h:36
QMultiMap< int, QgsServerFilter * > QgsServerFiltersMap