Add debugging for missing session info

This commit is contained in:
Phil Olynyk 2020-02-06 09:13:16 -05:00
parent da29e35766
commit bd6dabd3e5
2 changed files with 61 additions and 34 deletions

View File

@ -356,17 +356,17 @@ int ResmedLoader::Open(const QString & dirpath)
Machine *mach = p_profile->lookupMachine(info.serial, info.loadername); Machine *mach = p_profile->lookupMachine(info.serial, info.loadername);
if ( mach ) { // we have seen this machine if ( mach ) { // we have seen this machine
qDebug() << "We have seen this machime"; qDebug() << "We have seen this machime";
QDate lastDate = p_profile->LastDay(MT_CPAP); // QDate lastDate = p_profile->LastDay(MT_CPAP);
firstImportDay = lastDate.addDays(-1); // firstImportDay = lastDate.addDays(-1);
} else { // Starting from new beginnings - new or purged } else { // Starting from new beginnings - new or purged
qDebug() << "New machine or just purged"; qDebug() << "New machine or just purged";
QDateTime ignoreBefore = p_profile->session->ignoreOlderSessionsDate();
bool ignoreOldSessions = p_profile->session->ignoreOlderSessions();
mach = p_profile->CreateMachine( info );
if (ignoreOldSessions)
firstImportDay = ignoreBefore.date();
} }
QDateTime ignoreBefore = p_profile->session->ignoreOlderSessionsDate();
bool ignoreOldSessions = p_profile->session->ignoreOlderSessions();
mach = p_profile->CreateMachine( info );
if (ignoreOldSessions)
firstImportDay = ignoreBefore.date();
qDebug() << "First day to import: " << firstImportDay.toString(); qDebug() << "First day to import: " << firstImportDay.toString();
bool importing_backups = false; bool importing_backups = false;
@ -435,10 +435,10 @@ int ResmedLoader::Open(const QString & dirpath)
ResMedEDFInfo * stredf = new ResMedEDFInfo(); ResMedEDFInfo * stredf = new ResMedEDFInfo();
if ( stredf->Open(fi.canonicalFilePath() ) ) { if ( stredf->Open(fi.canonicalFilePath() ) ) {
qDebug() << "Failed to open" << filename; qDebug() << "Failed to open" << filename;
delete stredf; delete stredf;
continue; continue;
} }
if (!stredf->Parse()) { if (!stredf->Parse()) {
qDebug() << "Faulty STR file" << filename; qDebug() << "Faulty STR file" << filename;
delete stredf; delete stredf;
@ -453,6 +453,7 @@ int ResmedLoader::Open(const QString & dirpath)
// Don't trust the filename date, pick the one inside the STR... // Don't trust the filename date, pick the one inside the STR...
date = stredf->edfHdr.startdate_orig.date(); date = stredf->edfHdr.startdate_orig.date();
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);
STRmap[date] = STRFile(fi.canonicalFilePath(), stredf); STRmap[date] = STRFile(fi.canonicalFilePath(), stredf);
@ -468,11 +469,11 @@ int ResmedLoader::Open(const QString & dirpath)
// We are done with the Parsed STR EDF objects, so delete them // We are done with the Parsed STR EDF objects, so delete them
for (auto it=STRmap.begin(), end=STRmap.end(); it != end; ++it) { for (auto it=STRmap.begin(), end=STRmap.end(); it != end; ++it) {
qDebug() << "Deleting edf of" << it.value().filename; qDebug() << "Deleting edf of" << it.value().filename;
sleep(1); // sleep(1);
delete it.value().edf; delete it.value().edf;
} }
qDebug() << "Finished STRmap cleanup"; qDebug() << "Finished STRmap cleanup";
sleep(1); // sleep(1);
/////////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////////
// Create the backup folder for storing a copy of everything in.. // Create the backup folder for storing a copy of everything in..
@ -515,13 +516,14 @@ int ResmedLoader::Open(const QString & dirpath)
return 0; return 0;
qDebug() << "Starting scan of DATALOG"; qDebug() << "Starting scan of DATALOG";
sleep(1); // sleep(1);
ScanFiles(mach, datalogPath, firstImportDay); ScanFiles(mach, datalogPath, firstImportDay);
if (isAborted()) if (isAborted())
return 0; return 0;
qDebug() << "Finished DATALOG scan"; qDebug() << "Finished DATALOG scan";
sleep(1); // sleep(1);
// Now at this point we have resdayList populated with processable summary and EDF files data // Now at this point we have resdayList populated with processable summary and EDF files data
// that can be processed in threads.. // that can be processed in threads..
@ -904,6 +906,8 @@ void ResmedLoader::ProcessSTRfiles(Machine *mach, QMap<QDate, STRFile> & STRmap,
STRFile & file = it.value(); STRFile & file = it.value();
ResMedEDFInfo & str = *file.edf; ResMedEDFInfo & str = *file.edf;
totalRecs += str.GetNumDataRecords(); totalRecs += str.GetNumDataRecords();
qDebug() << "STR file is" << file.filename;
qDebug() << "First day" << QDateTime::fromMSecsSinceEpoch(str.startdate, EDFInfo::localNoDST).date().toString() << "for" << totalRecs << "days";
} }
emit updateMessage(QObject::tr("Parsing STR.edf records...")); emit updateMessage(QObject::tr("Parsing STR.edf records..."));
@ -930,14 +934,18 @@ void ResmedLoader::ProcessSTRfiles(Machine *mach, QMap<QDate, STRFile> & STRmap,
} }
// ResMed and their consistent naming and spacing... :/ // ResMed and their consistent naming and spacing... :/
EDFSignal *maskon = str.lookupLabel("Mask On"); EDFSignal *maskon = str.lookupLabel("Mask On"); // Series 9 machines
if (!maskon) { if (!maskon) {
maskon = str.lookupLabel("MaskOn"); maskon = str.lookupLabel("MaskOn"); // Series 10 machines
} }
EDFSignal *maskoff = str.lookupLabel("Mask Off"); EDFSignal *maskoff = str.lookupLabel("Mask Off");
if (!maskoff) { if (!maskoff) {
maskoff = str.lookupLabel("MaskOff"); maskoff = str.lookupLabel("MaskOff");
} }
EDFSignal *maskeventcount = str.lookupLabel("Mask Events");
if (!maskeventcount) {
maskeventcount = str.lookupLabel("MaskEvents");
}
EDFSignal *sig = nullptr; EDFSignal *sig = nullptr;
@ -949,7 +957,7 @@ void ResmedLoader::ProcessSTRfiles(Machine *mach, QMap<QDate, STRFile> & STRmap,
// if (ignoreOldSessions) { // if (ignoreOldSessions) {
if (date < firstImport) { if (date < firstImport) {
#ifdef SESSION_DEBUG #ifdef SESSION_DEBUG
qDebug() << "Skipping" << date.toString() << "Before" << ignoreBefore.date().toString(); qDebug() << "Skipping" << date.toString() << "Before" << firstImport.toString();
#endif #endif
continue; continue;
} }
@ -958,6 +966,11 @@ void ResmedLoader::ProcessSTRfiles(Machine *mach, QMap<QDate, STRFile> & STRmap,
auto rit = resdayList.find(date); auto rit = resdayList.find(date);
if (rit != resdayList.end()) { if (rit != resdayList.end()) {
// Already seen this record.. should check if the data is the same, but meh. // Already seen this record.. should check if the data is the same, but meh.
// At least check the maskeventcount to see if it changed...
// if ( maskeventcount* != rit...maskevents ) {
// qDebug() << "Maske events don't match, purge" << rit...date().toString;
// purge...
// }
#ifdef SESSION_DEBUG #ifdef SESSION_DEBUG
qDebug() << "Skipping" << date.toString() << "Already saw this one"; qDebug() << "Skipping" << date.toString() << "Already saw this one";
#endif #endif
@ -984,7 +997,7 @@ void ResmedLoader::ProcessSTRfiles(Machine *mach, QMap<QDate, STRFile> & STRmap,
rit = resdayList.insert(date, ResMedDay(date)); rit = resdayList.insert(date, ResMedDay(date));
// qDebug() << "Setting up STRRecord for" << date.toString(); qDebug() << "Setting up STRRecord for" << date.toString();
// sleep(1); // sleep(1);
STRRecord &R = rit.value().str; STRRecord &R = rit.value().str;
@ -998,24 +1011,35 @@ void ResmedLoader::ProcessSTRfiles(Machine *mach, QMap<QDate, STRFile> & STRmap,
// Scan the mask on/off events by minute // Scan the mask on/off events by minute
R.maskon.resize(maskon->sampleCnt); R.maskon.resize(maskon->sampleCnt);
R.maskoff.resize(maskoff->sampleCnt); R.maskoff.resize(maskoff->sampleCnt);
int lastOn = -1;
int lastOff = -1;
for (int s = 0; s < maskon->sampleCnt; ++s) { for (int s = 0; s < maskon->sampleCnt; ++s) {
qint32 on = maskon->dataArray[recstart + s]; // these on/off times are minutes since noon qint32 on = maskon->dataArray[recstart + s]; // these on/off times are minutes since noon
qint32 off = maskoff->dataArray[recstart + s]; qint32 off = maskoff->dataArray[recstart + s];
if ( on > 0 ) { // convert them to seconds since midnight
R.maskon[s] = (on>0) ? (noonstamp + (on * 60)) : 0; // convert them to seconds since midnight lastOn = s;
R.maskoff[s] = (off>0) ? (noonstamp + (off * 60)) : 0; R.maskon[s] = (noonstamp + (on * 60));
} else
R.maskon[s] = 0;
if ( off > 0 ) {
lastOff = s;
R.maskoff[s] = (noonstamp + (off * 60));
} else
R.maskoff[s] = 0;
} }
// two conditions that need dealing with, mask running at noon start, and finishing at noon start.. // two conditions that need dealing with, mask running at noon start, and finishing at noon start..
// (Sessions are forcibly split by resmed.. why the heck don't they store it that way???) // (Sessions are forcibly split by resmed.. why the heck don't they store it that way???)
if ((R.maskon[0]==0) && (R.maskoff[0]>0)) { if ((R.maskon[0]==0) && (R.maskoff[0]>0)) {
R.maskon[0] = noonstamp; R.maskon[0] = noonstamp;
} // TODO This should be last non-zero sample, not the last sample in the array } // TODO This should be last non-zero sample, not the last sample in the array
if ((R.maskon[maskon->sampleCnt-1] > 0) && (R.maskoff[maskoff->sampleCnt-1] == 0)) { // DONE
R.maskoff[maskoff->sampleCnt-1] = QDateTime(date,QTime(12,0,0)).addDays(1).toTime_t() - 1; if ((R.maskon[lastOn] > 0) && (R.maskoff[lastOff] == 0)) {
R.maskoff[lastOff] = QDateTime(date,QTime(12,0,0)).addDays(1).toTime_t() - 1;
} }
R.maskevents = maskeventcount->dataArray[rec];
CPAPMode mode = MODE_UNKNOWN; CPAPMode mode = MODE_UNKNOWN;
if ((sig = str.lookupSignal(CPAP_Mode))) { if ((sig = str.lookupSignal(CPAP_Mode))) {
@ -1354,11 +1378,11 @@ void ResmedLoader::ProcessSTRfiles(Machine *mach, QMap<QDate, STRFile> & STRmap,
if ((sig = str.lookupLabel("S.Tube"))) { if ((sig = str.lookupLabel("S.Tube"))) {
R.s_Tube = EventDataType(sig->dataArray[rec]) * sig->gain + sig->offset; R.s_Tube = EventDataType(sig->dataArray[rec]) * sig->gain + sig->offset;
} }
// qDebug() << "Finished" << date.toString(); qDebug() << "Finished" << date.toString();
// sleep(1); // sleep(1);
} }
} }
// qDebug() << "Finished ParseSTR"; qDebug() << "Finished ProcessSTR";
// sleep(3); // sleep(3);
} }
@ -1416,9 +1440,10 @@ void BackupSTRfiles( const QString path, const QString strBackupPath, MachineInf
for (auto & filename : strfiles) { for (auto & filename : strfiles) {
ResMedEDFInfo * stredf = new ResMedEDFInfo(); ResMedEDFInfo * stredf = new ResMedEDFInfo();
if ( ! stredf->Open(filename) ) { if ( ! stredf->Open(filename) ) {
qDebug() << "Failed to open" << filename; qDebug() << "Failed to open" << filename;
continue; delete stredf;
} continue;
}
if ( ! stredf->Parse()) { if ( ! stredf->Parse()) {
qDebug() << "Faulty STR file" << filename; qDebug() << "Faulty STR file" << filename;
delete stredf; delete stredf;
@ -1432,6 +1457,7 @@ void BackupSTRfiles( const QString path, const QString strBackupPath, MachineInf
QDate date = stredf->edfHdr.startdate_orig.date(); QDate date = stredf->edfHdr.startdate_orig.date();
date = QDate(date.year(), date.month(), 1); date = QDate(date.year(), date.month(), 1);
if (STRmap.contains(date)) { if (STRmap.contains(date)) {
qDebug() << "STRmap already contains" << date.toString("YYYY-MM-dd");
delete stredf; delete stredf;
continue; continue;
} }
@ -1468,6 +1494,7 @@ void BackupSTRfiles( const QString path, const QString strBackupPath, MachineInf
STRmap[date] = STRFile(backupfile, stredf); STRmap[date] = STRFile(backupfile, stredf);
} // end for walking the STR files list } // end for walking the STR files list
// qDebug() << "STRmap has" << STRmap.size{} << "entries";
} }
QHash<QString, QString> parseIdentLine( const QString line, MachineInfo * info) QHash<QString, QString> parseIdentLine( const QString line, MachineInfo * info)
@ -1887,10 +1914,10 @@ void ResDayTask::run()
QList<OverlappingEDF> overlaps; QList<OverlappingEDF> overlaps;
int maskevents = resday->str.maskon.size(); int maskOnSize = resday->str.maskon.size();
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 < maskevents; ++i) { for (int i=0; i < maskOnSize; ++i) {
if ((resday->str.maskon[i]>0) || (resday->str.maskoff[i]>0)) { if ((resday->str.maskon[i]>0) || (resday->str.maskoff[i]>0)) {
OverlappingEDF ov; OverlappingEDF ov;
ov.start = resday->str.maskon[i]; ov.start = resday->str.maskon[i];

View File

@ -21,7 +21,7 @@
//******************************************************************************************** //********************************************************************************************
// Please INCREMENT the following value when making changes to this loaders implementation. // Please INCREMENT the following value when making changes to this loaders implementation.
// //
const int resmed_data_version = 12; const int resmed_data_version = 13;
// //
//******************************************************************************************** //********************************************************************************************