Discard sessions with first timestamp of 0 to fix phantom date problem.

This commit is contained in:
Seeker4 2019-06-25 06:23:04 -07:00
parent 43462f39d3
commit d58bdc9452
4 changed files with 30 additions and 7 deletions

View File

@ -107,15 +107,24 @@ void Day::addSession(Session *s)
auto mi = machines.find(s->type());
if (mi != machines.end()) {
if (mi.value() != s->machine()) {
qDebug() << "OSCAR can't add session" << s->session() << "to this day record, as it already contains a different machine of the same MachineType";
qDebug() << "OSCAR can't add session" << s->session()
<< "["+QDateTime::fromTime_t(s->session()).toString("MMM dd, yyyy hh:mm:ss")+"]"
<< "from machine" << mi.value()->serial() << "to machine" << s->machine()->serial()
<< "to this day record, as it already contains a different machine of the same MachineType" << s->type();
return;
}
} else {
machines[s->type()] = s->machine();
}
sessions.push_back(s);
if (s->first() == 0)
qWarning() << "Discarding session" << s->session()
<< "["+QDateTime::fromTime_t(s->session()).toString("MMM dd, yyyy hh:mm:ss")+"]"
<< "from machine" << s->machine()->serial() << "with first=0";
else
sessions.push_back(s);
}
EventDataType Day::calcMiddle(ChannelID code)
{
int c = p_profile->general->prefCalcMiddle();

View File

@ -1611,7 +1611,7 @@ int ResmedLoader::Open(const QString & dirpath)
path = path.section("/", 0, -2);
}
// Strip off DATALOG from path, and set newpath to the path contianing DATALOG
// Strip off DATALOG from path, and set newpath to the path containing DATALOG
if (path.endsWith(RMS9_STR_datalog)) {
newpath = path + "/";
path = path.section("/", 0, -2);

View File

@ -114,8 +114,14 @@ bool Machine::saveSessionInfo()
out << (int)sessionlist.size();
for (s = sessionlist.begin(); s != sessionlist.end(); ++s) {
Session * sess = s.value();
out << (quint32) sess->session();
out << (bool)(sess->enabled());
if (sess->s_first != 0) {
out << (quint32) sess->session();
out << (bool)(sess->enabled());
} else {
qWarning() << "Machine::SaveSessionInfo discarding session" << sess->s_session
<< "["+QDateTime::fromTime_t(sess->s_session).toString("MMM dd, yyyy hh:mm:ss")+"]"
<< "from machine" << serial() << "with first=0";
}
//out << sess->m_availableChannels;
}
@ -548,7 +554,8 @@ void Machine::setInfo(MachineInfo inf)
const QString Machine::getDataPath()
{
m_dataPath = p_pref->Get("{home}/Profiles/")+profile->user->userName()+"/"+info.loadername + "_" + (info.serial.isEmpty() ? hexid() : info.serial) + "/";
m_dataPath = p_pref->Get("{home}/Profiles/")+profile->user->userName()+"/"+info.loadername + "_"
+ (info.serial.isEmpty() ? hexid() : info.serial) + "/";
//if (m_dataPath.isEmpty()) {
// m_dataPath = profile->Get("{" + STR_GEN_DataFolder + "}/" + info.loadername + "_" + (info.serial.isEmpty() ? hexid() : info.serial)) + "/";
@ -740,7 +747,7 @@ bool Machine::SaveSession(Session *sess)
{
QString path = getDataPath();
if (sess->IsChanged()) { sess->Store(path); }
if (sess->IsChanged() && sess->first() != 0) { sess->Store(path); }
return true;
}

View File

@ -299,6 +299,13 @@ QDataStream & operator<<(QDataStream & out, const SessionSlice & slice)
bool Session::StoreSummary()
{
if (s_first == 0) {
qWarning() << "Session::StoreSummary discarding session" << s_session
<< "["+QDateTime::fromTime_t(s_session).toString("MMM dd, yyyy hh:mm:ss")+"]"
<< "from machine" << machine()->serial() << "with first=0";
return false;
}
QString filename = s_machine->getSummariesPath() + QString().sprintf("%08lx.000", s_session);
QFile file(filename);