Update the OSCAR data zip to use the live debug log instead of creating one.

Also fix the logger so that messages are logged immediately rather than once
per second.
This commit is contained in:
sawinglogz 2020-07-19 21:34:08 -04:00
parent 20dfb666b0
commit 162e5695b1
5 changed files with 47 additions and 30 deletions

View File

@ -48,8 +48,9 @@ void MyOutputHandler(QtMsgType type, const QMessageLogContext &context, const QS
if (logger && logger->isRunning()) { if (logger && logger->isRunning()) {
logger->append(msg); logger->append(msg);
} } else {
fprintf(stderr, "%s\n", msg.toLocal8Bit().constData()); fprintf(stderr, "%s\n", msg.toLocal8Bit().constData());
}
if (type == QtFatalMsg) { if (type == QtFatalMsg) {
abort(); abort();
@ -81,12 +82,18 @@ void LogThread::connectionReady()
{ {
strlock.lock(); strlock.lock();
connected = true; connected = true;
logTrigger.wakeAll();
strlock.unlock(); strlock.unlock();
qDebug() << "Logging UI initialized"; qDebug() << "Logging UI initialized";
} }
void LogThread::logToFile() void LogThread::logToFile()
{ {
if (m_logStream) {
qWarning().noquote() << "Already logging to" << m_logFile->fileName();
return;
}
QString debugLog = GetLogDir() + "/debug.txt"; QString debugLog = GetLogDir() + "/debug.txt";
rotateLogs(debugLog); // keep a limited set of previous logs rotateLogs(debugLog); // keep a limited set of previous logs
@ -96,6 +103,7 @@ void LogThread::logToFile()
if (m_logFile->open(QFile::ReadWrite | QFile::Text)) { if (m_logFile->open(QFile::ReadWrite | QFile::Text)) {
m_logStream = new QTextStream(m_logFile); m_logStream = new QTextStream(m_logFile);
} }
logTrigger.wakeAll();
strlock.unlock(); strlock.unlock();
if (m_logStream) { if (m_logStream) {
qDebug().noquote() << "Logging to" << debugLog; qDebug().noquote() << "Logging to" << debugLog;
@ -104,6 +112,14 @@ void LogThread::logToFile()
} }
} }
QString LogThread::logFileName()
{
if (!m_logFile) {
return "";
}
return m_logFile->fileName();
}
void shutdownLogger() void shutdownLogger()
{ {
if (logger) { if (logger) {
@ -119,16 +135,15 @@ LogThread * logger = NULL;
void LogThread::append(QString msg) void LogThread::append(QString msg)
{ {
QString tmp = QString("%1: %2").arg(logtime.elapsed(), 5, 10, QChar('0')).arg(msg); QString tmp = QString("%1: %2").arg(logtime.elapsed(), 5, 10, QChar('0')).arg(msg);
//QStringList appears not to be threadsafe appendClean(tmp);
strlock.lock();
buffer.append(tmp);
strlock.unlock();
} }
void LogThread::appendClean(QString msg) void LogThread::appendClean(QString msg)
{ {
fprintf(stderr, "%s\n", msg.toLocal8Bit().constData());
strlock.lock(); strlock.lock();
buffer.append(msg); buffer.append(msg);
logTrigger.wakeAll();
strlock.unlock(); strlock.unlock();
} }
@ -160,8 +175,7 @@ void LogThread::run()
s_LoggerRunning.unlock(); // unlock as soon as the thread begins to run s_LoggerRunning.unlock(); // unlock as soon as the thread begins to run
do { do {
strlock.lock(); strlock.lock();
//int r = receivers(SIGNAL(outputLog(QString()))); logTrigger.wait(&strlock);
// Wait to flush the buffer until the UI is connected and the log file has been opened.
while (connected && m_logFile && !buffer.isEmpty()) { while (connected && m_logFile && !buffer.isEmpty()) {
QString msg = buffer.takeFirst(); QString msg = buffer.takeFirst();
if (m_logStream) { if (m_logStream) {
@ -170,7 +184,6 @@ void LogThread::run()
emit outputLog(msg); emit outputLog(msg);
} }
strlock.unlock(); strlock.unlock();
QThread::msleep(1000);
} while (running); } while (running);
} }

View File

@ -5,6 +5,7 @@
#include <QRunnable> #include <QRunnable>
#include <QThreadPool> #include <QThreadPool>
#include <QMutex> #include <QMutex>
#include <QWaitCondition>
#include <QTime> #include <QTime>
void initializeLogger(); void initializeLogger();
@ -29,6 +30,7 @@ public:
bool isRunning() { return running; } bool isRunning() { return running; }
void connectionReady(); void connectionReady();
void logToFile(); void logToFile();
QString logFileName();
void quit(); void quit();
@ -43,6 +45,7 @@ protected:
bool connected; bool connected;
class QFile* m_logFile; class QFile* m_logFile;
class QTextStream* m_logStream; class QTextStream* m_logStream;
QWaitCondition logTrigger;
}; };
extern LogThread * logger; extern LogThread * logger;

View File

@ -2682,7 +2682,7 @@ void MainWindow::on_actionCreate_Card_zip_triggered()
infostr = datacard.loader->loaderName(); infostr = datacard.loader->loaderName();
} }
prefix = infostr; prefix = infostr;
folder += QDir::separator() + infostr + ".zip"; folder += "/" + infostr + ".zip";
filename = QFileDialog::getSaveFileName(this, tr("Choose where to save zip"), folder, tr("ZIP files (*.zip)")); filename = QFileDialog::getSaveFileName(this, tr("Choose where to save zip"), folder, tr("ZIP files (*.zip)"));
@ -2734,7 +2734,7 @@ void MainWindow::on_actionCreate_OSCAR_Data_zip_triggered()
// Note: macOS ignores this and points to OSCAR's most recently used directory for saving. // Note: macOS ignores this and points to OSCAR's most recently used directory for saving.
folder = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation); folder = QStandardPaths::writableLocation(QStandardPaths::DocumentsLocation);
folder += QDir::separator() + STR_AppData + ".zip"; folder += "/" + STR_AppData + ".zip";
QString filename = QFileDialog::getSaveFileName(this, tr("Choose where to save zip"), folder, tr("ZIP files (*.zip)")); QString filename = QFileDialog::getSaveFileName(this, tr("Choose where to save zip"), folder, tr("ZIP files (*.zip)"));
@ -2749,7 +2749,6 @@ void MainWindow::on_actionCreate_OSCAR_Data_zip_triggered()
qDebug() << "Create zip of OSCAR data folder:" << filename; qDebug() << "Create zip of OSCAR data folder:" << filename;
QDir oscarData(GetAppData()); QDir oscarData(GetAppData());
QFile debugLog(oscarData.canonicalPath() + QDir::separator() + "debuglog.txt");
ZipFile z; ZipFile z;
bool ok = z.Open(filename); bool ok = z.Open(filename);
@ -2759,29 +2758,22 @@ void MainWindow::on_actionCreate_OSCAR_Data_zip_triggered()
prog->setWindowModality(Qt::ApplicationModal); prog->setWindowModality(Qt::ApplicationModal);
prog->open(); prog->open();
// Build the list of files and exclude any existing debug log. // Build the list of files.
FileQueue files; FileQueue files;
files.AddDirectory(oscarData.canonicalPath(), oscarData.dirName()); files.AddDirectory(oscarData.canonicalPath(), oscarData.dirName());
files.Remove(debugLog.fileName());
// 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);
}
prog->setMessage(tr("Creating zip...")); prog->setMessage(tr("Creating zip..."));
// Create the zip. // Create the zip.
ok = z.AddFiles(files, prog); ok = z.AddFiles(files, prog);
if (ok && z.aborted() == false) {
// Update the debug log and add it last.
ok = debugLog.open(QIODevice::WriteOnly);
if (ok) {
debugLog.write(ui->logText->toPlainText().toLocal8Bit().data());
debugLog.close();
QString debugLogName = oscarData.dirName() + "/" + QFileInfo(debugLog).fileName();
ok = z.AddFile(debugLog.fileName(), debugLogName);
if (!ok) {
qWarning() << "Unable to add debug log to zip!";
}
}
}
z.Close(); z.Close();
} else { } else {
qWarning() << "Unable to open" << filename; qWarning() << "Unable to open" << filename;

View File

@ -225,7 +225,7 @@ bool FileQueue::AddFile(const QString & path, const QString & prefix)
return true; return true;
} }
int FileQueue::Remove(const QString & path) int FileQueue::Remove(const QString & path, QString* outName)
{ {
QFileInfo fi(path); QFileInfo fi(path);
QString canonicalPath = fi.canonicalFilePath(); QString canonicalPath = fi.canonicalFilePath();
@ -235,6 +235,13 @@ int FileQueue::Remove(const QString & path)
while (i.hasNext()) { while (i.hasNext()) {
Entry & entry = i.next(); Entry & entry = i.next();
if (entry.path == canonicalPath) { if (entry.path == canonicalPath) {
if (outName) {
// If the caller cares about the name, it will most likely be re-added later rather than skipped.
*outName = entry.name;
} else {
qDebug().noquote() << "skipping file:" << path;
}
if (fi.isDir()) { if (fi.isDir()) {
m_dir_count--; m_dir_count--;
} else { } else {
@ -243,10 +250,12 @@ int FileQueue::Remove(const QString & path)
} }
i.remove(); i.remove();
removed++; removed++;
qDebug().noquote() << "skipping file:" << path;
} }
} }
if (removed > 1) {
qWarning().noquote() << removed << "copies found in zip queue:" << path;
}
return removed; return removed;
} }

View File

@ -63,7 +63,7 @@ public:
~FileQueue() = default; ~FileQueue() = default;
//!brief Remove a file from the queue, return the number of instances removed. //!brief Remove a file from the queue, return the number of instances removed.
int Remove(const QString & path); 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. //!brief Recursively add a directory and its contents to the queue along with the prefix to be used in an archive.
bool AddDirectory(const QString & path, const QString & prefix=""); bool AddDirectory(const QString & path, const QString & prefix="");