Merge branch 'master' into version

This commit is contained in:
Guy Scharf 2020-01-18 19:58:13 -07:00
commit 0a55e12d5b
5 changed files with 66 additions and 23 deletions

View File

@ -891,10 +891,9 @@ void PRS1Loader::ScanFiles(const QStringList & paths, int sessionid_base, Machin
QDateTime datetime;
/* Unused until we get an actual timestamp below.
QDateTime ignoreBefore = p_profile->session->ignoreOlderSessionsDate();
qint64 ignoreBefore = p_profile->session->ignoreOlderSessionsDate().toSecsSinceEpoch();
bool ignoreOldSessions = p_profile->session->ignoreOlderSessions();
*/
QSet<SessionID> skipped;
// for each p0/p1/p2/etc... folder
for (int p=0; p < size; ++p) {
@ -937,15 +936,6 @@ void PRS1Loader::ScanFiles(const QStringList & paths, int sessionid_base, Machin
continue;
}
/* This never worked: the filename isn't a timestamp.
if (ignoreOldSessions) {
datetime = QDateTime::fromTime_t(sid);
if (datetime < ignoreBefore) {
continue;
}
}
*/
// TODO: BUG: This isn't right, since files can have multiple session
// chunks, which might not correspond to the filename. But before we can
// fix this we need to come up with a reasonably fast way to filter previously
@ -957,6 +947,16 @@ void PRS1Loader::ScanFiles(const QStringList & paths, int sessionid_base, Machin
}
if ((ext == 5) || (ext == 6)) {
if (skipped.contains(sid)) {
// We don't know the timestamp until the file is parsed, which we only do for
// waveform data at import (after scanning) since it's so large. If we relied
// solely on the chunks' timestamps at that point, we'd get half of an otherwise
// skipped session (the half after midnight).
//
// So we skip the entire file here based on the session's other data.
continue;
}
// Waveform files aren't grouped... so we just want to add the filename for later
QHash<SessionID, PRS1Import *>::iterator it = sesstasks.find(sid);
if (it != sesstasks.end()) {
@ -1013,7 +1013,14 @@ void PRS1Loader::ScanFiles(const QStringList & paths, int sessionid_base, Machin
delete chunk;
continue;
}
if (ignoreOldSessions && chunk->timestamp < ignoreBefore) {
qDebug().noquote() << relativePath(path) << "skipping session" << chunk_sid << ":"
<< QDateTime::fromSecsSinceEpoch(chunk->timestamp).toString() << "older than"
<< QDateTime::fromSecsSinceEpoch(ignoreBefore).toString();
skipped += chunk_sid;
delete chunk;
continue;
}
task = nullptr;
QHash<SessionID, PRS1Import *>::iterator it = sesstasks.find(chunk_sid);
@ -7670,7 +7677,26 @@ QList<PRS1DataChunk *> PRS1Import::CoalesceWaveformChunks(QList<PRS1DataChunk *>
lastchunk = chunk;
}
return coalesced;
// In theory there could be broken sessions that have waveform data but no summary or events.
// Those waveforms won't be skipped by the scanner, so we have to check for them here.
//
// This won't be perfect, since any coalesced chunks starting after midnight of the threshhold
// date will also be imported, but those should be relatively few, and tolerable imprecision.
QList<PRS1DataChunk *> coalescedAndFiltered;
qint64 ignoreBefore = p_profile->session->ignoreOlderSessionsDate().toSecsSinceEpoch();
bool ignoreOldSessions = p_profile->session->ignoreOlderSessions();
for (auto & chunk : coalesced) {
if (ignoreOldSessions && chunk->timestamp < ignoreBefore) {
qWarning().noquote() << relativePath(chunk->m_path) << "skipping session" << chunk->sessionid << ":"
<< QDateTime::fromSecsSinceEpoch(chunk->timestamp).toString() << "older than"
<< QDateTime::fromSecsSinceEpoch(ignoreBefore).toString();
continue;
}
coalescedAndFiltered.append(chunk);
}
return coalescedAndFiltered;
}

View File

@ -1,5 +1,6 @@
/* OSCAR Logger module implementation
/* OSCAR Logger module implementation
*
* Copyright (c) 2020 The OSCAR Team
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
*
* This file is subject to the terms and conditions of the GNU General Public
@ -59,18 +60,32 @@ void MyOutputHandler(QtMsgType type, const QMessageLogContext &context, const QS
}
static QMutex s_LoggerRunning;
void initializeLogger()
{
s_LoggerRunning.lock(); // lock until the thread starts running
logger = new LogThread();
otherThreadPool = new QThreadPool();
bool b = otherThreadPool->tryStart(logger);
if (b) {
s_LoggerRunning.lock(); // wait until the thread begins running
s_LoggerRunning.unlock(); // we no longer need the lock
}
qInstallMessageHandler(MyOutputHandler);
if (b) {
qDebug() << "Started logging thread";
} else {
qWarning() << "Logging thread did not start correctly";
}
}
void LogThread::connectionReady()
{
strlock.lock();
connected = true;
strlock.unlock();
qDebug() << "Logging UI initialized";
}
void shutdownLogger()
@ -117,10 +132,11 @@ void LogThread::quit() {
void LogThread::run()
{
running = true;
s_LoggerRunning.unlock(); // unlock as soon as the thread begins to run
do {
strlock.lock();
//int r = receivers(SIGNAL(outputLog(QString())));
while (!buffer.isEmpty()) {
while (connected && !buffer.isEmpty()) {
QString msg = buffer.takeFirst();
fprintf(stderr, "%s\n", msg.toLocal8Bit().data());
emit outputLog(msg);

View File

@ -1,4 +1,4 @@
#ifndef LOGGER_H
#ifndef LOGGER_H
#define LOGGER_H
#include <QDebug>
@ -16,13 +16,14 @@ class LogThread:public QObject, public QRunnable
{
Q_OBJECT
public:
explicit LogThread() : QRunnable() { running = false; logtime.start(); }
explicit LogThread() : QRunnable() { running = false; logtime.start(); connected = false; }
virtual ~LogThread() {}
void run();
void append(QString msg);
void appendClean(QString msg);
bool isRunning() { return running; }
void connectionReady();
void quit();
@ -34,6 +35,7 @@ signals:
protected:
volatile bool running;
QTime logtime;
bool connected;
};
extern LogThread * logger;

View File

@ -1,5 +1,6 @@
/* OSCAR Main
*
* Copyright (c) 2019-2020 The OSCAR Team
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.net>
*
* This file is subject to the terms and conditions of the GNU General Public
@ -338,7 +339,6 @@ int main(int argc, char *argv[]) {
}
initializeLogger();
QThread::msleep(50); // Logger takes a little bit to catch up
qDebug().noquote() << "OSCAR starting" << QDateTime::currentDateTime().toString();

View File

@ -69,10 +69,10 @@ MainWindow::MainWindow(QWidget *parent) :
ui(new Ui::MainWindow)
{
ui->setupUi(this);
ui->logText->setPlainText("00000: Startup: OSCAR Logger initialized");
if (logger) {
connect(logger, SIGNAL(outputLog(QString)), this, SLOT(logMessage(QString)));
logger->connectionReady();
}
// Bring window to top (useful when language is changed)
@ -128,9 +128,8 @@ void MainWindow::SetupGUI()
setWindowTitle(getMainWindowTitle());
#ifdef Q_OS_MAC
ui->action_About->setMenuRole(QAction::ApplicationSpecificRole);
ui->action_Preferences->setMenuRole(QAction::ApplicationSpecificRole);
ui->action_Preferences->setShortcuts(QKeySequence::Preferences);
ui->action_About->setMenuRole(QAction::AboutRole);
ui->action_Preferences->setMenuRole(QAction::PreferencesRole);
#endif
ui->actionLine_Cursor->setChecked(AppSetting->lineCursorMode());