QGIS API Documentation 3.37.0-Master (fdefdf9c27f)
qgsserverinterfaceimpl.h
Go to the documentation of this file.
1/***************************************************************************
2 qgsseerversinterface.h
3 Interface class for exposing functions in 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#ifndef QGSSERVERINTERFACEIMPL_H
20#define QGSSERVERINTERFACEIMPL_H
21
22#define SIP_NO_FILE
23
24
25#include "qgsserverinterface.h"
28
34class SERVER_EXPORT QgsServerInterfaceImpl : public QgsServerInterface
35{
36 public:
37
40 QgsServiceRegistry *srvRegistry,
41 QgsServerSettings *serverSettings );
42
43
44 ~QgsServerInterfaceImpl() override;
45
46 void setRequestHandler( QgsRequestHandler *requestHandler ) override;
47 void clearRequestHandler() override;
48 QgsCapabilitiesCache *capabilitiesCache() override { return mCapabilitiesCache; }
50 QgsRequestHandler *requestHandler() override { return mRequestHandler; }
51 void registerFilter( QgsServerFilter *filter, int priority = 0 ) override;
52 QgsServerFiltersMap filters() override { return mFilters; }
53
55 void registerAccessControl( QgsAccessControlFilter *accessControl, int priority = 0 ) override;
56
61 QgsAccessControl *accessControls() const override { return mAccessControls; }
62
63
70 void registerServerCache( QgsServerCacheFilter *serverCache SIP_TRANSFER, int priority = 0 ) override;
71
77 QgsServerCacheManager *cacheManager() const override;
78
79 QString getEnv( const QString &name ) const override;
80 QString configFilePath() override { return mConfigFilePath; }
81 void setConfigFilePath( const QString &configFilePath ) override;
82 void setFilters( QgsServerFiltersMap *filters ) override;
83 void removeConfigCacheEntry( const QString &path ) override;
84
86
88
89 void reloadSettings() override;
90
91 private:
92
93 QString mConfigFilePath;
94 QgsServerFiltersMap mFilters;
95 QgsAccessControl *mAccessControls = nullptr;
96 QgsServerCacheManager *mCacheManager = nullptr;
97 QgsCapabilitiesCache *mCapabilitiesCache = nullptr;
98 QgsRequestHandler *mRequestHandler = nullptr;
99 QgsServiceRegistry *mServiceRegistry = nullptr;
100 QgsServerSettings *mServerSettings = nullptr;
101
102};
103
104#endif // QGSSERVERINTERFACEIMPL_H
Class defining 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)
This class is an interface hiding the details of reading input and writing output from/to a wms reque...
Class defining cache interface for QGIS Server plugins.
A helper class that centralizes caches accesses given by all the server cache filter plugins.
Class defining I/O filters for QGIS Server and implemented in plugins.
Interfaces exposed by QGIS Server and made available to plugins.
QgsRequestHandler * requestHandler() override
Returns the QgsRequestHandler, to be used only in server plugins.
QgsServerFiltersMap filters() override
Returns the list of current QgsServerFilter.
QgsCapabilitiesCache * capabilitiesCache() override
Gets pointer to the capabiblities cache.
QString configFilePath() override
Returns the configuration file path.
QgsAccessControl * accessControls() const override
Gets the helper over all the registered access control filters.
QgsServerInterface Class defining 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 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 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 void setFilters(QgsServerFiltersMap *filters)=0
Set the filters map.
virtual QgsServerSettings * serverSettings()=0
Returns the server settings.
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,...
QgsServiceRegistry Class defining the registry manager for QGIS server services.
#define SIP_TRANSFER
Definition: qgis_sip.h:36
QMultiMap< int, QgsServerFilter * > QgsServerFiltersMap