mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-23 05:25:50 +03:00
Merge pull request #7046 from nextcloud/backport/7029/stable-3.14
[stable-3.14] Bugfix/log database errors
This commit is contained in:
commit
9fbef4c566
2 changed files with 377 additions and 103 deletions
File diff suppressed because it is too large
Load diff
|
@ -67,11 +67,24 @@ ZipEntry fileInfoToLogZipEntry(const QFileInfo &info)
|
||||||
return entry;
|
return entry;
|
||||||
}
|
}
|
||||||
|
|
||||||
ZipEntry syncFolderToZipEntry(OCC::Folder *f)
|
QVector<ZipEntry> syncFolderToDatabaseZipEntry(OCC::Folder *f)
|
||||||
{
|
{
|
||||||
|
QVector<ZipEntry> result;
|
||||||
|
|
||||||
const auto journalPath = f->journalDb()->databaseFilePath();
|
const auto journalPath = f->journalDb()->databaseFilePath();
|
||||||
const auto journalInfo = QFileInfo(journalPath);
|
const auto journalInfo = QFileInfo(journalPath);
|
||||||
return fileInfoToZipEntry(journalInfo);
|
const auto walJournalInfo = QFileInfo(journalPath + "-wal");
|
||||||
|
const auto shmJournalInfo = QFileInfo(journalPath + "-shm");
|
||||||
|
|
||||||
|
result += fileInfoToZipEntry(journalInfo);
|
||||||
|
if (walJournalInfo.exists()) {
|
||||||
|
result += fileInfoToZipEntry(walJournalInfo);
|
||||||
|
}
|
||||||
|
if (shmJournalInfo.exists()) {
|
||||||
|
result += fileInfoToZipEntry(shmJournalInfo);
|
||||||
|
}
|
||||||
|
|
||||||
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
QVector<ZipEntry> createDebugArchiveFileList()
|
QVector<ZipEntry> createDebugArchiveFileList()
|
||||||
|
@ -94,9 +107,11 @@ QVector<ZipEntry> createDebugArchiveFileList()
|
||||||
}
|
}
|
||||||
|
|
||||||
const auto folders = OCC::FolderMan::instance()->map().values();
|
const auto folders = OCC::FolderMan::instance()->map().values();
|
||||||
std::transform(std::cbegin(folders), std::cend(folders),
|
std::for_each(std::cbegin(folders), std::cend(folders),
|
||||||
std::back_inserter(list),
|
[&list] (auto &folderIt) {
|
||||||
syncFolderToZipEntry);
|
const auto &newEntries = syncFolderToDatabaseZipEntry(folderIt);
|
||||||
|
std::copy(std::cbegin(newEntries), std::cend(newEntries), std::back_inserter(list));
|
||||||
|
});
|
||||||
|
|
||||||
return list;
|
return list;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue