Split PRS1Import::ParseSummary into ImportSummar/ParseSummary.

This commit is contained in:
sawinglogz 2019-05-27 10:25:57 -04:00
parent e3a4edaca2
commit 4d1b947e22
2 changed files with 23 additions and 15 deletions

View File

@ -4048,7 +4048,8 @@ bool PRS1DataChunk::ParseSummaryF0V6()
return true;
}
bool PRS1Import::ParseSummary()
bool PRS1Import::ImportSummary()
{
if (!summary) return false;
@ -4060,7 +4061,23 @@ bool PRS1Import::ParseSummary()
session->set_first(qint64(summary->timestamp) * 1000L);
session->setPhysMax(CPAP_LeakTotal, 120);
session->setPhysMin(CPAP_LeakTotal, 0);
session->setPhysMax(CPAP_Pressure, 25);
session->setPhysMin(CPAP_Pressure, 4);
session->setPhysMax(CPAP_IPAP, 25);
session->setPhysMin(CPAP_IPAP, 4);
session->setPhysMax(CPAP_EPAP, 25);
session->setPhysMin(CPAP_EPAP, 4);
session->setPhysMax(CPAP_PS, 25);
session->setPhysMin(CPAP_PS, 0);
return this->ParseSummary();
}
bool PRS1Import::ParseSummary()
{
// TODO: The below is probably wrong. It should move to PRS1DataChunk when it gets fixed.
/* Example data block
000000c6@0000: 00 [10] 01 [00 01 02 01 01 00 02 01 00 04 01 40 07
@ -4108,19 +4125,6 @@ bool PRS1Import::ParseSummary()
// Family 3 = BIPAP AVAPS
// Family 5 = BIPAP AutoSV
session->setPhysMax(CPAP_LeakTotal, 120);
session->setPhysMin(CPAP_LeakTotal, 0);
session->setPhysMax(CPAP_Pressure, 25);
session->setPhysMin(CPAP_Pressure, 4);
session->setPhysMax(CPAP_IPAP, 25);
session->setPhysMin(CPAP_IPAP, 4);
session->setPhysMax(CPAP_EPAP, 25);
session->setPhysMin(CPAP_EPAP, 4);
session->setPhysMax(CPAP_PS, 25);
session->setPhysMin(CPAP_PS, 0);
switch (summary->family) {
case 0:
if (summary->familyVersion == 6) {
@ -4183,6 +4187,7 @@ bool PRS1Import::ParseSummary()
//////////////////////////////////////////////////////////////////////////////////////////
}
bool PRS1Import::ParseEvents()
{
bool res = false;
@ -4461,7 +4466,7 @@ bool PRS1Import::ParseSession(void)
bool save = false;
session = new Session(mach, sessionid);
if ((compliance && ParseCompliance()) || (summary && ParseSummary())) {
if ((compliance && ParseCompliance()) || (summary && ImportSummary())) {
if (event && !ParseEvents()) {
}

View File

@ -223,6 +223,9 @@ public:
//! \brief As it says on the tin.. Parses .001 files for bricks.
bool ParseCompliance();
//! \brief Imports the .002 summary file.
bool ImportSummary();
//! \brief Figures out which Summary Parser to call, based on machine family/version and calls it.
bool ParseSummary();