Abstract base class for file content caches, such as SVG or raster image caches.
More...
template<class T>
class QgsAbstractContentCache< T >
Abstract base class for file content caches, such as SVG or raster image caches.
Handles trimming the maximum cached content size to a desired limit, fetching remote content (via HTTP), and automatically invalidating cached content when the corresponding file is changed.
- Note
- Not available in Python bindings.
- Since
- QGIS 3.6
Definition at line 193 of file qgsabstractcontentcache.h.
Constructor for QgsAbstractContentCache, with the specified parent object.
The maxCacheSize argument dictates the maximum allowable total size of the cache, in bytes. This in turn dictates the maximum allowable size for caching individual entries.
The fileModifiedCheckTimeout dictates the minimum time (in milliseconds) between consecutive checks of whether a file's content has been modified (and existing cache entries should be discarded).
Definition at line 209 of file qgsabstractcontentcache.h.
Returns the existing entry from the cache which matches entryTemplate (deleting entryTemplate when done), or if no existing entry is found then entryTemplate is transferred to the cache and returned.
I.e. either way ownership of entryTemplate is transferred by calling this method.
If an existing entry was found, then the corresponding file MAY be rechecked for changes (only if a suitable time has occurred since the last check).
Definition at line 495 of file qgsabstractcontentcache.h.
template<class T >
QByteArray QgsAbstractContentCache< T >::getContent |
( |
const QString & |
path, |
|
|
const QByteArray & |
missingContent, |
|
|
const QByteArray & |
fetchingContent, |
|
|
bool |
blocking = false |
|
) |
| const |
|
inlineprotected |
Gets the file content corresponding to the given path.
path may be a local file, remote (HTTP) url, or a base 64 encoded string (with a "base64:" prefix).
The missingContent byte array is returned if the path could not be resolved or is broken. If the path corresponds to a remote URL, then fetchingContent will be returned while the content is in the process of being fetched. The blocking boolean forces to wait for loading before returning result. The content is loaded in the same thread to ensure provided the remote content. WARNING: the blocking parameter must NEVER be true
from GUI based applications (like the main QGIS application) or crashes will result. Only for use in external scripts or QGIS server.
Definition at line 263 of file qgsabstractcontentcache.h.
template<class T >
|
inlineoverrideprotectedvirtual |
Triggered after remote content (i.e.
HTTP linked content at the given url) has been fetched.
The success argument will be true
if the content was successfully fetched, or false
if it was not fetched successfully.
Reimplemented from QgsAbstractContentCacheBase.
Definition at line 435 of file qgsabstractcontentcache.h.