Track down zero time that led to future sessions

This commit is contained in:
Phil Olynyk 2020-05-07 16:43:52 -04:00
parent d1dac68454
commit 2da3a9cd86
3 changed files with 74 additions and 34 deletions

View File

@ -31,8 +31,8 @@ ResMedEDFInfo::~ResMedEDFInfo() { }
bool ResMedEDFInfo::Parse( ) // overrides and calls the super's Parse bool ResMedEDFInfo::Parse( ) // overrides and calls the super's Parse
{ {
if ( ! EDFInfo::Parse( ) ) { if ( ! EDFInfo::Parse( ) ) {
qWarning() << "EDFInfo::Parse failed!"; // qWarning() << "EDFInfo::Parse failed!";
sleep(1); // sleep(1);
return false; return false;
} }
@ -49,7 +49,7 @@ bool ResMedEDFInfo::Parse( ) // overrides and calls the super's Parse
if (!edfHdr.startdate_orig.isValid()) { if (!edfHdr.startdate_orig.isValid()) {
qDebug() << "Invalid date time retreieved parsing EDF File " << filename; qDebug() << "Invalid date time retreieved parsing EDF File " << filename;
sleep(1); // sleep(1);
return false; return false;
} }
@ -57,7 +57,7 @@ bool ResMedEDFInfo::Parse( ) // overrides and calls the super's Parse
//startdate-=timezoneOffset(); //startdate-=timezoneOffset();
if (startdate == 0) { if (startdate == 0) {
qDebug() << "Invalid startdate = 0 in EDF File " << filename; qDebug() << "Invalid startdate = 0 in EDF File " << filename;
sleep(1); // sleep(1);
return false; return false;
} }

View File

@ -402,7 +402,7 @@ int ResmedLoader::Open(const QString & dirpath)
} else { // passed the tests, stuff it into the map } else { // passed the tests, stuff it into the map
QDate date = stredf->edfHdr.startdate_orig.date(); QDate date = stredf->edfHdr.startdate_orig.date();
long int days = stredf->GetNumDataRecords(); long int days = stredf->GetNumDataRecords();
qDebug() << strpath << "starts at" << date << "for" << days; qDebug() << strpath.section("/",-2,-1) << "starts at" << date << "for" << days;
STRmap[date] = STRFile(strpath, days, stredf); STRmap[date] = STRFile(strpath, days, stredf);
} }
} else { } else {
@ -466,7 +466,7 @@ int ResmedLoader::Open(const QString & dirpath)
date = stredf->edfHdr.startdate_orig.date(); date = stredf->edfHdr.startdate_orig.date();
days = stredf->GetNumDataRecords(); days = stredf->GetNumDataRecords();
if (STRmap.contains(date)) { // Keep the longer of the two STR files if (STRmap.contains(date)) { // Keep the longer of the two STR files
qDebug() << filename << "overlaps" << STRmap[date].filename << "for" << days; qDebug() << filename << "overlaps" << STRmap[date].filename.section("/",-2,-1) << "for" << days;
if (days <= STRmap[date].days) { if (days <= STRmap[date].days) {
qDebug() << "Skipping" << filename; qDebug() << "Skipping" << filename;
delete stredf; delete stredf;
@ -476,7 +476,7 @@ int ResmedLoader::Open(const QString & dirpath)
// qDebug() << "Resetting STR date from" << date.toString() << "to first of month ... WHY???"; // qDebug() << "Resetting STR date from" << date.toString() << "to first of month ... WHY???";
// date = QDate(date.year(), date.month(), 1); // date = QDate(date.year(), date.month(), 1);
qDebug() << fi.canonicalFilePath() << "starts at" << date << "for" << days; qDebug() << fi.canonicalFilePath().section("/", -2,-1) << "starts at" << date << "for" << days;
STRmap[date] = STRFile(fi.canonicalFilePath(), days, stredf); STRmap[date] = STRFile(fi.canonicalFilePath(), days, stredf);
} // end for walking the STR_Backup directory } // end for walking the STR_Backup directory
#ifdef STR_DEBUG #ifdef STR_DEBUG
@ -1727,7 +1727,7 @@ EDFduration getEDFDuration(const QString & filename)
d2.setDate(d2.year() + 100, d2.month(), d2.day()); d2.setDate(d2.year() + 100, d2.month(), d2.day());
startDate.setDate(d2); startDate.setDate(d2);
} }
if ( ! startDate.isValid() ) { if ( (! startDate.isValid()) || ( startDate > QDateTime::currentDateTime()) ) {
qDebug() << "Invalid date time retreieved parsing EDF duration for" << filename; qDebug() << "Invalid date time retreieved parsing EDF duration for" << filename;
qDebug() << "Time zone(Utc) is" << startDate.timeZone().abbreviation(QDateTime::currentDateTimeUtc()); qDebug() << "Time zone(Utc) is" << startDate.timeZone().abbreviation(QDateTime::currentDateTimeUtc());
qDebug() << "Time zone is" << startDate.timeZone().abbreviation(QDateTime::currentDateTime()); qDebug() << "Time zone is" << startDate.timeZone().abbreviation(QDateTime::currentDateTime());
@ -1954,7 +1954,7 @@ struct OverlappingEDF {
void ResDayTask::run() void ResDayTask::run()
{ {
if (resday->files.size() == 0) { // No EDF files??? if (resday->files.size() == 0) { // No EDF files???
if ( ! resday->str.date.isValid()) { if (( ! resday->str.date.isValid()) || (resday->str.date > QDate::currentDate()) ) {
// This condition should be impossible, but just in case something gets fudged up elsewhere later // This condition should be impossible, but just in case something gets fudged up elsewhere later
qDebug() << "No edf files in resday" << resday->date << "and the str date is inValid"; qDebug() << "No edf files in resday" << resday->date << "and the str date is inValid";
return; return;
@ -1967,6 +1967,11 @@ void ResDayTask::run()
for (int i=0;i<resday->str.maskon.size();++i) { for (int i=0;i<resday->str.maskon.size();++i) {
quint32 maskon = resday->str.maskon[i]; quint32 maskon = resday->str.maskon[i];
quint32 maskoff = resday->str.maskoff[i]; quint32 maskoff = resday->str.maskoff[i];
if ( (maskon > QDateTime::currentDateTime().toTime_t()) ||
(maskoff > QDateTime::currentDateTime().toTime_t()) ) {
qWarning() << "mask time in future" << resday->date;
continue;
}
if (((maskon>0) && (maskoff>0)) && (maskon != maskoff)) { //ignore very short sessions if (((maskon>0) && (maskoff>0)) && (maskon != maskoff)) { //ignore very short sessions
Session * sess = new Session(mach, maskon); Session * sess = new Session(mach, maskon);
sess->set_first(quint64(maskon) * 1000L); sess->set_first(quint64(maskon) * 1000L);
@ -2003,6 +2008,11 @@ void ResDayTask::run()
if (resday->str.date.isValid()) { if (resday->str.date.isValid()) {
//First populate Overlaps with Mask ON/OFF events //First populate Overlaps with Mask ON/OFF events
for (int i=0; i < maskOnSize; ++i) { for (int i=0; i < maskOnSize; ++i) {
if ( (resday->str.maskon[i] > QDateTime::currentDateTime().toTime_t()) ||
(resday->str.maskoff[i] > QDateTime::currentDateTime().toTime_t()) ) {
qWarning() << "mask time in future" << resday->date;
continue;
}
if (((resday->str.maskon[i]>0) || (resday->str.maskoff[i]>0)) if (((resday->str.maskon[i]>0) || (resday->str.maskoff[i]>0))
&& (resday->str.maskon[i] != resday->str.maskoff[i]) ) { && (resday->str.maskon[i] != resday->str.maskoff[i]) ) {
OverlappingEDF ov; OverlappingEDF ov;
@ -2045,6 +2055,11 @@ void ResDayTask::run()
} }
if (!added) { // Didn't get a hit, look at the EDF files duration and check for an overlap if (!added) { // Didn't get a hit, look at the EDF files duration and check for an overlap
EDFduration dur = getEDFDuration(fullpath); EDFduration dur = getEDFDuration(fullpath);
if ((dur.start > (QDateTime::currentDateTime().toMSecsSinceEpoch()/1000L)) ||
(dur.end > (QDateTime::currentDateTime().toMSecsSinceEpoch()/1000L)) ) {
qWarning() << "Future Date in" << fullpath;
continue; // skip this file
}
for (int i=overlaps.size()-1; i>=0; --i) { for (int i=overlaps.size()-1; i>=0; --i) {
OverlappingEDF & ovr = overlaps[i]; OverlappingEDF & ovr = overlaps[i];
if ((ovr.start < dur.end) && (dur.start < ovr.end)) { if ((ovr.start < dur.end) && (dur.start < ovr.end)) {
@ -2072,7 +2087,7 @@ void ResDayTask::run()
ov.end = dur.end; ov.end = dur.end;
ov.filemap.insert(filetime_t, filename); ov.filemap.insert(filetime_t, filename);
#ifdef SESSION_DEBUG #ifdef SESSION_DEBUG
qDebug() << "Creating session for" << filename; qDebug() << "Creating overlap for" << filename;
qDebug() << "Starts:" << dur.start << "Ends:" << dur.end; qDebug() << "Starts:" << dur.start << "Ends:" << dur.end;
#endif #endif
overlaps.append(ov); overlaps.append(ov);
@ -2172,13 +2187,14 @@ void ResDayTask::run()
qDebug() << "Session" << sess->session() qDebug() << "Session" << sess->session()
<< "["+QDateTime::fromTime_t(sess->session()).toString("MMM dd, yyyy hh:mm:ss")+"]" << "["+QDateTime::fromTime_t(sess->session()).toString("MMM dd, yyyy hh:mm:ss")+"]"
<< "has zero duration"; << "has zero duration";
qDebug() << QString("Start: %1").arg(sess->realFirst(),0,16) << QString("End: %1").arg(sess->realLast(),0,16);
} }
if (sess->length() < 0) { if (sess->length() < 0) {
// we want empty sessions even though they are crap // we want empty sessions even though they are crap
qDebug() << "Session" << sess->session() qDebug() << "Session" << sess->session()
<< "["+QDateTime::fromTime_t(sess->session()).toString("MMM dd, yyyy hh:mm:ss")+"]" << "["+QDateTime::fromTime_t(sess->session()).toString("MMM dd, yyyy hh:mm:ss")+"]"
<< "has negative duration"; << "has negative duration";
qDebug() << "Start:" << sess->realFirst() << "End:" << sess->realLast(); qDebug() << QString("Start: %1").arg(sess->realFirst(),0,16) << QString("End: %1").arg(sess->realLast(),0,16);
} }
if (resday->str.date.isValid()) { if (resday->str.date.isValid()) {
@ -2195,9 +2211,8 @@ void ResDayTask::run()
#endif #endif
StoreSettings(sess, R); StoreSettings(sess, R);
} else { } else { // No corresponding STR.edf record, but we have EDF files
// No corresponding STR.edf record, but we have EDF files #ifdef STR_DEBUG
#ifdef SESSION_DEBUG
qDebug() << "EDF files without STR record" << resday->date.toString(); qDebug() << "EDF files without STR record" << resday->date.toString();
#endif #endif
bool foundprev = false; bool foundprev = false;
@ -2221,7 +2236,6 @@ void ResDayTask::run()
foundprev = true; foundprev = true;
break; break;
} }
} }
loader->sessionMutex.unlock(); loader->sessionMutex.unlock();
sess->setNoSettings(true); sess->setNoSettings(true);
@ -2233,7 +2247,7 @@ void ResDayTask::run()
GuessPAPMode(sess); GuessPAPMode(sess);
} }
} }
} } // end else no STR record for these edf files
sess->UpdateSummaries(); sess->UpdateSummaries();
#ifdef SESSION_DEBUG #ifdef SESSION_DEBUG
@ -2245,6 +2259,12 @@ void ResDayTask::run()
// loader->saveMutex.lock(); // loader->saveMutex.lock();
// loader->saveMutex.unlock(); // loader->saveMutex.unlock();
if ( (QDateTime::fromTime_t(sess->session()) > QDateTime::currentDateTime()) ||
(sess->realFirst() == 0) || (sess->realLast() == 0) )
qWarning() << "Skipping Future session:" << sess->session()
<< "["+QDateTime::fromTime_t(sess->session()).toString("MMM dd, yyyy hh:mm:ss")+"]"
<< "\noriginal date is" << resday->date.toString();
else
save(loader, sess); save(loader, sess);
// Free the memory used by this session // Free the memory used by this session
@ -2272,9 +2292,10 @@ bool ResmedLoader::LoadCSL(Session *sess, const QString & path)
time.start(); time.start();
#endif #endif
QString filename = path.section(-2, -1);
ResMedEDFInfo edf; ResMedEDFInfo edf;
if ( ! edf.Open(path) ) { if ( ! edf.Open(path) ) {
qDebug() << "LoadCSL failed to open" << path; qDebug() << "LoadCSL failed to open" << filename;
return false; return false;
} }
@ -2284,7 +2305,7 @@ bool ResmedLoader::LoadCSL(Session *sess, const QString & path)
#endif #endif
if (!edf.Parse()) { if (!edf.Parse()) {
qDebug() << "LoadCSL failed to parse" << path; qDebug() << "LoadCSL failed to parse" << filename;
return false; return false;
} }
@ -2350,9 +2371,10 @@ bool ResmedLoader::LoadEVE(Session *sess, const QString & path)
QTime time; QTime time;
time.start(); time.start();
#endif #endif
QString filename = path.section(-2, -1);
ResMedEDFInfo edf; ResMedEDFInfo edf;
if ( ! edf.Open(path) ) { if ( ! edf.Open(path) ) {
qDebug() << "LoadEVE failed to open" << path; qDebug() << "LoadEVE failed to open" << filename;
return false; return false;
} }
#ifdef DEBUG_EFFICIENCY #ifdef DEBUG_EFFICIENCY
@ -2361,7 +2383,7 @@ bool ResmedLoader::LoadEVE(Session *sess, const QString & path)
#endif #endif
if (!edf.Parse()) { if (!edf.Parse()) {
qDebug() << "LoadEVE failed to parse" << path; qDebug() << "LoadEVE failed to parse" << filename;
return false; return false;
} }
@ -2444,9 +2466,10 @@ bool ResmedLoader::LoadBRP(Session *sess, const QString & path)
QTime time; QTime time;
time.start(); time.start();
#endif #endif
QString filename = path.section(-2, -1);
ResMedEDFInfo edf; ResMedEDFInfo edf;
if ( ! edf.Open(path) ) { if ( ! edf.Open(path) ) {
qDebug() << "LoadBRP failed to open" << path; qDebug() << "LoadBRP failed to open" << filename;
return false; return false;
} }
#ifdef DEBUG_EFFICIENCY #ifdef DEBUG_EFFICIENCY
@ -2454,7 +2477,7 @@ bool ResmedLoader::LoadBRP(Session *sess, const QString & path)
time.start(); time.start();
#endif #endif
if (!edf.Parse()) { if (!edf.Parse()) {
qDebug() << "LoadBRP failed to parse" << path; qDebug() << "LoadBRP failed to parse" << filename;
return false; return false;
} }
#ifdef DEBUG_EFFICIENCY #ifdef DEBUG_EFFICIENCY
@ -2545,9 +2568,10 @@ bool ResmedLoader::LoadSAD(Session *sess, const QString & path)
time.start(); time.start();
#endif #endif
QString filename = path.section(-2, -1);
ResMedEDFInfo edf; ResMedEDFInfo edf;
if ( ! edf.Open(path) ) { if ( ! edf.Open(path) ) {
qDebug() << "LoadSAD failed to open" << path; qDebug() << "LoadSAD failed to open" << filename;
return false; return false;
} }
@ -2557,7 +2581,7 @@ bool ResmedLoader::LoadSAD(Session *sess, const QString & path)
#endif #endif
if (!edf.Parse()) { if (!edf.Parse()) {
qDebug() << "LoadSAD failed to parse" << path; qDebug() << "LoadSAD failed to parse" << filename;
return false; return false;
} }
@ -2619,9 +2643,10 @@ bool ResmedLoader::LoadPLD(Session *sess, const QString & path)
QTime time; QTime time;
time.start(); time.start();
#endif #endif
QString filename = path.section(-2, -1);
ResMedEDFInfo edf; ResMedEDFInfo edf;
if ( ! edf.Open(path) ) { if ( ! edf.Open(path) ) {
qDebug() << "LoadPLD failed to open" << path; qDebug() << "LoadPLD failed to open" << filename;
return false; return false;
} }
#ifdef DEBUG_EFFICIENCY #ifdef DEBUG_EFFICIENCY
@ -2630,7 +2655,7 @@ bool ResmedLoader::LoadPLD(Session *sess, const QString & path)
#endif #endif
if (!edf.Parse()) { if (!edf.Parse()) {
qDebug() << "LoadPLD failed to parse" << path; qDebug() << "LoadPLD failed to parse" << filename;
return false; return false;
} }

View File

@ -1622,6 +1622,7 @@ void packEventList(EventList *el, EventDataType minval = 0)
} }
} }
lastt = t; lastt = t;
} }
@ -1862,12 +1863,15 @@ void MainWindow::RestartApplication(bool force_login, QString cmdline)
void MainWindow::on_actionPurge_Current_Day_triggered() void MainWindow::on_actionPurge_Current_Day_triggered()
{ {
if (!daily) return; if (!daily)
return;
QDate date = daily->getDate(); QDate date = daily->getDate();
qDebug() << "Purging CPAP data from" << date;
daily->Unload(date); daily->Unload(date);
Day *day = p_profile->GetDay(date, MT_CPAP); Day *day = p_profile->GetDay(date, MT_CPAP);
Machine *cpap = nullptr; Machine *cpap = nullptr;
if (day) cpap = day->machine(MT_CPAP); if (day)
cpap = day->machine(MT_CPAP);
if (cpap) { if (cpap) {
QList<Session *>::iterator s; QList<Session *>::iterator s;
@ -1876,6 +1880,9 @@ void MainWindow::on_actionPurge_Current_Day_triggered()
QList<SessionID> sidlist; QList<SessionID> sidlist;
for (s = day->begin(); s != day->end(); ++s) { for (s = day->begin(); s != day->end(); ++s) {
list.push_back(*s); list.push_back(*s);
qDebug() << "Purging session ID:" << (*s)->session() << "["+QDateTime::fromTime_t((*s)->session()).toString()+"]";
qDebug() << "First Time:" << QDateTime::fromMSecsSinceEpoch((*s)->realFirst()).toString();
qDebug() << "Last Time:" << QDateTime::fromMSecsSinceEpoch((*s)->realLast()).toString();
sidlist.push_back((*s)->session()); sidlist.push_back((*s)->session());
} }
@ -1884,6 +1891,7 @@ void MainWindow::on_actionPurge_Current_Day_triggered()
QFile impfile(cpap->getDataPath()+"/imported_files.csv"); QFile impfile(cpap->getDataPath()+"/imported_files.csv");
if (impfile.exists()) { if (impfile.exists()) {
qDebug() << "Obsolet file exists" << impfile.fileName();
if (impfile.open(QFile::ReadOnly)) { if (impfile.open(QFile::ReadOnly)) {
QTextStream impstream(&impfile); QTextStream impstream(&impfile);
QString serial; QString serial;
@ -1920,7 +1928,7 @@ void MainWindow::on_actionPurge_Current_Day_triggered()
out.flush(); out.flush();
} }
impfile.close(); impfile.close();
} } // end of obsolte file code
QFile rxcache(p_profile->Get("{" + STR_GEN_DataFolder + "}/RXChanges.cache" )); QFile rxcache(p_profile->Get("{" + STR_GEN_DataFolder + "}/RXChanges.cache" ));
rxcache.remove(); rxcache.remove();
@ -1942,6 +1950,11 @@ void MainWindow::on_actionPurge_Current_Day_triggered()
daily->clearLastDay(); daily->clearLastDay();
daily->LoadDate(date); daily->LoadDate(date);
if (overview)
overview->ReloadGraphs();
if (welcome)
welcome->refreshPage();
GenerateStatistics();
} }
void MainWindow::on_actionRebuildCPAP(QAction *action) void MainWindow::on_actionRebuildCPAP(QAction *action)
@ -2002,13 +2015,15 @@ void MainWindow::on_actionRebuildCPAP(QAction *action)
} else { } else {
} }
} }
if (overview) overview->ReloadGraphs(); if (overview)
overview->ReloadGraphs();
if (daily) { if (daily) {
daily->Unload(); daily->Unload();
daily->clearLastDay(); // otherwise Daily will crash daily->clearLastDay(); // otherwise Daily will crash
daily->ReloadGraphs(); daily->ReloadGraphs();
} }
if (welcome) welcome->refreshPage(); if (welcome)
welcome->refreshPage();
PopulatePurgeMenu(); PopulatePurgeMenu();
GenerateStatistics(); GenerateStatistics();
p_profile->StoreMachines(); p_profile->StoreMachines();