Cleaned up the muckups and made improvements in the previous session optimisations

This commit is contained in:
Mark Watkins 2012-01-08 12:52:13 +10:00
parent 5357fac3c2
commit 7ecbced115

View File

@ -392,25 +392,32 @@ bool Session::StoreEvents(QString filename)
for (i=eventlist.begin(); i!=eventlist.end(); i++) { for (i=eventlist.begin(); i!=eventlist.end(); i++) {
for (int j=0;j<i.value().size();j++) { for (int j=0;j<i.value().size();j++) {
EventList &e=*i.value()[j]; EventList &e=*i.value()[j];
// ****** This is assuming little endian ******
// Store the raw event list data in EventStoreType (16bit short) // Store the raw event list data in EventStoreType (16bit short)
EventStoreType *ptr=e.m_data.data(); EventStoreType *ptr=e.m_data.data();
out.writeRawData((char *)ptr,e.count() << 1); out.writeRawData((char *)ptr,e.count() << 1);
//*** Don't delete these comments ***
// for (quint32 c=0;c<e.count();c++) { // for (quint32 c=0;c<e.count();c++) {
// out << *ptr++;//e.raw(c); // out << *ptr++;//e.raw(c);
// } // }
// Store the second field, only if there // Store the second field, only if there
if (e.hasSecondField()) { if (e.hasSecondField()) {
ptr=e.m_data2.data(); ptr=e.m_data2.data();
out.writeRawData((char *)ptr,e.count() << 1); out.writeRawData((char *)ptr,e.count() << 1);
//*** Don't delete these comments ***
// for (quint32 c=0;c<e.count();c++) { // for (quint32 c=0;c<e.count();c++) {
// out << *ptr++; //e.raw2(c); // out << *ptr++; //e.raw2(c);
// } // }
} }
// Store the time delta fields for non-waveform EventLists // Store the time delta fields for non-waveform EventLists
if (e.type()!=EVL_Waveform) { if (e.type()!=EVL_Waveform) {
quint32 * tptr=e.m_time.data(); quint32 * tptr=e.m_time.data();
out.writeRawData((char *)tptr,e.count() << 2); out.writeRawData((char *)tptr,e.count() << 2);
//*** Don't delete these comments ***
// for (quint32 c=0;c<e.count();c++) { // for (quint32 c=0;c<e.count();c++) {
// out << *tptr++; //e.getTime()[c]; // out << *tptr++; //e.getTime()[c];
// } // }
@ -590,7 +597,10 @@ bool Session::LoadEvents(QString filename)
evec.m_data.resize(evec.m_count); evec.m_data.resize(evec.m_count);
EventStoreType *ptr=evec.m_data.data(); EventStoreType *ptr=evec.m_data.data();
// ****** This is assuming little endian ******
in.readRawData((char *)ptr, evec.m_count << 1); in.readRawData((char *)ptr, evec.m_count << 1);
//*** Don't delete these comments ***
// for (quint32 c=0;c<evec.m_count;c++) { // for (quint32 c=0;c<evec.m_count;c++) {
// in >> t; // in >> t;
// *ptr++=t; // *ptr++=t;
@ -600,16 +610,18 @@ bool Session::LoadEvents(QString filename)
ptr=evec.m_data2.data(); ptr=evec.m_data2.data();
in.readRawData((char *)ptr,evec.m_count << 1); in.readRawData((char *)ptr,evec.m_count << 1);
//*** Don't delete these comments ***
// for (quint32 c=0;c<evec.m_count;c++) { // for (quint32 c=0;c<evec.m_count;c++) {
// in >> t; // in >> t;
// *ptr++=t; // *ptr++=t;
// } // }
} }
//last=evec.first();
if (evec.type()!=EVL_Waveform) { if (evec.type()!=EVL_Waveform) {
evec.m_time.resize(evec.m_count); evec.m_time.resize(evec.m_count);
quint32 * tptr=evec.m_time.data(); quint32 * tptr=evec.m_time.data();
in.readRawData((char *)tptr,evec.m_count << 2); in.readRawData((char *)tptr,evec.m_count << 2);
//*** Don't delete these comments ***
// for (quint32 c=0;c<evec.m_count;c++) { // for (quint32 c=0;c<evec.m_count;c++) {
// in >> x; // in >> x;
// *tptr++=x; // *tptr++=x;
@ -637,8 +649,6 @@ void Session::updateCountSummary(ChannelID code)
QHash<EventStoreType, EventStoreType> valsum; QHash<EventStoreType, EventStoreType> valsum;
QHash<EventStoreType, quint32> timesum; QHash<EventStoreType, quint32> timesum;
//QHash<EventStoreType, EventStoreType>::iterator vsi;
//QHash<EventStoreType, quint32>::iterator tsi;
EventDataType raw,lastraw=0; EventDataType raw,lastraw=0;
qint64 start,time,lasttime=0; qint64 start,time,lasttime=0;
@ -650,16 +660,13 @@ void Session::updateCountSummary(ChannelID code)
start=e.first(); start=e.first();
cnt=e.count(); cnt=e.count();
dptr=e.rawData(); dptr=e.rawData();
qint64 rate=0; EventDataType rate=0;
if (e.type()==EVL_Event)
tptr=e.rawTime();
else tptr=NULL;
m_gain[code]=e.gain(); m_gain[code]=e.gain();
//bool first=false; if (e.type()==EVL_Event) {
lastraw=*dptr; lastraw=*dptr;
if (tptr) { tptr=e.rawTime();
lasttime=start + *tptr; lasttime=start + *tptr;
// Event version // Event version
for (int j=0;j<cnt;j++) { for (int j=0;j<cnt;j++) {
@ -668,7 +675,7 @@ void Session::updateCountSummary(ChannelID code)
valsum[raw]++; valsum[raw]++;
// elapsed time in seconds since last event // elapsed time in seconds since last event occurred
len=(time-lasttime) / 1000L; len=(time-lasttime) / 1000L;
timesum[lastraw]+=len; timesum[lastraw]+=len;
@ -677,22 +684,18 @@ void Session::updateCountSummary(ChannelID code)
lasttime=time; lasttime=time;
} }
} else { } else {
QHash<EventStoreType, quint64> timesum2; // Waveform version, first just count
// Waveform version
rate=e.rate();
time=start;
for (int j=0;j<cnt;j++) { for (int j=0;j<cnt;j++) {
raw=*dptr++; raw=*dptr++;
valsum[raw]++; valsum[raw]++;
timesum2[lastraw]+=rate;
lastraw=raw;
lasttime=time;
time+=rate;
} }
for (QHash<EventStoreType, quint64>::iterator it=timesum2.begin(); it!=timesum2.end(); it++) { // Then process the list of values, time is simply (rate * count)
timesum[it.key()]+=it.value()/1000.0; rate=e.rate();
EventDataType t;
for (QHash<EventStoreType, EventStoreType>::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); it=eventlist.find(code);
quint32 * tptr; quint32 * tptr;
int cnt; int cnt;
qint64 rate; //qint64 rate;
if (it!=eventlist.end()) { if (it!=eventlist.end()) {
for (int i=0;i<it.value().size();i++) { for (int i=0;i<it.value().size();i++) {
EventList *el=it.value()[i]; EventList *el=it.value()[i];
rate=el->rate(); // rate=el->rate();
cnt=el->count(); cnt=el->count();
// why would this be necessary???
if (el->type()==EVL_Waveform) { if (el->type()==EVL_Waveform) {
t=el->first(); qDebug() << "Called SearchEvent on a waveform object!";
for (int j=0;j<cnt;j++) { return false;
if (qAbs(time - t) < dist)
return true;
t+=rate;
}
} else { } else {
start=el->first(); start=el->first();
tptr=el->rawTime(); tptr=el->rawTime();
@ -930,28 +931,33 @@ int Session::rangeCount(ChannelID id, qint64 first,qint64 last)
int sum=0,cnt; int sum=0,cnt;
qint64 t,start; qint64 t,start;
quint32 * tptr;
qint64 rate;
for (int i=0;i<evec.size();i++) { for (int i=0;i<evec.size();i++) {
EventList & ev=*evec[i]; EventList & ev=*evec[i];
cnt=ev.count(); if ((ev.last() < first) || (ev.first() > last))
continue;
if (ev.type()==EVL_Waveform) { if (ev.type() == EVL_Waveform) {
rate=ev.rate(); qint64 et=last;
t=ev.first(); if (et > ev.last())
for (int j=0;j<cnt;j++) { et=ev.last();
if ((t>=first) && (t<=last))
sum++; qint64 st=first;
t+=rate; if (st < ev.first())
} st=ev.first();
t=(et - st) / ev.rate();
sum+=t;
} else { } else {
cnt=ev.count();
start=ev.first(); start=ev.first();
tptr=ev.rawTime(); quint32 * tptr=ev.rawTime();
for (int j=0;j<cnt;j++) { for (int j=0;j<cnt;j++) {
t=start + *tptr++; t=start + *tptr++;
if ((t>=first) && (t<=last)) { if (t >= first) {
sum++; if (t<=last) {
sum++;
} else break;
} }
} }
} }
@ -970,31 +976,39 @@ double Session::rangeSum(ChannelID id, qint64 first,qint64 last)
qint64 t,start; qint64 t,start;
EventStoreType * dptr; EventStoreType * dptr;
quint32 * tptr; quint32 * tptr;
int cnt; int cnt,idx;
qint64 rate; qint64 rate;
for (int i=0;i<evec.size();i++) { for (int i=0;i < evec.size();i++) {
EventList & ev=*evec[i]; EventList & ev=*evec[i];
if ((ev.last() < first) || (ev.first() > last))
continue;
start=ev.first(); start=ev.first();
dptr=ev.rawData(); dptr=ev.rawData();
cnt=ev.count(); cnt=ev.count();
gain=ev.gain(); gain=ev.gain();
rate=ev.rate(); rate=ev.rate();
if (ev.type()==EVL_Waveform) { if (ev.type()==EVL_Waveform) {
if (first > ev.first()) {
// Skip the samples before first
idx=(first - ev.first()) / rate;
}
t=start; t=start;
for (int j=0;j<cnt;j++) { for (int j=idx;j<cnt;j++) {
if ((t>=first) && (t<=last)) { if (t <= last) {
sum+=*dptr * gain; sum+=EventDataType(*dptr) * gain;
} } else break;
dptr++; dptr++;
t+=rate; t+=rate;
} }
} else { } else {
tptr=ev.rawTime(); tptr=ev.rawTime();
for (int j=0;j<cnt;j++) { for (int j=0;j < cnt;j++) {
t=start + *tptr++; t=start + *tptr++;
if ((t>=first) && (t<=last)) { if (t >= first) {
sum+=*dptr * gain; if (t <= last) {
sum+=EventDataType(*dptr) * gain;
} else break;
} }
dptr++; dptr++;
} }
@ -1014,22 +1028,34 @@ EventDataType Session::rangeMin(ChannelID id, qint64 first,qint64 last)
qint64 t,start,rate; qint64 t,start,rate;
EventStoreType * dptr; EventStoreType * dptr;
quint32 * tptr; quint32 * tptr;
int cnt; int cnt,idx;
for (int i=0;i<evec.size();i++) { for (int i=0;i<evec.size();i++) {
EventList & ev=*evec[i]; EventList & ev=*evec[i];
start=ev.first(); if ((ev.last() < first) || (ev.first() > last))
continue;
dptr=ev.rawData(); dptr=ev.rawData();
start=ev.first();
cnt=ev.count(); cnt=ev.count();
gain=ev.gain(); gain=ev.gain();
rate=ev.rate();
if (ev.type()==EVL_Waveform) { if (ev.type()==EVL_Waveform) {
rate=ev.rate();
t=start; t=start;
for (int j=0;j<cnt;j++) { idx=0;
if ((t>=first) && (t<=last)) {
if (first > ev.first()) {
// Skip the samples before first
idx=(first - ev.first())/rate;
}
for (int j=idx;j<cnt;j++) {
if (t<=last) {
v=EventDataType(*dptr) * gain; v=EventDataType(*dptr) * gain;
if (v<min) min=v; if (v<min)
} min=v;
} else break;
dptr++; dptr++;
t+=rate; t+=rate;
} }
@ -1037,9 +1063,12 @@ EventDataType Session::rangeMin(ChannelID id, qint64 first,qint64 last)
tptr=ev.rawTime(); tptr=ev.rawTime();
for (int j=0;j<cnt;j++) { for (int j=0;j<cnt;j++) {
t=start + *tptr++; t=start + *tptr++;
if ((t>=first) && (t<=last)) { if (t >= first) {
v=EventDataType(*dptr) * gain; if (t <= last) {
if (v<min) min=v; v=EventDataType(*dptr) * gain;
if (v<min)
min=v;
} else break;
} }
dptr++; dptr++;
} }
@ -1059,32 +1088,43 @@ EventDataType Session::rangeMax(ChannelID id, qint64 first,qint64 last)
qint64 t,start,rate; qint64 t,start,rate;
EventStoreType * dptr; EventStoreType * dptr;
quint32 * tptr; quint32 * tptr;
int cnt; int cnt,idx;
for (int i=0;i<evec.size();i++) { for (int i=0;i<evec.size();i++) {
EventList & ev=*evec[i]; EventList & ev=*evec[i];
if ((ev.last() < first) || (ev.first() > last))
continue;
start=ev.first(); start=ev.first();
tptr=ev.rawTime();
dptr=ev.rawData(); dptr=ev.rawData();
cnt=ev.count(); cnt=ev.count();
gain=ev.gain(); gain=ev.gain();
if (ev.type()==EVL_Waveform) { if (ev.type()==EVL_Waveform) {
rate=ev.rate(); rate=ev.rate();
t=start; t=start;
for (int j=0;j<cnt;j++) { idx=0;
if ((t>=first) && (t<=last)) {
if (first > ev.first()) {
// Skip the samples before first
idx=(first - ev.first())/rate;
}
for (int j=idx;j<cnt;j++) {
if (t<=last) {
v=EventDataType(*dptr) * gain; v=EventDataType(*dptr) * gain;
if (v>max) max=v; if (v>max) max=v;
} } else break;
dptr++; dptr++;
t+=rate; t+=rate;
} }
} else { } else {
tptr=ev.rawTime();
for (int j=0;j<cnt;j++) { for (int j=0;j<cnt;j++) {
t=start + *tptr++; t=start + *tptr++;
if ((t>=first) && (t<=last)) { if (t>=first) {
v=EventDataType(*dptr) * gain; if (t<=last) {
if (v>max) max=v; v=EventDataType(*dptr) * gain;
if (v>max) max=v;
} else break;
} }
dptr++; dptr++;
} }
@ -1191,7 +1231,7 @@ EventDataType Session::cph(ChannelID id) // count per hour
m_cph[id]=val; m_cph[id]=val;
return 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<ChannelID,EventDataType>::iterator i=m_sph.find(id); QHash<ChannelID,EventDataType>::iterator i=m_sph.find(id);
if (i!=m_sph.end()) if (i!=m_sph.end())
@ -1207,8 +1247,6 @@ bool sortfunction (EventStoreType i,EventStoreType j) { return (i<j); }
EventDataType Session::percentile(ChannelID id,EventDataType percent) EventDataType Session::percentile(ChannelID id,EventDataType percent)
{ {
//if (channel[id].channeltype()==CT_Graph) return 0;
QHash<ChannelID,QVector<EventList *> >::iterator jj=eventlist.find(id); QHash<ChannelID,QVector<EventList *> >::iterator jj=eventlist.find(id);
if (jj==eventlist.end()) if (jj==eventlist.end())
return 0; return 0;
@ -1252,19 +1290,8 @@ EventDataType Session::percentile(ChannelID id,EventDataType percent)
if (n>array.size()-1) n--; if (n>array.size()-1) n--;
nth_element(array.begin(), array.begin()+n, array.end()); nth_element(array.begin(), array.begin()+n, array.end());
// slack, no averaging.. fixme if this function is ever used..
return array[n] * gain; 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) EventDataType Session::wavg(ChannelID id)