1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
9 * Copyright (C) 2008 by Dominik Riebeling
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 ****************************************************************************/
24 //! @brief extract archive to destination
25 UnZip::ErrorCode
RbUnZip::extractArchive(const QString
& dest
)
27 qDebug() << "[UNZIP] extracting archive to" << dest
;
28 QStringList files
= this->fileList();
29 UnZip::ErrorCode error
= Ok
;
32 int total
= files
.size();
33 for(int i
= 0; i
< total
; i
++) {
34 error
= this->extractFile(files
.at(i
), dest
, UnZip::ExtractPaths
);
35 emit
unzipProgress(i
+ 1, total
);
36 QCoreApplication::processEvents(); // update UI
46 //! @brief abort an extractArchive() operation.
47 void RbUnZip::abortUnzip(void)
53 //! @brief return total size of extracted files in archive.
54 qulonglong
RbUnZip::totalSize(void)
56 QList
<ZipEntry
> l
= this->entryList();
61 total
+= l
.at(i
).uncompressedSize
;