Added Oximetery save code, module is ready for testing

This commit is contained in:
Mark Watkins 2014-05-28 03:43:28 +10:00
parent 6061bfd519
commit 260e83e330
5 changed files with 214 additions and 106 deletions

View File

@ -202,7 +202,7 @@ int CMS50Loader::doImportMode()
oda = oda.addDays(-1);
}
oxitime = QDateTime(oda,oti);
m_startTime = oxitime = QDateTime(oda,oti);
// Convert it to UTC
oxitime = oxitime.toTimeSpec(Qt::UTC);
@ -232,7 +232,7 @@ int CMS50Loader::doImportMode()
return idx;
}
quint8 pulse=(unsigned char)buffer.at(idx + 1) & 0xff;
quint8 pulse=(unsigned char)buffer.at(idx + 1) & 0x7f | ((c & 1) << 7);
quint8 spo2=(unsigned char)buffer.at(idx + 2) & 0xff;
oxirec.append(OxiRecord(pulse,spo2));

View File

@ -950,9 +950,9 @@ QString Daily::getOximeterInformation(Day * oxi)
html+="<tr><td colspan=5 align=center>&nbsp;</td></tr>";
html+="<tr><td colspan=5 align=center>"+oxi->machine->properties[STR_PROP_Brand]+" "+oxi->machine->properties[STR_PROP_Model]+"</td></tr>\n";
html+="<tr><td colspan=5 align=center>&nbsp;</td></tr>";
html+=QString("<tr><td colspan=5 align=center>%1: %2 (%3)%%</td></tr>").arg(tr("SpO2 Desaturations")).arg(oxi->count(OXI_SPO2Drop)).arg((100.0/oxi->hours()) * (oxi->sum(OXI_SPO2Drop)/3600.0),0,'f',2);
html+=QString("<tr><td colspan=5 align=center>%1: %2 (%3)%%</td></tr>").arg(tr("Pulse Change events")).arg(oxi->count(OXI_PulseChange)).arg((100.0/oxi->hours()) * (oxi->sum(OXI_PulseChange)/3600.0),0,'f',2);
html+=QString("<tr><td colspan=5 align=center>%1: %2%%</td></tr>").arg(tr("SpO2 Baseline Used")).arg(oxi->settings_wavg(OXI_SPO2Drop),0,'f',2); // CHECKME: Should this value be wavg OXI_SPO2 isntead?
html+=QString("<tr><td colspan=5 align=center>%1: %2 (%3%)</td></tr>").arg(tr("SpO2 Desaturations")).arg(oxi->count(OXI_SPO2Drop)).arg((100.0/oxi->hours()) * (oxi->sum(OXI_SPO2Drop)/3600.0),0,'f',2);
html+=QString("<tr><td colspan=5 align=center>%1: %2 (%3%)</td></tr>").arg(tr("Pulse Change events")).arg(oxi->count(OXI_PulseChange)).arg((100.0/oxi->hours()) * (oxi->sum(OXI_PulseChange)/3600.0),0,'f',2);
html+=QString("<tr><td colspan=5 align=center>%1: %2%</td></tr>").arg(tr("SpO2 Baseline Used")).arg(oxi->settings_wavg(OXI_SPO2Drop),0,'f',2); // CHECKME: Should this value be wavg OXI_SPO2 isntead?
html+="</table>\n";
html+="<hr/>\n";
}

View File

@ -8,6 +8,10 @@
#include "oximeterimport.h"
#include "ui_oximeterimport.h"
#include "SleepLib/calcs.h"
#include "mainwindow.h"
extern MainWindow * mainwin;
#include "SleepLib/loader_plugins/cms50_loader.h"
@ -629,3 +633,149 @@ void OximeterImport::on_syncButton_clicked()
}
void OximeterImport::on_saveButton_clicked()
{
int size = oximodule->oxirec.size();
if (size < 2) {
QMessageBox::warning(this, STR_MessageBox_Warning, tr("Not enough recorded oximetry data."), QMessageBox::Ok);
return;
}
if (!oximodule) return;
Machine * mach = oximodule->CreateMachine(p_profile);
SessionID sid = ui->dateTimeEdit->dateTime().toUTC().toTime_t();
quint64 start = quint64(sid) * 1000L;
if (!session) {
session = new Session(mach, sid);
session->really_set_first(start);
} else {
// Live recording...
if (dummyday) {
dummyday->removeSession(session);
delete dummyday;
dummyday = nullptr;
}
session->SetSessionID(sid);
session->really_set_first(start);
ELplethy->setFirst(start);
session->setFirst(OXI_Plethy, start);
quint64 duration = start + (ELplethy->count() * ELplethy->rate());
quint64 end = start + duration;
session->setLast(OXI_Plethy, end);
session->count(OXI_Plethy);
session->Min(OXI_Plethy);
session->Max(OXI_Plethy);
}
EventList * ELpulse = nullptr;
EventList * ELspo2 = nullptr;
quint16 lastpulse = 0;
quint16 lastspo2 = 0;
quint16 lastgoodpulse = 0;
quint16 lastgoodspo2 = 0;
quint64 ti = start;
for (int i=1; i < size; ++i) {
OxiRecord * rec = &oximodule->oxirec[i];
if (rec->pulse > 0) {
if (lastpulse == 0) {
ELpulse = session->AddEventList(OXI_Pulse, EVL_Event);
}
if (lastpulse != rec->pulse) {
if (lastpulse > 0) {
ELpulse->AddEvent(ti, lastpulse);
}
ELpulse->AddEvent(ti, rec->pulse);
}
lastgoodpulse = rec->pulse;
} else {
// end section properly
if (lastgoodpulse > 0) {
ELpulse->AddEvent(ti, lastpulse);
session->setLast(OXI_Pulse, ti);
lastgoodpulse = 0;
}
}
lastpulse = rec->pulse;
if (rec->spo2 > 0) {
if (lastspo2 == 0) {
ELspo2 = session->AddEventList(OXI_SPO2, EVL_Event);
}
if (lastspo2 != rec->spo2) {
if (lastspo2 > 0) {
ELspo2->AddEvent(ti, lastspo2);
}
ELspo2->AddEvent(ti, rec->spo2);
}
lastgoodspo2 = rec->spo2;
} else {
// end section properly
if (lastgoodspo2 > 0) {
ELspo2->AddEvent(ti, lastspo2);
session->setLast(OXI_SPO2, ti);
lastgoodspo2 = 0;
}
}
lastspo2 = rec->spo2;
ti += 20;
}
ti -= 20;
if (lastpulse > 0) {
ELpulse->AddEvent(ti, lastpulse);
session->setLast(OXI_Pulse, ti);
}
if (lastspo2 > 0) {
ELspo2->AddEvent(ti, lastspo2);
session->setLast(OXI_SPO2, ti);
}
calcSPO2Drop(session);
calcPulseChange(session);
session->first(OXI_Pulse);
session->first(OXI_SPO2);
session->last(OXI_Pulse);
session->last(OXI_SPO2);
session->first(OXI_PulseChange);
session->first(OXI_SPO2Drop);
session->last(OXI_PulseChange);
session->last(OXI_SPO2Drop);
session->cph(OXI_PulseChange);
session->sph(OXI_PulseChange);
session->cph(OXI_SPO2Drop);
session->sph(OXI_SPO2Drop);
session->count(OXI_Pulse);
session->count(OXI_SPO2);
session->count(OXI_PulseChange);
session->count(OXI_SPO2Drop);
session->Min(OXI_Pulse);
session->Max(OXI_Pulse);
session->Min(OXI_SPO2);
session->Max(OXI_SPO2);
session->really_set_last(ti);
session->SetChanged(true);
mach->AddSession(session, p_profile);
mach->Save();
mainwin->getDaily()->LoadDate(mainwin->getDaily()->getDate());
mainwin->getOverview()->ReloadGraphs();
ELplethy = nullptr;
session = nullptr;
accept();
}

View File

@ -58,6 +58,8 @@ private slots:
void on_syncButton_clicked();
void on_saveButton_clicked();
protected slots:
void on_updatePlethy(QByteArray plethy);
void finishedRecording();

View File

@ -7,7 +7,7 @@
<x>0</x>
<y>0</y>
<width>905</width>
<height>625</height>
<height>595</height>
</rect>
</property>
<property name="windowTitle">
@ -768,19 +768,6 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc)
}</string>
</property>
<layout class="QVBoxLayout" name="verticalLayout_6">
<item>
<spacer name="verticalSpacer_5">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QLabel" name="label_3">
<property name="sizePolicy">
@ -805,19 +792,6 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc)
</property>
</widget>
</item>
<item>
<spacer name="verticalSpacer_6">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QLabel" name="label">
<property name="font">
@ -914,19 +888,6 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc)
</property>
</widget>
</item>
<item>
<spacer name="verticalSpacer_2">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QLabel" name="label_6">
<property name="font">
@ -1056,35 +1017,6 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc)
<property name="bottomMargin">
<number>6</number>
</property>
<item>
<widget class="QCheckBox" name="showLiveGraphs">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Show Live Graphs</string>
</property>
<property name="checked">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_3">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>139</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<layout class="QVBoxLayout" name="verticalLayout_8">
<item>
@ -1121,6 +1053,35 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc)
</item>
</layout>
</item>
<item>
<widget class="QCheckBox" name="showLiveGraphs">
<property name="font">
<font>
<weight>75</weight>
<bold>true</bold>
</font>
</property>
<property name="text">
<string>Show Live Graphs</string>
</property>
<property name="checked">
<bool>true</bool>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_7">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<layout class="QVBoxLayout" name="verticalLayout_9">
<item>
@ -1312,7 +1273,7 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc)
<item>
<widget class="QGroupBox" name="groupBox_2">
<property name="sizePolicy">
<sizepolicy hsizetype="Minimum" vsizetype="Fixed">
<sizepolicy hsizetype="Minimum" vsizetype="MinimumExpanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
@ -1320,7 +1281,7 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc)
<property name="minimumSize">
<size>
<width>0</width>
<height>200</height>
<height>180</height>
</size>
</property>
<property name="title">
@ -1342,7 +1303,7 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc)
<item>
<widget class="QCalendarWidget" name="calendarWidget">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="Preferred">
<sizepolicy hsizetype="Minimum" vsizetype="MinimumExpanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
@ -1363,7 +1324,7 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc)
<property name="minimumSize">
<size>
<width>0</width>
<height>200</height>
<height>180</height>
</size>
</property>
<property name="title">
@ -1434,19 +1395,6 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc)
</property>
</widget>
</item>
<item row="3" column="1">
<spacer name="verticalSpacer_4">
<property name="orientation">
<enum>Qt::Vertical</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>20</width>
<height>40</height>
</size>
</property>
</spacer>
</item>
<item row="2" column="0">
<widget class="QRadioButton" name="radioSyncOximeter">
<property name="sizePolicy">
@ -1460,6 +1408,22 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc)
</property>
</widget>
</item>
<item row="3" column="0" colspan="2">
<widget class="QLabel" name="label_11">
<property name="sizePolicy">
<sizepolicy hsizetype="Preferred" vsizetype="MinimumExpanding">
<horstretch>0</horstretch>
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="text">
<string>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;Note: Syncing to CPAP session starting time will always be more accurate.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</string>
</property>
<property name="wordWrap">
<bool>true</bool>
</property>
</widget>
</item>
</layout>
</widget>
</item>
@ -1568,7 +1532,7 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc)
<item>
<layout class="QHBoxLayout" name="horizontalLayout_9">
<item>
<spacer name="horizontalSpacer_5">
<spacer name="horizontalSpacer_3">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
@ -1588,24 +1552,16 @@ background: qlineargradient( x1:0 y1:0, x2:1 y2:0, stop:0 white, stop:1 #cccccc)
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="font">
<font>
<pointsize>14</pointsize>
</font>
</property>
<property name="text">
<string>You can manually adjust the time here if required:</string>
</property>
</widget>
</item>
<item>
<spacer name="horizontalSpacer_6">
<property name="orientation">
<enum>Qt::Horizontal</enum>
</property>
<property name="sizeHint" stdset="0">
<size>
<width>40</width>
<height>20</height>
</size>
</property>
</spacer>
</item>
<item>
<widget class="QDateTimeEdit" name="dateTimeEdit">
<property name="sizePolicy">