/**************************************************************************** ** ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/ ** ** This file is part of the QtLocation module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** GNU Lesser General Public License Usage ** This file may be used under the terms of the GNU Lesser General Public ** License version 2.1 as published by the Free Software Foundation and ** appearing in the file LICENSE.LGPL included in the packaging of this ** file. Please review the following information to ensure the GNU Lesser ** General Public License version 2.1 requirements will be met: ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain additional ** rights. These rights are described in the Nokia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU General ** Public License version 3.0 as published by the Free Software Foundation ** and appearing in the file LICENSE.GPL included in the packaging of this ** file. Please review the following information to ensure the GNU General ** Public License version 3.0 requirements will be met: ** http://www.gnu.org/copyleft/gpl.html. ** ** Other Usage ** Alternatively, this file may be used in accordance with the terms and ** conditions contained in a signed written agreement between you and Nokia. ** ** ** ** ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #ifndef QGEOTILECACHE_P_H #define QGEOTILECACHE_P_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists purely as an // implementation detail. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include #include #include #include "qcache3q_p.h" #include #include #include #include "qgeotilespec.h" #include "qgeotiledmappingmanagerengine.h" QT_BEGIN_NAMESPACE class QGeoMappingManager; class QGeoTile; class QGeoCachedTileMemory; class QGeoTileCache; class QGLTexture2D; class QPixmap; class QThread; /* This would be internal to qgeotilecache.cpp except that the eviction * policy can't be defined without it being concrete here */ class QGeoCachedTileDisk { public: ~QGeoCachedTileDisk(); QGeoTileSpec spec; QString filename; QString format; QGeoTileCache *cache; }; /* This is also used in the mapgeometry */ class Q_LOCATION_EXPORT QGeoTileTexture { public: QGeoTileTexture(); ~QGeoTileTexture(); QGeoTileSpec spec; QGLTexture2D *texture; QGeoTileCache *cache; bool textureBound; }; /* Custom eviction policy for the disk cache, to avoid deleting all the files * when the application closes */ class QCache3QTileEvictionPolicy : public QCache3QDefaultEvictionPolicy { protected: void aboutToBeRemoved(const QGeoTileSpec &key, QSharedPointer obj); void aboutToBeEvicted(const QGeoTileSpec &key, QSharedPointer obj); }; class Q_LOCATION_EXPORT QGeoTileCache : public QObject { Q_OBJECT public: QGeoTileCache(const QString &directory = QString(), QObject *parent = 0); ~QGeoTileCache(); void setMaxDiskUsage(int diskUsage); int maxDiskUsage() const; int diskUsage() const; void setMaxMemoryUsage(int memoryUsage); int maxMemoryUsage() const; int memoryUsage() const; void setMinTextureUsage(int textureUsage); void setExtraTextureUsage(int textureUsage); int maxTextureUsage() const; int minTextureUsage() const; int textureUsage() const; void GLContextAvailable(); QSharedPointer get(const QGeoTileSpec &spec); void evictFromDiskCache(QGeoCachedTileDisk *td); void evictFromMemoryCache(QGeoCachedTileMemory *tm); void evictFromTextureCache(QGeoTileTexture *tt); void insert(const QGeoTileSpec &spec, const QByteArray &bytes, const QString &format, QGeoTiledMappingManagerEngine::CacheAreas areas = QGeoTiledMappingManagerEngine::AllCaches); void handleError(const QGeoTileSpec &spec, const QString &errorString); public Q_SLOTS: void printStats(); private: void loadTiles(); QSharedPointer addToDiskCache(const QGeoTileSpec &spec, const QString &filename); QSharedPointer addToMemoryCache(const QGeoTileSpec &spec, const QByteArray &bytes, const QString &format); QSharedPointer addToTextureCache(const QGeoTileSpec &spec, const QPixmap &pixmap); static QString tileSpecToFilename(const QGeoTileSpec &spec, const QString &format, const QString &directory); static QGeoTileSpec filenameToTileSpec(const QString &filename); QString directory_; QCache3Q diskCache_; QCache3Q memoryCache_; QCache3Q textureCache_; int minTextureUsage_; int extraTextureUsage_; QMutex cleanupMutex_; QList cleanupList_; }; QT_END_NAMESPACE #endif // QGEOTILECACHE_P_H