summaryrefslogtreecommitdiffstats
path: root/rbutil/rbutilqt/base/httpget.h
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2008-10-12 19:21:58 +0000
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2008-10-12 19:21:58 +0000
commitf958717d43420655519ae079ef0d35aa912411b2 (patch)
treedf0dbb774dc3619e2b53c944c6928724092dc171 /rbutil/rbutilqt/base/httpget.h
parent3d30029883e7e2a862bceede967d95d0bfbd93bb (diff)
downloadrockbox-f958717d43420655519ae079ef0d35aa912411b2.tar.gz
rockbox-f958717d43420655519ae079ef0d35aa912411b2.zip
Separate basic functionality from GUI parts by moving it into a separate folder. Some files still need to get cleaned up prior moving them too.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18788 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'rbutil/rbutilqt/base/httpget.h')
-rw-r--r--rbutil/rbutilqt/base/httpget.h107
1 files changed, 107 insertions, 0 deletions
diff --git a/rbutil/rbutilqt/base/httpget.h b/rbutil/rbutilqt/base/httpget.h
new file mode 100644
index 0000000000..ba4cbc821e
--- /dev/null
+++ b/rbutil/rbutilqt/base/httpget.h
@@ -0,0 +1,107 @@
+/***************************************************************************
+ * __________ __ ___.
+ * Open \______ \ ____ ____ | | _\_ |__ _______ ___
+ * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
+ * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
+ * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
+ * \/ \/ \/ \/ \/
+ *
+ * Copyright (C) 2007 by Dominik Riebeling
+ * $Id$
+ *
+ * This program 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 2
+ * of the License, or (at your option) any later version.
+ *
+ * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
+ * KIND, either express or implied.
+ *
+ ****************************************************************************/
+
+
+#ifndef HTTPGET_H
+#define HTTPGET_H
+
+#include <QtCore>
+#include <QtNetwork>
+
+class QUrl;
+
+class HttpGet : public QObject
+{
+ Q_OBJECT
+
+ public:
+ HttpGet(QObject *parent = 0);
+
+ bool getFile(const QUrl &url);
+ void setProxy(const QUrl &url);
+ void setProxy(bool);
+ QHttp::Error error(void);
+ QString errorString(void);
+ void setFile(QFile*);
+ void setCache(QDir);
+ void setCache(bool);
+ int httpResponse(void);
+ QByteArray readAll(void);
+ bool isCached()
+ { return m_cached; }
+ QDateTime timestamp(void)
+ { return m_serverTimestamp; }
+ void setDumbCache(bool b) //< disable checking of http header timestamp for caching
+ { m_dumbCache = b; }
+ static void setGlobalCache(const QDir d) //< set global cache path
+ { m_globalCache = d; }
+ static void setGlobalProxy(const QUrl p) //< set global proxy value
+ { m_globalProxy = p; }
+ static void setGlobalDumbCache(bool b) //< set "dumb" (ignore server status) caching mode
+ { m_globalDumbCache = b; }
+ static void setGlobalUserAgent(QString u) //< set global user agent string
+ { m_globalUserAgent = u; }
+
+ public slots:
+ void abort(void);
+
+ signals:
+ void done(bool);
+ void dataReadProgress(int, int);
+ void requestFinished(int, bool);
+ void headerFinished(void);
+
+ private slots:
+ void httpDone(bool error);
+ void httpFinished(int, bool);
+ void httpResponseHeader(const QHttpResponseHeader&);
+ void httpState(int);
+ void httpStarted(int);
+ void getFileFinish(void);
+
+ private:
+ bool initializeCache(const QDir&);
+ QHttp http; //< download object
+ QFile *outputFile;
+ int m_response; //< http response
+ int getRequest; //! get file http request id
+ int headRequest; //! get http header request id
+ QByteArray dataBuffer;
+ bool outputToBuffer;
+ bool m_usecache;
+ QDir m_cachedir;
+ QString m_cachefile; // cached filename
+ bool m_cached;
+ QUrl m_proxy;
+ QDateTime m_serverTimestamp; //< timestamp of file on server
+ QString m_query; //< constructed query to pass http getter
+ QString m_path; //< constructed path to pass http getter
+ QString m_hash; //< caching hash
+ bool m_dumbCache; //< true if caching should ignore the server header
+ QHttpRequestHeader m_header;
+
+ static QDir m_globalCache; //< global cache path value
+ static QUrl m_globalProxy; //< global proxy value
+ static bool m_globalDumbCache; //< cache "dumb" mode global setting
+ static QString m_globalUserAgent; //< global user agent string
+};
+
+#endif