2007-07-25 20:21:06 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
*
|
|
|
|
* Copyright (C) 2007 by Dominik Riebeling
|
2007-08-14 22:47:01 +00:00
|
|
|
* $Id$
|
2007-07-25 20:21:06 +00:00
|
|
|
*
|
|
|
|
* All files in this archive are subject to the GNU General Public License.
|
|
|
|
* See the file COPYING in the source tree root for full license agreement.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef HTTPGET_H
|
|
|
|
#define HTTPGET_H
|
|
|
|
|
2007-08-27 17:40:35 +00:00
|
|
|
#include <QtCore>
|
|
|
|
#include <QtNetwork>
|
2007-07-25 20:21:06 +00:00
|
|
|
|
|
|
|
class QUrl;
|
|
|
|
|
|
|
|
class HttpGet : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
HttpGet(QObject *parent = 0);
|
|
|
|
|
|
|
|
bool getFile(const QUrl &url);
|
|
|
|
void setProxy(const QUrl &url);
|
|
|
|
QHttp::Error error(void);
|
|
|
|
QString errorString(void);
|
|
|
|
void setFile(QFile*);
|
2007-08-27 17:40:35 +00:00
|
|
|
void setCache(QDir);
|
|
|
|
void setCache(bool);
|
2007-07-25 20:21:06 +00:00
|
|
|
int httpResponse(void);
|
2007-08-14 22:47:01 +00:00
|
|
|
QByteArray readAll(void);
|
2007-08-27 17:40:35 +00:00
|
|
|
bool isCached() { return cached; }
|
2007-07-25 20:21:06 +00:00
|
|
|
|
|
|
|
public slots:
|
|
|
|
void abort(void);
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void done(bool);
|
|
|
|
void dataReadProgress(int, int);
|
|
|
|
void requestFinished(int, bool);
|
|
|
|
|
|
|
|
private slots:
|
|
|
|
void httpDone(bool error);
|
|
|
|
void httpProgress(int, int);
|
|
|
|
void httpFinished(int, bool);
|
|
|
|
void httpResponseHeader(const QHttpResponseHeader&);
|
2007-08-14 22:47:01 +00:00
|
|
|
void httpState(int);
|
|
|
|
void httpStarted(int);
|
2007-07-25 20:21:06 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
QHttp http;
|
|
|
|
QFile *outputFile;
|
|
|
|
int response;
|
2007-08-14 22:47:01 +00:00
|
|
|
int getRequest;
|
|
|
|
QByteArray dataBuffer;
|
2007-08-15 13:28:15 +00:00
|
|
|
bool outputToBuffer;
|
2007-08-15 20:30:36 +00:00
|
|
|
QString query;
|
2007-08-27 17:40:35 +00:00
|
|
|
bool m_usecache;
|
|
|
|
QDir m_cachedir;
|
|
|
|
QString cachefile;
|
|
|
|
bool cached;
|
2007-07-25 20:21:06 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|