From 7ecbced1157331bf055ea1f2a9755e3bb34b90f7 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sun, 8 Jan 2012 12:52:13 +1000 Subject: [PATCH] Cleaned up the muckups and made improvements in the previous session optimisations --- SleepLib/session.cpp | 199 ++++++++++++++++++++++++------------------- 1 file changed, 113 insertions(+), 86 deletions(-) diff --git a/SleepLib/session.cpp b/SleepLib/session.cpp index 38a90341..6f8f7498 100644 --- a/SleepLib/session.cpp +++ b/SleepLib/session.cpp @@ -392,25 +392,32 @@ bool Session::StoreEvents(QString filename) for (i=eventlist.begin(); i!=eventlist.end(); i++) { for (int j=0;j> t; // *ptr++=t; @@ -600,16 +610,18 @@ bool Session::LoadEvents(QString filename) ptr=evec.m_data2.data(); in.readRawData((char *)ptr,evec.m_count << 1); + //*** Don't delete these comments *** // for (quint32 c=0;c> t; // *ptr++=t; // } } - //last=evec.first(); if (evec.type()!=EVL_Waveform) { evec.m_time.resize(evec.m_count); quint32 * tptr=evec.m_time.data(); + in.readRawData((char *)tptr,evec.m_count << 2); + //*** Don't delete these comments *** // for (quint32 c=0;c> x; // *tptr++=x; @@ -637,8 +649,6 @@ void Session::updateCountSummary(ChannelID code) QHash valsum; QHash timesum; - //QHash::iterator vsi; - //QHash::iterator tsi; EventDataType raw,lastraw=0; qint64 start,time,lasttime=0; @@ -650,16 +660,13 @@ void Session::updateCountSummary(ChannelID code) start=e.first(); cnt=e.count(); dptr=e.rawData(); - qint64 rate=0; - if (e.type()==EVL_Event) - tptr=e.rawTime(); - else tptr=NULL; + EventDataType rate=0; m_gain[code]=e.gain(); - //bool first=false; - lastraw=*dptr; - if (tptr) { + if (e.type()==EVL_Event) { + lastraw=*dptr; + tptr=e.rawTime(); lasttime=start + *tptr; // Event version for (int j=0;j timesum2; - - // Waveform version - rate=e.rate(); - time=start; + // Waveform version, first just count for (int j=0;j::iterator it=timesum2.begin(); it!=timesum2.end(); it++) { - timesum[it.key()]+=it.value()/1000.0; + // Then process the list of values, time is simply (rate * count) + rate=e.rate(); + EventDataType t; + for (QHash::iterator it=valsum.begin(); it!=valsum.end(); it++) { + t=EventDataType(it.value())*rate; + timesum[it.key()]+=t; } } } @@ -747,19 +750,17 @@ bool Session::SearchEvent(ChannelID code, qint64 time, qint64 dist) it=eventlist.find(code); quint32 * tptr; int cnt; - qint64 rate; + //qint64 rate; if (it!=eventlist.end()) { for (int i=0;irate(); +// rate=el->rate(); cnt=el->count(); + + // why would this be necessary??? if (el->type()==EVL_Waveform) { - t=el->first(); - for (int j=0;jfirst(); tptr=el->rawTime(); @@ -930,28 +931,33 @@ int Session::rangeCount(ChannelID id, qint64 first,qint64 last) int sum=0,cnt; qint64 t,start; - quint32 * tptr; - qint64 rate; for (int i=0;i last)) + continue; - if (ev.type()==EVL_Waveform) { - rate=ev.rate(); - t=ev.first(); - for (int j=0;j=first) && (t<=last)) - sum++; - t+=rate; - } + if (ev.type() == EVL_Waveform) { + qint64 et=last; + if (et > ev.last()) + et=ev.last(); + + qint64 st=first; + if (st < ev.first()) + st=ev.first(); + + t=(et - st) / ev.rate(); + sum+=t; } else { + cnt=ev.count(); start=ev.first(); - tptr=ev.rawTime(); + quint32 * tptr=ev.rawTime(); for (int j=0;j=first) && (t<=last)) { - sum++; + if (t >= first) { + if (t<=last) { + sum++; + } else break; } } } @@ -970,31 +976,39 @@ double Session::rangeSum(ChannelID id, qint64 first,qint64 last) qint64 t,start; EventStoreType * dptr; quint32 * tptr; - int cnt; + int cnt,idx; qint64 rate; - for (int i=0;i last)) + continue; start=ev.first(); dptr=ev.rawData(); cnt=ev.count(); gain=ev.gain(); rate=ev.rate(); if (ev.type()==EVL_Waveform) { + if (first > ev.first()) { + // Skip the samples before first + idx=(first - ev.first()) / rate; + } t=start; - for (int j=0;j=first) && (t<=last)) { - sum+=*dptr * gain; - } + for (int j=idx;j=first) && (t<=last)) { - sum+=*dptr * gain; + if (t >= first) { + if (t <= last) { + sum+=EventDataType(*dptr) * gain; + } else break; } dptr++; } @@ -1014,22 +1028,34 @@ EventDataType Session::rangeMin(ChannelID id, qint64 first,qint64 last) qint64 t,start,rate; EventStoreType * dptr; quint32 * tptr; - int cnt; + int cnt,idx; for (int i=0;i last)) + continue; + dptr=ev.rawData(); + start=ev.first(); cnt=ev.count(); gain=ev.gain(); - rate=ev.rate(); + if (ev.type()==EVL_Waveform) { + rate=ev.rate(); t=start; - for (int j=0;j=first) && (t<=last)) { + idx=0; + + if (first > ev.first()) { + // Skip the samples before first + idx=(first - ev.first())/rate; + } + + for (int j=idx;j=first) && (t<=last)) { - v=EventDataType(*dptr) * gain; - if (v= first) { + if (t <= last) { + v=EventDataType(*dptr) * gain; + if (v last)) + continue; + start=ev.first(); - tptr=ev.rawTime(); dptr=ev.rawData(); cnt=ev.count(); gain=ev.gain(); if (ev.type()==EVL_Waveform) { rate=ev.rate(); t=start; - for (int j=0;j=first) && (t<=last)) { + idx=0; + + if (first > ev.first()) { + // Skip the samples before first + idx=(first - ev.first())/rate; + } + for (int j=idx;jmax) max=v; - } + } else break; dptr++; t+=rate; } } else { + tptr=ev.rawTime(); for (int j=0;j=first) && (t<=last)) { - v=EventDataType(*dptr) * gain; - if (v>max) max=v; + if (t>=first) { + if (t<=last) { + v=EventDataType(*dptr) * gain; + if (v>max) max=v; + } else break; } dptr++; } @@ -1191,7 +1231,7 @@ EventDataType Session::cph(ChannelID id) // count per hour m_cph[id]=val; return val; } -EventDataType Session::sph(ChannelID id) // sum per hour +EventDataType Session::sph(ChannelID id) // sum per hour, assuming id is a time field in seconds { QHash::iterator i=m_sph.find(id); if (i!=m_sph.end()) @@ -1207,8 +1247,6 @@ bool sortfunction (EventStoreType i,EventStoreType j) { return (i >::iterator jj=eventlist.find(id); if (jj==eventlist.end()) return 0; @@ -1252,19 +1290,8 @@ EventDataType Session::percentile(ChannelID id,EventDataType percent) if (n>array.size()-1) n--; nth_element(array.begin(), array.begin()+n, array.end()); + // slack, no averaging.. fixme if this function is ever used.. return array[n] * gain; - /*std::sort(array.begin(),array.end(),sortfunction); - double s=array.size(); - if (!s) - return 0; - double i=s*percent; - double t; - modf(i,&t); - int j=t; - - //if (j>=size-1) return array[j]; - - return EventDataType(array[j])*gain; */ } EventDataType Session::wavg(ChannelID id)