mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 19:20:45 +00:00
Add debug messages for exceptional events in PRS1Import::ParseSession.
Lots of new warnings that were being silently eaten!
This commit is contained in:
parent
8fa5df5f89
commit
092d46be33
@ -4485,39 +4485,81 @@ void PRS1Import::run()
|
|||||||
|
|
||||||
bool PRS1Import::ParseSession(void)
|
bool PRS1Import::ParseSession(void)
|
||||||
{
|
{
|
||||||
|
bool ok = false;
|
||||||
bool save = false;
|
bool save = false;
|
||||||
session = new Session(mach, sessionid);
|
session = new Session(mach, sessionid);
|
||||||
|
|
||||||
if ((compliance && ImportCompliance()) || (summary && ImportSummary())) {
|
do {
|
||||||
if (event && !ParseEvents()) {
|
if (compliance != nullptr) {
|
||||||
}
|
ok = ImportCompliance();
|
||||||
|
if (!ok) {
|
||||||
// Parse .005 Waveform file
|
qWarning() << sessionid << "Error parsing compliance, skipping session";
|
||||||
waveforms = loader->ParseFile(wavefile);
|
break;
|
||||||
waveforms = CoalesceWaveformChunks(waveforms);
|
|
||||||
if (session->eventlist.contains(CPAP_FlowRate)) {
|
|
||||||
if (waveforms.size() > 0) {
|
|
||||||
// Delete anything called "Flow rate" picked up in the events file if real data is present
|
|
||||||
session->destroyEvent(CPAP_FlowRate);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
ParseWaveforms();
|
if (summary != nullptr) {
|
||||||
|
if (compliance != nullptr) {
|
||||||
|
qWarning() << sessionid << "Has both compliance and summary?!";
|
||||||
|
// Never seen this, but try the summary anyway.
|
||||||
|
}
|
||||||
|
ok = ImportSummary();
|
||||||
|
if (!ok) {
|
||||||
|
qWarning() << sessionid << "Error parsing summary, skipping session";
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (compliance == nullptr && summary == nullptr) {
|
||||||
|
qWarning() << sessionid << "No compliance or summary, skipping session";
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
// Parse .006 Waveform file
|
if (event != nullptr) {
|
||||||
oximetry = loader->ParseFile(oxifile);
|
ok = ParseEvents();
|
||||||
oximetry = CoalesceWaveformChunks(oximetry);
|
if (!ok) {
|
||||||
ParseOximetry();
|
qWarning() << sessionid << "Error parsing events, proceeding anyway?";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!wavefile.isEmpty()) {
|
||||||
|
// Parse .005 Waveform file
|
||||||
|
waveforms = loader->ParseFile(wavefile);
|
||||||
|
waveforms = CoalesceWaveformChunks(waveforms);
|
||||||
|
if (session->eventlist.contains(CPAP_FlowRate)) {
|
||||||
|
if (waveforms.size() > 0) {
|
||||||
|
// Delete anything called "Flow rate" picked up in the events file if real data is present
|
||||||
|
session->destroyEvent(CPAP_FlowRate);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
ok = ParseWaveforms();
|
||||||
|
if (!ok) {
|
||||||
|
qWarning() << sessionid << "Error parsing waveforms, proceeding anyway?";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!oxifile.isEmpty()) {
|
||||||
|
// Parse .006 Waveform file
|
||||||
|
oximetry = loader->ParseFile(oxifile);
|
||||||
|
oximetry = CoalesceWaveformChunks(oximetry);
|
||||||
|
ok = ParseOximetry();
|
||||||
|
if (!ok) {
|
||||||
|
qWarning() << sessionid << "Error parsing oximetry, proceeding anyway?";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if (session->first() > 0) {
|
if (session->first() > 0) {
|
||||||
if (session->last() < session->first()) {
|
if (session->last() < session->first()) {
|
||||||
// if last isn't set, duration couldn't be gained from summary, parsing events or waveforms..
|
// if last isn't set, duration couldn't be gained from summary, parsing events or waveforms..
|
||||||
// This session is dodgy, so kill it
|
// This session is dodgy, so kill it
|
||||||
|
qWarning() << sessionid << "Session last() earlier than first(), downgrading to summary only";
|
||||||
session->setSummaryOnly(true);
|
session->setSummaryOnly(true);
|
||||||
session->really_set_last(session->first()+(qint64(summary_duration) * 1000L));
|
session->really_set_last(session->first()+(qint64(summary_duration) * 1000L));
|
||||||
}
|
}
|
||||||
save = true;
|
save = true;
|
||||||
|
} else {
|
||||||
|
qWarning() << sessionid << "missing start time";
|
||||||
}
|
}
|
||||||
}
|
} while (false);
|
||||||
|
|
||||||
return save;
|
return save;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user