mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Ignoring empty ResMed sessions
This commit is contained in:
parent
d75e8fcebd
commit
ea7add7a9e
@ -78,7 +78,7 @@ bool EDFParser::Parse()
|
||||
// break;
|
||||
//serialnumber+=recordingident[i];
|
||||
//}
|
||||
QDateTime startDate=QDateTime::fromString(QString::fromAscii(header.datetime,16),"dd.MM.yyHH.mm.ss");
|
||||
QDateTime startDate=QDateTime::fromString(QString::fromAscii(header.datetime,16),"dd.MM.yyHH.mm.ss").toUTC();
|
||||
QDate d2=startDate.date();
|
||||
if (d2.year()<2000) {
|
||||
d2.setYMD(d2.year()+100,d2.month(),d2.day());
|
||||
@ -107,7 +107,8 @@ bool EDFParser::Parse()
|
||||
return false;
|
||||
|
||||
enddate=startdate+dur_data_record*qint64(num_data_records);
|
||||
|
||||
if (dur_data_record==0)
|
||||
return false;
|
||||
|
||||
// this could be loaded quicker by transducer_type[signal] etc..
|
||||
|
||||
|
@ -226,7 +226,7 @@ Session *Machine::SessionExists(SessionID session)
|
||||
}
|
||||
Day *Machine::AddSession(Session *s,Profile *p)
|
||||
{
|
||||
double span;
|
||||
double span=0;
|
||||
assert(s!=NULL);
|
||||
assert(p!=NULL);
|
||||
|
||||
@ -251,6 +251,7 @@ Day *Machine::AddSession(Session *s,Profile *p)
|
||||
// less than n hours since last session yesterday?
|
||||
if (span < hours_since_last_session) {
|
||||
previous=true;
|
||||
} else {
|
||||
}
|
||||
}
|
||||
|
||||
@ -263,6 +264,7 @@ Day *Machine::AddSession(Session *s,Profile *p)
|
||||
|
||||
// Bedtime was late last night.
|
||||
if (span < hours_since_midnight) {
|
||||
|
||||
previous=true;
|
||||
}
|
||||
}
|
||||
@ -286,7 +288,8 @@ Day *Machine::AddSession(Session *s,Profile *p)
|
||||
//qDebug("Adding Profile Day %s",dstr.toAscii().data());
|
||||
day[date]=new Day(this);
|
||||
// Add this Day record to profile
|
||||
QDateTime d=QDateTime::fromMSecsSinceEpoch(date);
|
||||
QDateTime d=QDateTime::fromMSecsSinceEpoch(date).toUTC();
|
||||
qDebug() << "New day: " << d.toString("yyyy-MM-dd HH:mm:ss");
|
||||
p->AddDay(d.date(),day[date],m_type);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user