Clean up zip API.

This commit is contained in:
sawinglogz 2020-01-22 11:25:20 -05:00
parent 607002ffa1
commit c4619dad35
3 changed files with 75 additions and 77 deletions

View File

@ -2638,7 +2638,7 @@ void MainWindow::on_actionCreate_Card_zip_triggered()
bool ok = z.Open(filename); bool ok = z.Open(filename);
if (ok) { if (ok) {
// TODO: need to add progress bar! // TODO: need to add progress bar!
ok = z.Add(cardPath); ok = z.AddDirectory(cardPath);
z.Close(); z.Close();
} }
if (!ok) { if (!ok) {

View File

@ -51,28 +51,23 @@ void ZipFile::Close()
} }
} }
bool ZipFile::Add(const QDir & root) bool ZipFile::AddDirectory(const QString & path, const QString & prefix)
{
return Add(root, root.dirName());
}
bool ZipFile::Add(const QDir & inDir, const QString & prefix)
{ {
bool ok; bool ok;
FileQueue queue; FileQueue queue;
queue.Add(inDir, prefix); queue.AddDirectory(path, prefix);
ok = Add(queue); ok = AddFiles(queue);
return ok; return ok;
} }
bool ZipFile::Add(const FileQueue & queue) bool ZipFile::AddFiles(const FileQueue & queue)
{ {
bool ok; bool ok;
// TODO: add progress bar // TODO: add progress bar
qDebug() << "Adding" << queue.toString(); qDebug() << "Adding" << queue.toString();
for (auto & entry : queue.files()) { for (auto & entry : queue.files()) {
ok = Add(entry.path, entry.name); ok = AddFile(entry.path, entry.name);
if (!ok) { if (!ok) {
break; break;
} }
@ -81,49 +76,7 @@ bool ZipFile::Add(const FileQueue & queue)
return ok; return ok;
} }
bool ZipFile::AddFile(const QString & path, const QString & name)
// ==================================================================================================
bool FileQueue::Add(const QDir & inDir, const QString & prefix)
{
QDir dir(inDir);
if (!dir.exists() || !dir.isReadable()) {
qWarning() << dir.canonicalPath() << "can't read directory";
return false;
}
// Add directory entry
bool ok = Add(dir.canonicalPath(), prefix);
if (!ok) {
return false;
}
dir.setFilter(QDir::NoDotAndDotDot | QDir::Dirs | QDir::Files | QDir::Hidden);
dir.setSorting(QDir::Name);
QFileInfoList flist = dir.entryInfoList();
for (auto & fi : flist) {
QString canonicalPath = fi.canonicalFilePath();
QString relative_path = prefix + QDir::separator() + fi.fileName();
if (fi.isSymLink()) {
qWarning() << "skipping symlink" << canonicalPath << fi.symLinkTarget();
} else if (fi.isDir()) {
// Descend and recurse
ok = Add(QDir(canonicalPath), relative_path);
} else {
// Add the file to the zip
ok = Add(canonicalPath, relative_path);
}
if (!ok) {
break;
}
}
return ok;
}
bool ZipFile::Add(const QString & path, const QString & prefix)
{ {
if (!m_file.isOpen()) { if (!m_file.isOpen()) {
qWarning() << m_file.fileName() << "has not been opened for writing"; qWarning() << m_file.fileName() << "has not been opened for writing";
@ -132,7 +85,8 @@ bool ZipFile::Add(const QString & path, const QString & prefix)
QFileInfo fi(path); QFileInfo fi(path);
QByteArray data; QByteArray data;
QString archive_name = prefix; QString archive_name = name;
if (archive_name.isEmpty()) archive_name = fi.fileName();
if (fi.isDir()) { if (fi.isDir()) {
archive_name += QDir::separator(); archive_name += QDir::separator();
@ -152,12 +106,57 @@ bool ZipFile::Add(const QString & path, const QString & prefix)
return ok; return ok;
} }
bool FileQueue::Add(const QString & path, const QString & prefix)
// ==================================================================================================
bool FileQueue::AddDirectory(const QString & path, const QString & prefix)
{
QDir dir(path);
if (!dir.exists() || !dir.isReadable()) {
qWarning() << dir.canonicalPath() << "can't read directory";
return false;
}
QString base = prefix;
if (base.isEmpty()) base = dir.dirName();
// Add directory entry
bool ok = AddFile(dir.canonicalPath(), base);
if (!ok) {
return false;
}
dir.setFilter(QDir::NoDotAndDotDot | QDir::Dirs | QDir::Files | QDir::Hidden);
dir.setSorting(QDir::Name);
QFileInfoList flist = dir.entryInfoList();
for (auto & fi : flist) {
QString canonicalPath = fi.canonicalFilePath();
QString relative_path = base + QDir::separator() + fi.fileName();
if (fi.isSymLink()) {
qWarning() << "skipping symlink" << canonicalPath << fi.symLinkTarget();
} else if (fi.isDir()) {
// Descend and recurse
ok = AddDirectory(canonicalPath, relative_path);
} else {
// Add the file to the zip
ok = AddFile(canonicalPath, relative_path);
}
if (!ok) {
break;
}
}
return ok;
}
bool FileQueue::AddFile(const QString & path, const QString & prefix)
{ {
QFileInfo fi(path); QFileInfo fi(path);
QString archive_name = prefix; QString archive_name = prefix;
quint64 size; quint64 size;
if (archive_name.isEmpty()) archive_name = fi.fileName();
if (fi.isDir()) { if (fi.isDir()) {
m_dir_count++; m_dir_count++;
size = 0; size = 0;

View File

@ -11,6 +11,24 @@
#include <QDir> #include <QDir>
#include <QFile> #include <QFile>
class ZipFile
{
public:
ZipFile();
virtual ~ZipFile();
bool Open(const QString & filepath);
bool AddDirectory(const QString & path, const QString & archive_name=""); // add a directory and recurse
bool AddFile(const QString & path, const QString & archive_name); // add a single file
bool AddFiles(const class FileQueue & queue); // add a fixed list of files
void Close();
protected:
void* m_ctx;
QFile m_file;
};
class FileQueue class FileQueue
{ {
struct Entry struct Entry
@ -28,10 +46,10 @@ public:
~FileQueue() = default; ~FileQueue() = default;
//!brief Recursively add a directory and its contents to the queue along with the prefix to be used in an archive. //!brief Recursively add a directory and its contents to the queue along with the prefix to be used in an archive.
bool Add(const QDir & dir, const QString & prefix=""); 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. //!brief Add a file to the queue along with the name to be used in an archive.
bool Add(const QString & path, const QString & archive_name=""); bool AddFile(const QString & path, const QString & archive_name="");
inline int dirCount() const { return m_dir_count; } inline int dirCount() const { return m_dir_count; }
inline int fileCount() const { return m_file_count; } inline int fileCount() const { return m_file_count; }
@ -39,22 +57,3 @@ public:
const QList<Entry> & files() const { return m_files; } const QList<Entry> & files() const { return m_files; }
const QString toString() const; const QString toString() const;
}; };
class ZipFile
{
public:
ZipFile();
virtual ~ZipFile();
bool Open(const QString & filepath);
bool Add(const QDir & root);
bool Add(const QDir & dir, const QString & archive_name); // add a directory and recurse
bool Add(const QString & path, const QString & archive_name); // add a single file
bool Add(const FileQueue & queue); // add a fixed list of files
void Close();
protected:
void* m_ctx;
QFile m_file;
};