mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Allow zipping to continue when errors are encountered.
Add the debug log to SD card zips if there were unexpected errors. Also display the progress dialog while scanning SD cards for zipping.
This commit is contained in:
parent
f47a7395d5
commit
0037eca57b
@ -56,6 +56,7 @@
|
||||
<li>[fix] Ignore old sessions should not impact existing data.</li>
|
||||
<li>[fix] Fix ocasional misordering of indexes on the Daily page.</li>
|
||||
<li>[fix] Add Unclassified Apneas to the Statistics page.</li>
|
||||
<li>[fix] Resolve empty CPAP data card zips on macOS Big Sur.</li>
|
||||
</ul>
|
||||
<p>
|
||||
<b>Changes and fixes in OSCAR v1.2.0</b>
|
||||
|
@ -2712,8 +2712,28 @@ void MainWindow::on_actionCreate_Card_zip_triggered()
|
||||
bool ok = z.Open(filename);
|
||||
if (ok) {
|
||||
ProgressDialog * prog = new ProgressDialog(this);
|
||||
|
||||
// Very full cards can sometimes take nearly a minute to scan,
|
||||
// so display the progress dialog immediately.
|
||||
prog->setMessage(tr("Calculating size..."));
|
||||
prog->setWindowModality(Qt::ApplicationModal);
|
||||
prog->open();
|
||||
|
||||
// Build the list of files.
|
||||
FileQueue files;
|
||||
bool ok = files.AddDirectory(cardPath, prefix);
|
||||
|
||||
// If there were any unexpected errors scanning the media, add the debug log to the zip.
|
||||
if (!ok) {
|
||||
qWarning() << "Unexpected errors when scanning SD card, adding debug log to zip.";
|
||||
QString debugLog = logger->logFileName();
|
||||
files.AddFile(debugLog, prefix + "-debug.txt");
|
||||
}
|
||||
|
||||
prog->setMessage(tr("Creating zip..."));
|
||||
ok = z.AddDirectory(cardPath, prefix, prog);
|
||||
|
||||
// Create the zip.
|
||||
ok = z.AddFiles(files, prog);
|
||||
z.Close();
|
||||
} else {
|
||||
qWarning() << "Unable to open" << filename;
|
||||
|
@ -168,6 +168,14 @@ bool FileQueue::AddDirectory(const QString & path, const QString & prefix)
|
||||
QDir dir(path);
|
||||
if (!dir.exists() || !dir.isReadable()) {
|
||||
qWarning() << dir.canonicalPath() << "can't read directory";
|
||||
#if defined(Q_OS_MACOS)
|
||||
// If this is a directory known to be protected by macOS "Full Disk Access" permissions,
|
||||
// skip it but don't consider it an error.
|
||||
static const QSet<QString> s_macProtectedDirs = { ".fseventsd", ".Spotlight-V100", ".Trashes" };
|
||||
if (s_macProtectedDirs.contains(dir.dirName())) {
|
||||
return true;
|
||||
}
|
||||
#endif
|
||||
return false;
|
||||
}
|
||||
QString base = prefix;
|
||||
@ -190,14 +198,12 @@ bool FileQueue::AddDirectory(const QString & path, const QString & prefix)
|
||||
qWarning() << "skipping symlink" << canonicalPath << fi.symLinkTarget();
|
||||
} else if (fi.isDir()) {
|
||||
// Descend and recurse
|
||||
ok = AddDirectory(canonicalPath, relative_path);
|
||||
ok &= AddDirectory(canonicalPath, relative_path);
|
||||
} else {
|
||||
// Add the file to the zip
|
||||
ok = AddFile(canonicalPath, relative_path);
|
||||
}
|
||||
if (!ok) {
|
||||
break;
|
||||
ok &= AddFile(canonicalPath, relative_path);
|
||||
}
|
||||
// Don't stop in our tracks when we hit an error.
|
||||
}
|
||||
|
||||
return ok;
|
||||
|
Loading…
Reference in New Issue
Block a user