123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- class pNetworkAccessManager : QNetworkAccessManager
- {
- %TypeHeaderCode
- #include <../src/core/pNetworkAccessManager.h>
- %End
-
- public:
- /*!
- Returns the global instance of the pNetworkAccessManager.
- */
- static pNetworkAccessManager* instance();
- /*!
- Construct a pNetworkAccessManager instance and set the parent to \a parent.
- */
- pNetworkAccessManager( QObject* parent = 0 );
- /*!
- Destroy the pNetworkAccessManager and free all its resources.
- */
- virtual ~pNetworkAccessManager();
- /*!
- Set the directory where to cache the QNetworkReply to \a cacheDir.
- */
- void setCacheDirectory( const QString& cacheDir );
- /*!
- Returns the directory where are cached the QNetworkReply.
- \sa QNetworkDiskCache.
- */
- QString cacheDirectory() const;
- /*!
- Set the maximum cache size of the cache directory to \a size bytes.
- \sa QNetworkDiskCache.
- */
- void setMaximumCacheSize( qint64 size );
- /*!
- Returns the maximum size of the cache directory in bytes.
- \sa QNetworkDiskCache.
- */
- qint64 maximumCacheSize() const;
- /*!
- Set the maximum try an url will be sent to \a max.
- */
- void setMaxRetryPerUrl( int max );
- /*!
- Returns the maximum number of time an url is allowed to be sent.
-
- If a request is sent and max retry has been reach, then the request will
- not be sent and an error will be triggered.
- */
- int maxRetryPerUrl() const;
- /*!
- Returns the current cache size in bytes.
- \sa QNetworkDiskCache.
- */
- qint64 cacheSize() const;
- /*!
- Clear the cache, all cache files are deleted from the disk.
- \sa QNetworkDiskCache.
- */
- void clearCache();
- /*!
- Remove the cache file for \a url and return true on success, else false.
- \sa QNetworkDiskCache.
- */
- bool removeCache( const QUrl& url ) const;
- /*!
- Return a QIODevice for the cached data \a url if exists, else 0.
- \sa QNetworkDiskCache.
- */
- QIODevice* cacheData( const QUrl& url ) const;
- /*!
- Return true if cache data exists for \a url, else false.
- \sa QNetworkDiskCache.
- */
- bool hasCacheData( const QUrl& url ) const;
- /*!
- Return the meta data associated with \a url.
- \sa QNetworkDiskCache.
- */
- QNetworkCacheMetaData cacheMetaData( const QUrl& url ) const;
- /*!
- Return the meta data associated with \a fileName.
- \sa QNetworkDiskCache.
- */
- QNetworkCacheMetaData cacheFileMetaData( const QString& fileName ) const;
-
- /*!
- Return a QPixmap from the cache content of \a url if it exists, else an invalid QPixmap.
- \note This member is only defined when the macro QT_GUI_LIB is defined.
- */
- QPixmap cachedPixmap( const QUrl& url ) const;
- protected:
- /*!
- Reimplemented.
- */
- virtual QNetworkReply* createRequest( Operation op, const QNetworkRequest& req, QIODevice* outgoingData = 0 );
- protected slots:
- void _q_finished( QNetworkReply* reply );
- signals:
- /*!
- This signal is emitted when a request at \a url is successfuly cached.
- */
- void cached( const QUrl& url );
- /*!
- This signal is emitted when a request at \a url fails.
- The error associated is set in \a message.
- */
- void error( const QUrl& url, const QString& message );
- /*!
- This signal is emmited when the cache has been cleared.
- */
- void cacheCleared();
- };
|