AddSession day cleanup. After Midnight threshold changed to midday (from 6am)

This commit is contained in:
Mark Watkins 2011-05-31 21:48:57 +10:00
parent a8ccc90ce2
commit abb01d9403
6 changed files with 53 additions and 34 deletions

View File

@ -7837,7 +7837,7 @@
"sleeplib/machine.h"
"graphs/graph.h"
1306759276 /home/mark/projects/git/sleepyhead/libs/sleeplib/machine.h
1306839039 /home/mark/projects/git/sleepyhead/libs/sleeplib/machine.h
<wx/string.h>
<wx/variant.h>
<wx/dir.h>
@ -7875,7 +7875,7 @@
<sleeplib/machine.h>
<list>
1306830916 /home/mark/projects/git/sleepyhead/version.h
1306842369 /home/mark/projects/git/sleepyhead/version.h
1306724655 /home/mark/projects/git/sleepyhead/libs/sleeplib/prs1_loader.h
"machine.h"
@ -7892,7 +7892,7 @@
"preferences.h"
"tinyxml/tinyxml.h"
1306817290 source:/home/mark/projects/git/sleepyhead/SleepyHeadMain.cpp
1306838801 source:/home/mark/projects/git/sleepyhead/SleepyHeadMain.cpp
"wx_pch.h"
"version.h"
<wx/app.h>
@ -7910,7 +7910,7 @@
"sleeplib/profiles.h"
"sleeplib/machine_loader.h"
1306830825 source:/home/mark/projects/git/sleepyhead/graphs/graph.cpp
1306832286 source:/home/mark/projects/git/sleepyhead/graphs/graph.cpp
<wx/settings.h>
<wx/dcbuffer.h>
<wx/log.h>
@ -7925,7 +7925,7 @@
<wx/ffile.h>
<wx/utils.h>
1306806694 source:/home/mark/projects/git/sleepyhead/libs/sleeplib/machine.cpp
1306842369 source:/home/mark/projects/git/sleepyhead/libs/sleeplib/machine.cpp
<tr1/random>
<wx/colour.h>
<wx/log.h>

View File

@ -589,10 +589,10 @@ Daily::Daily(wxWindow *win,Profile *p)
SF->AddLayer(new gFooBar());
fgSizer->Add(SF,1,wxEXPAND);
fgSizer->Add(G_AHI,1,wxEXPAND);
fgSizer->Add(FRW,1,wxEXPAND);
fgSizer->Add(PRD,1,wxEXPAND);
fgSizer->Add(LEAK,1,wxEXPAND);
fgSizer->Add(G_AHI,1,wxEXPAND);
fgSizer->Add(TAP,1,wxEXPAND);
fgSizer->Add(TAP_IAP,1,wxEXPAND);
fgSizer->Add(TAP_EAP,1,wxEXPAND);

View File

@ -719,6 +719,8 @@ void gXAxis::Plot(wxDC & dc, gGraphWindow & w)
// dc.SetPen(*wxBLACK_PEN);
dc.SetClippingRegion(start_px-10,start_py+height,width+20,w.GetBottomMargin());
double st3=st;
while (st3>w.min_x) {
st3-=min_tick/10.0;
@ -734,16 +736,17 @@ void gXAxis::Plot(wxDC & dc, gGraphWindow & w)
dc.DrawLine(px,py,px,py+4);
}
//st=st3;
while (st<w.min_x) {
st+=min_tick;///10.0; // mucking with this changes the scrollyness of the ticker.
st+=min_tick; //10.0; // mucking with this changes the scrollyness of the ticker.
}
int hour,minute,second,millisecond;
wxDateTime d;
for (double i=st; i<=w.max_x; i+=min_tick) { //600.0/86400.0) {
d.Set(i+2400000.5+.000001+1); // JDN vs MJD vs Rounding errors
d.Set(i+2400000.5+.00000001+1); // JDN vs MJD vs Rounding errors
if (show_time) {
minute=d.GetMinute();
@ -764,6 +767,7 @@ void gXAxis::Plot(wxDC & dc, gGraphWindow & w)
px=w.x2p(i);
dc.DrawLine(px,py,px,py+6);
//dc.DrawLine(px+1,py,px+1,py+6);
y=x=0;
dc.GetTextExtent(fd,&x,&y); // This doesn't work properly on windows.
@ -778,6 +782,8 @@ void gXAxis::Plot(wxDC & dc, gGraphWindow & w)
}
}
dc.DestroyClippingRegion();
}

View File

@ -143,33 +143,43 @@ Session *Machine::SessionExists(SessionID session)
}
Day *Machine::AddSession(Session *s,Profile *p)
{
wxDateTime date=s->first();
wxTimeSpan span;
wxDateTime date=s->first()-wxTimeSpan::Day();
date.ResetTime();
date-=wxTimeSpan::Day();
bool ok=false;
const int hours_since_last_session=4;
const int hours_since_midnight=12;
bool previous=false;
// Find what day session belongs to.
if (day.find(date)!=day.end()) {
wxTimeSpan span=s->first()-day[date]->last();
if (span<wxTimeSpan::Hours(4)) ok=true;
else {
// Previous day record exists...
wxDateTime t=s->first();
t.ResetTime();
wxTimeSpan j=s->first()-t;
if (j<wxTimeSpan::Hours(6)) {
ok=true;
}
}
} else { // No day record yesterday
wxDateTime t=s->first();
t.ResetTime();
wxTimeSpan j=s->first()-t;
if (j<wxTimeSpan::Hours(12)) {
ok=true;
// Calculate time since end of previous days last session
span=s->first()-day[date]->last();
// less than n hours since last session yesterday?
if (span < wxTimeSpan::Hours(hours_since_last_session)) {
previous=true;
}
}
if (!ok) {
if (!previous) {
// Calculate Hours since midnight.
wxDateTime t=s->first();
t.ResetTime();
span=s->first()-t;
// Bedtime was late last night.
if (span < wxTimeSpan::Hours(hours_since_midnight)) {
previous=true;
}
}
if (!previous) {
// Revert to sessions original day.
date+=wxTimeSpan::Day();
}

View File

@ -326,6 +326,8 @@ public:
map<MachineCode,vector<Event *> > events;
map<MachineCode,vector<Waveform *> > waveforms;
bool IsLoneSession() { return s_lonesession; };
void SetLoneSession(bool b) { s_lonesession=b; };
protected:
SessionID s_session;
@ -334,6 +336,7 @@ protected:
wxDateTime s_last;
float s_hours;
bool s_changed;
bool s_lonesession;
};
class CPAP:public Machine

View File

@ -16,14 +16,14 @@ namespace AutoVersion{
//Standard Version Type
static const long MAJOR = 0;
static const long MINOR = 7;
static const long BUILD = 2495;
static const long REVISION = 8284;
static const long BUILD = 2512;
static const long REVISION = 8376;
//Miscellaneous Version Types
static const long BUILDS_COUNT = 7575;
#define RC_FILEVERSION 0,7,2495,8284
#define RC_FILEVERSION_STRING "0, 7, 2495, 8284\0"
static const char FULLVERSION_STRING[] = "0.7.2495.8284";
static const long BUILDS_COUNT = 7621;
#define RC_FILEVERSION 0,7,2512,8376
#define RC_FILEVERSION_STRING "0, 7, 2512, 8376\0"
static const char FULLVERSION_STRING[] = "0.7.2512.8376";
//These values are to keep track of your versioning state, don't modify them.
static const long BUILD_HISTORY = 62;