diff --git a/SleepLib/machine.cpp b/SleepLib/machine.cpp index c75a5ce3..697193cf 100644 --- a/SleepLib/machine.cpp +++ b/SleepLib/machine.cpp @@ -211,7 +211,7 @@ Machine::Machine(Profile *p,MachineID id) Machine::~Machine() { qDebug() << "Destroy Machine"; - map::iterator d; + map::iterator d; for (d=day.begin();d!=day.end();d++) { delete d->second; } @@ -233,9 +233,14 @@ Day *Machine::AddSession(Session *s,Profile *p) if (s->session()>highest_sessionid) highest_sessionid=s->session(); - qint64 date=s->first()/86400000; - date--; //=date.addDays(-1); - date*=86400000; + QDateTime d1,d2=QDateTime::fromMSecsSinceEpoch(s->first()); + + QDate date=d2.date(); + date.addDays(-1); + + //qint64 date=s->first()/86400000; + //date--; //=date.addDays(-1); + //date*=86400000; const int hours_since_last_session=4; const int hours_since_midnight=12; @@ -251,16 +256,15 @@ Day *Machine::AddSession(Session *s,Profile *p) // less than n hours since last session yesterday? if (span < hours_since_last_session) { previous=true; - } else { } } if (!previous) { // Calculate Hours since midnight. - qint64 t=s->first()/86400000; - t*=86400000; - //t.setTime(QTime(0,0)); - span=(s->first() - t)/3600000.0; + d1=d2; + d1.setTime(QTime(0,0,0)); + float secsto=d1.secsTo(d2); + span=secsto/3600.0; // Bedtime was late last night. if (span < hours_since_midnight) { @@ -271,7 +275,7 @@ Day *Machine::AddSession(Session *s,Profile *p) if (!previous) { // Revert to sessions original day. - date+=86400000; + date=date.addDays(1); } sessionlist[s->session()]=s; @@ -288,9 +292,9 @@ 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); - qDebug() << "New day: " << d.toString("yyyy-MM-dd HH:mm:ss"); - p->AddDay(d.date(),day[date],m_type); + //QDateTime d=QDateTime::fromMSecsSinceEpoch(date); + //qDebug() << "New day: " << d.toString("yyyy-MM-dd HH:mm:ss"); + p->AddDay(date,day[date],m_type); } day[date]->AddSession(s); @@ -407,7 +411,7 @@ bool Machine::SaveSession(Session *sess) } bool Machine::Save() { - map::iterator d; + map::iterator d; vector::iterator s; int size=0; int cnt=0; diff --git a/SleepLib/machine.h b/SleepLib/machine.h index 5a1ae14c..d451c71a 100644 --- a/SleepLib/machine.h +++ b/SleepLib/machine.h @@ -43,7 +43,7 @@ public: bool SaveSession(Session *sess); bool Purge(int secret); - map day; + map day; map sessionlist; map properties; @@ -69,11 +69,11 @@ public: }; SessionID CreateSessionID() { return highest_sessionid+1; }; const MachineID & id() { return m_id; }; - const qint64 & FirstDay() { return firstday; }; - const qint64 & LastDay() { return lastday; }; + const QDate & FirstDay() { return firstday; }; + const QDate & LastDay() { return lastday; }; protected: - qint64 firstday,lastday; + QDate firstday,lastday; SessionID highest_sessionid; MachineID m_id; QString m_class;