extend ZipInstaller to support installing of multiple files at once (for use by the...
[Rockbox.git] / rbutil / rbutilqt / installzip.h
blob07558e8e4fe7367740cee0eeb14c6b5766f0c654
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
9 * Copyright (C) 2007 by Dominik Wenger
10 * $Id: installzip.h 13990 2007-07-25 22:26:10Z Dominik Wenger $
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
21 #ifndef INSTALLZIP_H
22 #define INSTALLZIP_H
26 #include <QtGui>
27 #include <QtNetwork>
29 #include "progressloggerinterface.h"
30 #include "httpget.h"
32 class ZipInstaller : public QObject
34 Q_OBJECT
35 public:
36 ZipInstaller(QObject* parent) ;
37 ~ZipInstaller(){}
38 void install(ProgressloggerInterface* dp);
39 void setMountPoint(QString mountpoint) {m_mountpoint = mountpoint;}
40 void setUrl(QString url){m_urllist = QStringList(url);}
41 void setUrl(QStringList url) { m_urllist = url; }
42 void setProxy(QUrl proxy) {m_proxy= proxy;}
43 void setLogSection(QString name) {m_loglist = QStringList(name);}
44 void setLogSection(QStringList name) { m_loglist = name; }
45 void setUnzip(bool i) { m_unzip = i; }
46 void setTarget(QString t) { m_target = t; }
48 signals:
49 void done(bool error);
50 void cont();
52 private slots:
53 void updateDataReadProgress(int, int);
54 void downloadDone(bool);
55 void downloadRequestFinished(int, bool);
56 void installStart(void);
57 void installContinue(void);
59 private:
60 void installSingle(ProgressloggerInterface *dp);
61 QString m_url, m_file, m_mountpoint, m_logsection;
62 QStringList m_urllist, m_loglist;
63 QUrl m_proxy;
64 bool m_unzip;
65 QString m_target;
66 int runner;
68 HttpGet *getter;
69 QTemporaryFile *downloadFile;
71 ProgressloggerInterface* m_dp;
76 #endif