From db1df4eeef4c79e88654f5706f9a9cd1a3ae0e58 Mon Sep 17 00:00:00 2001 From: sawinglogz <3787776-sawinglogz@users.noreply.gitlab.com> Date: Wed, 30 Oct 2019 18:38:13 -0400 Subject: [PATCH] Add missing PRS1UnknownDurationEvent entries to F0 supported events. Also add a debug message when a session is skipped due to length or age (due to preferences). --- oscar/SleepLib/loader_plugins/prs1_loader.cpp | 3 +++ oscar/SleepLib/machine.cpp | 2 ++ 2 files changed, 5 insertions(+) diff --git a/oscar/SleepLib/loader_plugins/prs1_loader.cpp b/oscar/SleepLib/loader_plugins/prs1_loader.cpp index 1cb0c5dc..e58b2492 100644 --- a/oscar/SleepLib/loader_plugins/prs1_loader.cpp +++ b/oscar/SleepLib/loader_plugins/prs1_loader.cpp @@ -3187,6 +3187,7 @@ static const QVector ParsedEventsF0V23 = { PRS1HypopneaEvent::TYPE, PRS1FlowLimitationEvent::TYPE, PRS1VibratorySnoreEvent::TYPE, + PRS1UnknownDurationEvent::TYPE, PRS1PeriodicBreathingEvent::TYPE, PRS1LargeLeakEvent::TYPE, PRS1TotalLeakEvent::TYPE, @@ -3385,6 +3386,7 @@ static const QVector ParsedEventsF0V4 = { PRS1HypopneaEvent::TYPE, PRS1FlowLimitationEvent::TYPE, PRS1VibratorySnoreEvent::TYPE, + PRS1UnknownDurationEvent::TYPE, PRS1PeriodicBreathingEvent::TYPE, PRS1LargeLeakEvent::TYPE, PRS1TotalLeakEvent::TYPE, @@ -3585,6 +3587,7 @@ static const QVector ParsedEventsF0V6 = { PRS1HypopneaEvent::TYPE, PRS1FlowLimitationEvent::TYPE, PRS1VibratorySnoreEvent::TYPE, + PRS1UnknownDurationEvent::TYPE, PRS1PeriodicBreathingEvent::TYPE, PRS1LargeLeakEvent::TYPE, PRS1TotalLeakEvent::TYPE, diff --git a/oscar/SleepLib/machine.cpp b/oscar/SleepLib/machine.cpp index 9d943345..7ecf542f 100644 --- a/oscar/SleepLib/machine.cpp +++ b/oscar/SleepLib/machine.cpp @@ -302,6 +302,7 @@ bool Machine::AddSession(Session *s) if (profile->session->ignoreOlderSessions()) { qint64 ignorebefore = profile->session->ignoreOlderSessionsDate().toMSecsSinceEpoch(); if (s->last() < ignorebefore) { + qDebug() << s->session() << "Ignoring old session"; skipped_sessions++; return false; } @@ -382,6 +383,7 @@ bool Machine::AddSession(Session *s) if (session_length < ignore_sessions) { // keep the session to save importing it again, but don't add it to the day record this time + qDebug() << s->session() << "Ignoring short session"; return true; }