OSCAR-code/oscar/zip.h

80 lines
2.3 KiB
C
Raw Normal View History

/* OSCAR ZIP archive creation
* Provides a Qt-convenient wrapper around miniz, see https://github.com/richgel999/miniz
*
* Copyright (c) 2020-2022 The OSCAR Team
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file COPYING in the main directory of the source code
* for more details. */
2020-01-22 17:59:58 +00:00
#include <QObject>
#include <QString>
#include <QDir>
#include <QFile>
2020-01-22 17:59:58 +00:00
class ProgressDialog;
class ZipFile : public QObject
2020-01-22 16:25:20 +00:00
{
2020-01-22 17:59:58 +00:00
Q_OBJECT
2020-01-22 16:25:20 +00:00
public:
ZipFile();
virtual ~ZipFile();
bool Open(const QString & filepath);
2020-01-22 17:59:58 +00:00
bool AddDirectory(const QString & path, ProgressDialog* progress=nullptr); // add a directory and recurse
bool AddDirectory(const QString & path, const QString & archive_name, ProgressDialog* progress=nullptr); // add a directory and recurse
bool AddFiles(class FileQueue & queue, ProgressDialog* progress=nullptr); // add a fixed list of files
2020-01-22 16:25:20 +00:00
bool AddFile(const QString & path, const QString & archive_name); // add a single file
void Close();
2020-01-22 17:59:58 +00:00
bool aborted() const { return m_abort; }
public slots:
void abort() { m_abort = true; }
signals:
void setProgressMax(int max);
void setProgressValue(int val);
2020-01-22 16:25:20 +00:00
protected:
void* m_ctx;
QFile m_file;
2020-01-22 17:59:58 +00:00
bool m_abort;
quint64 m_progress;
2020-01-22 16:25:20 +00:00
};
class FileQueue
{
struct Entry
{
QString path;
QString name;
};
QList<Entry> m_files;
int m_dir_count;
int m_file_count;
quint64 m_byte_count;
public:
FileQueue() : m_dir_count(0), m_file_count(0), m_byte_count(0) {}
~FileQueue() = default;
//!brief Remove a file from the queue, return the number of instances removed.
int Remove(const QString & path, QString* outName=nullptr);
//!brief Recursively add a directory and its contents to the queue along with the prefix to be used in an archive.
2020-01-22 16:25:20 +00:00
bool AddDirectory(const QString & path, const QString & prefix="");
//!brief Add a file to the queue along with the name to be used in an archive.
2020-01-22 16:25:20 +00:00
bool AddFile(const QString & path, const QString & archive_name="");
inline int dirCount() const { return m_dir_count; }
inline int fileCount() const { return m_file_count; }
inline quint64 byteCount() const { return m_byte_count; }
const QList<Entry> & files() const { return m_files; }
const QString toString() const;
};