QGIS API Documentation
3.4.15-Madeira (e83d02e274)
|
network access manager for QGISThis class implements the QGIS network access manager. 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) |
Sets fallback proxy and URL that shouldn't use it. More... | |
void | setupDefaultProxyAndCache (Qt::ConnectionType connectionType=Qt::BlockingQueuedConnection) |
Setup the QgsNetworkAccessManager (NAM) according to the user's settings. More... | |
bool | useSystemProxy () const |
Returns whether the system proxy should be used. More... | |
Static Public Member Functions | |
static QNetworkRequest::CacheLoadControl | cacheLoadControlFromName (const QString &name) |
Gets QNetworkRequest::CacheLoadControl from name. More... | |
static QString | cacheLoadControlName (QNetworkRequest::CacheLoadControl control) |
Gets name for QNetworkRequest::CacheLoadControl. More... | |
static QgsNetworkAccessManager * | instance (Qt::ConnectionType connectionType=Qt::BlockingQueuedConnection) |
Returns a pointer to the active QgsNetworkAccessManager for the current thread. 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 120 of file qgsnetworkaccessmanager.cpp.
|
static |
Gets QNetworkRequest::CacheLoadControl from name.
Definition at line 271 of file qgsnetworkaccessmanager.cpp.
|
static |
Gets name for QNetworkRequest::CacheLoadControl.
Definition at line 253 of file qgsnetworkaccessmanager.cpp.
|
overrideprotected |
Definition at line 177 of file qgsnetworkaccessmanager.cpp.
QStringList QgsNetworkAccessManager::excludeList | ( | ) | const |
retrieve exclude list (urls shouldn't use the fallback proxy)
Definition at line 141 of file qgsnetworkaccessmanager.cpp.
const QNetworkProxy & QgsNetworkAccessManager::fallbackProxy | ( | ) | const |
retrieve fall back proxy (for urls that no factory returned proxies for)
Definition at line 146 of file qgsnetworkaccessmanager.cpp.
void QgsNetworkAccessManager::insertProxyFactory | ( | QNetworkProxyFactory * | factory | ) |
insert a factory into the proxy factories list
Definition at line 126 of file qgsnetworkaccessmanager.cpp.
|
static |
Returns a pointer to the active QgsNetworkAccessManager for the current thread.
With the connectionType parameter it is possible to setup the default connection type that is used to handle signals that might require user interaction and therefore need to be handled on the main thread. See in-depth discussion below.
connectionType | In most cases the default of using a Qt::BlockingQueuedConnection is ok, to make a background thread wait for the main thread to answer such a request is fine and anything else is dangerous. However, in case the request was started on the main thread, one should execute a local event loop in a helper thread and freeze the main thread for the duration of the download. In this case, if an authentication request is sent from the background thread network access manager, the background thread should be blocked, the main thread be woken up, processEvents() executed once, the main thread frozen again and the background thread continued. |
Definition at line 106 of file qgsnetworkaccessmanager.cpp.
const QList< QNetworkProxyFactory * > QgsNetworkAccessManager::proxyFactories | ( | ) | const |
retrieve proxy factory list
Definition at line 136 of file qgsnetworkaccessmanager.cpp.
void QgsNetworkAccessManager::removeProxyFactory | ( | QNetworkProxyFactory * | factory | ) |
remove a factory from the proxy factories list
Definition at line 131 of file qgsnetworkaccessmanager.cpp.
|
signal |
|
signal |
|
signal |
void QgsNetworkAccessManager::setFallbackProxyAndExcludes | ( | const QNetworkProxy & | proxy, |
const QStringList & | excludes | ||
) |
Sets fallback proxy and URL that shouldn't use it.
Definition at line 151 of file qgsnetworkaccessmanager.cpp.
void QgsNetworkAccessManager::setupDefaultProxyAndCache | ( | Qt::ConnectionType | connectionType = Qt::BlockingQueuedConnection | ) |
Setup the QgsNetworkAccessManager (NAM) according to the user's settings.
The connectionType sets up the default connection type that is used to handle signals that might require user interaction and therefore need to be handled on the main thread. See in-depth discussion in the documentation for the constructor of this class.
Definition at line 292 of file qgsnetworkaccessmanager.cpp.
|
inline |
Returns whether the system proxy should be used.
Definition at line 109 of file qgsnetworkaccessmanager.h.