2010-10-16 19:20:54 +02:00
|
|
|
/* This file is part of Clementine.
|
2010-11-20 14:27:10 +01:00
|
|
|
Copyright 2010, David Sansome <me@davidsansome.com>
|
2010-10-16 19:20:54 +02:00
|
|
|
|
|
|
|
Clementine is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
Clementine is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with Clementine. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef NETWORK_H
|
|
|
|
#define NETWORK_H
|
|
|
|
|
|
|
|
#include <QAbstractNetworkCache>
|
|
|
|
#include <QMutex>
|
|
|
|
#include <QNetworkAccessManager>
|
|
|
|
|
|
|
|
class QNetworkDiskCache;
|
|
|
|
|
|
|
|
class ThreadSafeNetworkDiskCache : public QAbstractNetworkCache {
|
|
|
|
public:
|
|
|
|
ThreadSafeNetworkDiskCache(QObject* parent);
|
|
|
|
|
|
|
|
qint64 cacheSize() const;
|
|
|
|
QIODevice* data(const QUrl& url);
|
|
|
|
void insert(QIODevice* device);
|
|
|
|
QNetworkCacheMetaData metaData(const QUrl& url);
|
|
|
|
QIODevice* prepare(const QNetworkCacheMetaData& metaData);
|
|
|
|
bool remove(const QUrl& url);
|
|
|
|
void updateMetaData(const QNetworkCacheMetaData& metaData);
|
|
|
|
|
|
|
|
void clear();
|
|
|
|
|
|
|
|
private:
|
|
|
|
static QMutex sMutex;
|
|
|
|
static QNetworkDiskCache* sCache;
|
|
|
|
};
|
|
|
|
|
|
|
|
class NetworkAccessManager : public QNetworkAccessManager {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
NetworkAccessManager(QObject* parent = 0);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
QNetworkReply* createRequest(Operation op, const QNetworkRequest& request,
|
|
|
|
QIODevice* outgoingData);
|
|
|
|
};
|
|
|
|
|
2011-03-13 14:17:35 +01:00
|
|
|
class NetworkTimeouts : public QObject {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
NetworkTimeouts(int timeout_msec, QObject* parent = 0);
|
|
|
|
|
|
|
|
void AddReply(QNetworkReply* reply);
|
|
|
|
void SetTimeout(int msec) { timeout_msec_ = msec; }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void timerEvent(QTimerEvent* e);
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void ReplyFinished();
|
|
|
|
|
|
|
|
private:
|
|
|
|
int timeout_msec_;
|
|
|
|
QMap<QNetworkReply*, int> timers_;
|
|
|
|
};
|
|
|
|
|
2010-10-16 19:20:54 +02:00
|
|
|
#endif // NETWORK_H
|