QGIS API Documentation
3.0.2-Girona (307d082)
|
network access manager for QGIS More...
#include <qgsnetworkaccessmanager.h>
Signals | |
void | requestAboutToBeCreated (QNetworkAccessManager::Operation, const QNetworkRequest &, QIODevice *) |
void | requestCreated (QNetworkReply *) |
void | requestTimedOut (QNetworkReply *) |
Public Member Functions | |
QgsNetworkAccessManager (QObject *parent=nullptr) | |
QStringList | excludeList () const |
retrieve exclude list (urls shouldn't use the fallback proxy) More... | |
const QNetworkProxy & | fallbackProxy () const |
retrieve fall back proxy (for urls that no factory returned proxies for) More... | |
void | insertProxyFactory (QNetworkProxyFactory *factory) |
insert a factory into the proxy factories list More... | |
const QList< QNetworkProxyFactory * > | proxyFactories () const |
retrieve proxy factory list More... | |
void | removeProxyFactory (QNetworkProxyFactory *factory) |
remove a factory from the proxy factories list More... | |
void | setFallbackProxyAndExcludes (const QNetworkProxy &proxy, const QStringList &excludes) |
set fallback proxy and URL that shouldn't use it. More... | |
void | setupDefaultProxyAndCache () |
Setup the NAM according to the user's settings. More... | |
bool | useSystemProxy () const |
return whether the system proxy should be used More... | |
Static Public Member Functions | |
static QNetworkRequest::CacheLoadControl | cacheLoadControlFromName (const QString &name) |
Get QNetworkRequest::CacheLoadControl from name. More... | |
static QString | cacheLoadControlName (QNetworkRequest::CacheLoadControl control) |
Get name for QNetworkRequest::CacheLoadControl. More... | |
static QgsNetworkAccessManager * | instance () |
returns a pointer to the single instance More... | |
Protected Member Functions | |
QNetworkReply * | createRequest (QNetworkAccessManager::Operation op, const QNetworkRequest &req, QIODevice *outgoingData=nullptr) override |
network access manager for QGIS
This class implements the QGIS network access manager. It's a singleton that can be used across QGIS.
Plugins can insert proxy factories and thereby redirect requests to individual proxies.
If no proxy factories are there or none returns a proxy for an URL a fallback proxy can be set. There's also a exclude list that defines URLs that the fallback proxy should not be used for, then no proxy will be used.
Definition at line 47 of file qgsnetworkaccessmanager.h.
QgsNetworkAccessManager::QgsNetworkAccessManager | ( | QObject * | parent = nullptr | ) |
Definition at line 119 of file qgsnetworkaccessmanager.cpp.
|
static |
Get QNetworkRequest::CacheLoadControl from name.
Definition at line 263 of file qgsnetworkaccessmanager.cpp.
|
static |
Get name for QNetworkRequest::CacheLoadControl.
Definition at line 245 of file qgsnetworkaccessmanager.cpp.
|
overrideprotected |
Definition at line 169 of file qgsnetworkaccessmanager.cpp.
QStringList QgsNetworkAccessManager::excludeList | ( | ) | const |
retrieve exclude list (urls shouldn't use the fallback proxy)
Definition at line 140 of file qgsnetworkaccessmanager.cpp.
const QNetworkProxy & QgsNetworkAccessManager::fallbackProxy | ( | ) | const |
retrieve fall back proxy (for urls that no factory returned proxies for)
Definition at line 145 of file qgsnetworkaccessmanager.cpp.
void QgsNetworkAccessManager::insertProxyFactory | ( | QNetworkProxyFactory * | factory | ) |
insert a factory into the proxy factories list
Definition at line 125 of file qgsnetworkaccessmanager.cpp.
|
static |
returns a pointer to the single instance
Definition at line 105 of file qgsnetworkaccessmanager.cpp.
const QList< QNetworkProxyFactory * > QgsNetworkAccessManager::proxyFactories | ( | ) | const |
retrieve proxy factory list
Definition at line 135 of file qgsnetworkaccessmanager.cpp.
void QgsNetworkAccessManager::removeProxyFactory | ( | QNetworkProxyFactory * | factory | ) |
remove a factory from the proxy factories list
Definition at line 130 of file qgsnetworkaccessmanager.cpp.
|
signal |
|
signal |
|
signal |
void QgsNetworkAccessManager::setFallbackProxyAndExcludes | ( | const QNetworkProxy & | proxy, |
const QStringList & | excludes | ||
) |
set fallback proxy and URL that shouldn't use it.
Definition at line 150 of file qgsnetworkaccessmanager.cpp.
void QgsNetworkAccessManager::setupDefaultProxyAndCache | ( | ) |
Setup the NAM according to the user's settings.
Definition at line 284 of file qgsnetworkaccessmanager.cpp.
|
inline |
return whether the system proxy should be used
Definition at line 86 of file qgsnetworkaccessmanager.h.