summaryrefslogtreecommitdiff
path: root/utils/rbutilqt/base/zipinstaller.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/rbutilqt/base/zipinstaller.h')
-rw-r--r--utils/rbutilqt/base/zipinstaller.h88
1 files changed, 88 insertions, 0 deletions
diff --git a/utils/rbutilqt/base/zipinstaller.h b/utils/rbutilqt/base/zipinstaller.h
new file mode 100644
index 0000000000..59a0f785d9
--- /dev/null
+++ b/utils/rbutilqt/base/zipinstaller.h
@@ -0,0 +1,88 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 *
9 * Copyright (C) 2007 by Dominik Wenger
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
15 *
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied.
18 *
19 ****************************************************************************/
20
21
22#ifndef ZIPINSTALLER_H
23#define ZIPINSTALLER_H
24
25#include <QtCore>
26
27#include "progressloggerinterface.h"
28#include "httpget.h"
29#include "Logger.h"
30
31/** Install a file or zip.
32 * Downloads file(s) from a given URL, and installs by either extracting or
33 * copying it to the target path set by setMountpoint().
34 */
35class ZipInstaller : public QObject
36{
37 Q_OBJECT
38public:
39 ZipInstaller(QObject* parent);
40 ~ZipInstaller(){}
41 void install(void);
42 void setMountPoint(QString mountpoint) {m_mountpoint = mountpoint;}
43 void setUrl(QString url){m_urllist = QStringList(url);}
44 void setUrl(QStringList url) { m_urllist = url; }
45 void setLogSection(QString name) {m_loglist = QStringList(name);}
46 void setLogSection(QStringList name) { m_loglist = name; }
47 void setLogVersion(QString v = "")
48 { m_verlist = QStringList(v); LOG_INFO() << m_verlist;}
49 void setLogVersion(QStringList v)
50 { m_verlist = v; LOG_INFO() << m_verlist;}
51 /** Change between copy and unzip mode. */
52 void setUnzip(bool i) { m_unzip = i; }
53 /** Set target filename for copy mode.
54 * If not set the filename part of the download URL is used. */
55 void setTarget(QString t) { m_target = t; }
56 void setCache(bool c) { m_usecache = c; }
57
58public slots:
59 void abort(void);
60
61private slots:
62 void downloadDone(bool);
63 void installStart(void);
64 void installContinue(void);
65
66signals:
67 void done(bool error);
68 void cont();
69 void logItem(QString, int); //! set logger item
70 void logProgress(int, int); //! set progress bar.
71 void internalAborted(void);
72
73private:
74 QString m_url, m_file, m_mountpoint, m_logsection, m_logver;
75 QStringList m_urllist, m_loglist, m_verlist;
76 bool m_unzip;
77 QString m_target;
78 int m_runner;
79 bool m_usecache;
80
81 HttpGet *m_getter;
82 QTemporaryFile *m_downloadFile;
83};
84
85
86
87#endif
88