1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
9 * Copyright (C) 2007 by 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 ****************************************************************************/
29 #include "progressloggerinterface.h"
32 class ZipInstaller
: public QObject
36 ZipInstaller(QObject
* parent
) ;
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 setLogVersion(QString v
) { m_verlist
= QStringList(v
); qDebug() << m_verlist
;}
46 void setLogVersion(QStringList v
) { m_verlist
= v
; qDebug() << m_verlist
;}
47 void setUnzip(bool i
) { m_unzip
= i
; }
48 void setTarget(QString t
) { m_target
= t
; }
49 void setCache(QDir c
) { m_cache
= c
; };
50 void setCache(QString c
) { m_cache
= QDir(c
);}
53 void done(bool error
);
57 void updateDataReadProgress(int, int);
58 void downloadDone(bool);
59 void installStart(void);
60 void installContinue(void);
63 void installSingle(ProgressloggerInterface
*dp
);
64 QString m_url
, m_file
, m_mountpoint
, m_logsection
, m_logver
;
65 QStringList m_urllist
, m_loglist
, m_verlist
;
73 QTemporaryFile
*downloadFile
;
75 ProgressloggerInterface
* m_dp
;