mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Add a menu item to create a zip of all diagnostic logs.
Also fix a buffering issue in XmlRecorder that left devices.xml empty in the zip.
This commit is contained in:
parent
5e9d391ccc
commit
7316ac676c
@ -116,6 +116,14 @@ void XmlRecorder::epilogue()
|
||||
m_xml->writeEndElement(); // close enclosing tag
|
||||
}
|
||||
|
||||
void XmlRecorder::flush()
|
||||
{
|
||||
if (m_file) {
|
||||
if (!m_file->flush()) {
|
||||
qWarning().noquote() << "Unable to flush XML to" << m_file->fileName();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
XmlReplay::XmlReplay(QFile* file, const QString & tag)
|
||||
: m_tag(tag), m_file(file), m_pendingSignal(nullptr), m_parent(nullptr)
|
||||
@ -416,6 +424,7 @@ void XmlReplayEvent::record(XmlRecorder* writer) const
|
||||
if (writer != nullptr) {
|
||||
writer->lock();
|
||||
writer->xml() << *this;
|
||||
writer->flush();
|
||||
writer->unlock();
|
||||
}
|
||||
}
|
||||
|
@ -54,6 +54,7 @@ public:
|
||||
inline QXmlStreamWriter & xml() { return *m_xml; }
|
||||
inline void lock() { m_mutex.lock(); }
|
||||
inline void unlock() { m_mutex.unlock(); }
|
||||
void flush();
|
||||
|
||||
protected:
|
||||
XmlRecorder(XmlRecorder* parent, const QString & id, const QString & tag); // constructor used by substreams
|
||||
|
@ -2727,6 +2727,56 @@ void MainWindow::on_actionCreate_Card_zip_triggered()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void MainWindow::on_actionCreate_Log_zip_triggered()
|
||||
{
|
||||
QString folder;
|
||||
|
||||
// Note: macOS ignores this and points to OSCAR's most recently used directory for saving.
|
||||
folder = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation);
|
||||
folder += "/OSCAR-logs.zip";
|
||||
QString filename = QFileDialog::getSaveFileName(this, tr("Choose where to save zip"), folder, tr("ZIP files (*.zip)"));
|
||||
if (filename.isEmpty()) {
|
||||
return; // aborted
|
||||
}
|
||||
if (!filename.toLower().endsWith(".zip")) {
|
||||
filename += ".zip";
|
||||
}
|
||||
|
||||
qDebug() << "Create zip of OSCAR diagnostic logs:" << filename;
|
||||
|
||||
ZipFile z;
|
||||
bool ok = z.Open(filename);
|
||||
if (ok) {
|
||||
ProgressDialog * prog = new ProgressDialog(this);
|
||||
prog->setMessage(tr("Creating zip..."));
|
||||
|
||||
// Build the list of files.
|
||||
FileQueue files;
|
||||
files.AddDirectory(GetLogDir(), "logs");
|
||||
|
||||
// Defer the current debug log to the end.
|
||||
QString debugLog = logger->logFileName();
|
||||
QString debugLogZipName;
|
||||
int exists = files.Remove(debugLog, &debugLogZipName);
|
||||
if (exists) {
|
||||
files.AddFile(debugLog, debugLogZipName);
|
||||
}
|
||||
|
||||
// Create the zip.
|
||||
ok = z.AddFiles(files, prog);
|
||||
z.Close();
|
||||
} else {
|
||||
qWarning() << "Unable to open" << filename;
|
||||
}
|
||||
if (!ok) {
|
||||
QMessageBox::warning(nullptr, STR_MessageBox_Error,
|
||||
QObject::tr("Unable to create zip!"),
|
||||
QMessageBox::Ok);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void MainWindow::on_actionCreate_OSCAR_Data_zip_triggered()
|
||||
{
|
||||
QString folder;
|
||||
|
@ -344,6 +344,8 @@ class MainWindow : public QMainWindow
|
||||
|
||||
void on_actionCreate_Card_zip_triggered();
|
||||
|
||||
void on_actionCreate_Log_zip_triggered();
|
||||
|
||||
void on_actionCreate_OSCAR_Data_zip_triggered();
|
||||
|
||||
void on_actionReport_a_Bug_triggered();
|
||||
|
@ -2866,6 +2866,7 @@ p, li { white-space: pre-wrap; }
|
||||
<addaction name="actionShow_Performance_Counters"/>
|
||||
<addaction name="separator"/>
|
||||
<addaction name="actionCreate_Card_zip"/>
|
||||
<addaction name="actionCreate_Log_zip"/>
|
||||
<addaction name="actionCreate_OSCAR_Data_zip"/>
|
||||
<addaction name="actionReport_a_Bug"/>
|
||||
<addaction name="separator"/>
|
||||
@ -3232,6 +3233,11 @@ p, li { white-space: pre-wrap; }
|
||||
<string>Create zip of CPAP data card</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionCreate_Log_zip">
|
||||
<property name="text">
|
||||
<string>Create zip of OSCAR diagnostic logs</string>
|
||||
</property>
|
||||
</action>
|
||||
<action name="actionCreate_OSCAR_Data_zip">
|
||||
<property name="text">
|
||||
<string>Create zip of all OSCAR data</string>
|
||||
|
Loading…
Reference in New Issue
Block a user