add debug code from other repo - DON'T USE that one!

This commit is contained in:
Phil Olynyk 2017-09-21 10:48:15 -04:00
parent 7c367b5f01
commit 552d1aef95

View File

@ -65,7 +65,8 @@ int MD300W1Loader::Open(QString path)
{
// Only one active Oximeter module at a time, set in preferences
qDebug() << "MD300W1 Loader opening " << path;
qDebug() << "MD300W1 Loader opening " << path;
m_itemCnt = 0;
m_itemTotal = 0;
@ -158,13 +159,16 @@ void MD300W1Loader::resetImportTimeout()
bool MD300W1Loader::readDATFile(QString path)
{
QFile file(path);
qDebug() << "MD300W Loader attempting to read " << path;
if (!file.exists()) {
qDebug() << "File does not exist: " << path;
qDebug() << "File does not exist: " << path;
return false;
}
if (!file.open(QFile::ReadOnly)) {
qDebug() << "Can't open file R/O: " << path;
qDebug() << "Can't open file R/O: " << path;
return false;
}
@ -194,7 +198,7 @@ bool MD300W1Loader::readDATFile(QString path)
if (datetime.date().year() < 2000) datetime = datetime.addYears(100);
ts = datetime.toTime_t();
gap = ts - lasttime;
if (gap > 1) {
if (gap > 1) { // always true for first record, b/c time started on 1 Jan 1970
if (gap < 360) {
// Less than 5 minutes? Merge session
gap--;
@ -203,7 +207,7 @@ bool MD300W1Loader::readDATFile(QString path)
oxirec->append(OxiRecord(0,0));
}
} else {
// Create a new session
// Create a new session, always for first record
qDebug() << "Create session for " << datestr;
qDebug() << "Create session for " << datetime.toString("yyyy.MM.dd HH:mm:ss");
oxirec = new QVector<OxiRecord>;