/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- * vim: set ts=8 sts=4 et sw=4 tw=99: * * SleepLib Session Implementation * This stuff contains the base calculation smarts * * Copyright (c) 2011-2014 Mark Watkins * * This file is subject to the terms and conditions of the GNU General Public * License. See the file COPYING in the main directory of the Linux * distribution for more details. */ #include "session.h" #include #include #include #include #include #include #include "SleepLib/calcs.h" #include "SleepLib/profiles.h" using namespace std; const quint16 filetype_summary=0; const quint16 filetype_data=1; // This is the uber important database version for SleepyHeads internal storage // Increment this after stuffing with Session's save & load code. const quint16 summary_version=12; const quint16 events_version=10; Session::Session(Machine * m,SessionID session) { s_lonesession=false; if (!session) { session=m->CreateSessionID(); } s_machine=m; s_session=session; s_changed=false; s_events_loaded=false; _first_session=true; s_enabled=-1; s_first=s_last=0; s_eventfile=""; s_evchecksum_checked=false; } Session::~Session() { TrashEvents(); } void Session::TrashEvents() // Trash this sessions Events and release memory. { QHash >::iterator i; QVector::iterator j; for (i=eventlist.begin(); i!=eventlist.end(); i++) { for (j=i.value().begin(); j!=i.value().end(); j++) { delete *j; } } s_events_loaded=false; eventlist.clear(); } //const int max_pack_size=128; bool Session::OpenEvents() { if (s_events_loaded) return true; s_events_loaded=eventlist.size() > 0; if (s_events_loaded) return true; if (!s_eventfile.isEmpty()) { bool b=LoadEvents(s_eventfile); if (!b) { qWarning() << "Error Unpacking Events" << s_eventfile; return false; } } return s_events_loaded=true; } bool Session::Store(QString path) // Storing Session Data in our format // {DataDir}/{MachineID}/{SessionID}.{ext} { QDir dir(path); if (!dir.exists(path)) dir.mkpath(path); QString base; base.sprintf("%08lx",s_session); base=path+"/"+base; //qDebug() << "Storing Session: " << base; bool a; a=StoreSummary(base+".000"); // if actually has events //qDebug() << " Summary done"; if (eventlist.size()>0) { s_eventfile=base+".001"; StoreEvents(s_eventfile); } else { // who cares.. //qDebug() << "Trying to save empty events file"; } //qDebug() << " Events done"; s_changed=false; s_events_loaded=true; //TrashEvents(); //} else { // qDebug() << "Session::Store() No event data saved" << s_session; //} return a; } bool Session::StoreSummary(QString filename) { QFile file(filename); file.open(QIODevice::WriteOnly); QDataStream out(&file); out.setVersion(QDataStream::Qt_4_6); out.setByteOrder(QDataStream::LittleEndian); out << (quint32)magic; out << (quint16)summary_version; out << (quint16)filetype_summary; out << (quint32)s_machine->id(); out << (quint32)s_session; out << s_first; // Session Start Time out << s_last; // Duration of sesion in seconds. //out << (quint16)settings.size(); out << settings; out << m_cnt; out << m_sum; out << m_avg; out << m_wavg; out << m_min; out << m_max; out << m_physmin; out << m_physmax; out << m_cph; out << m_sph; out << m_firstchan; out << m_lastchan; out << m_valuesummary; out << m_timesummary; out << m_gain; file.close(); return true; } bool Session::LoadSummary(QString filename) { if (filename.isEmpty()) { qDebug() << "Empty summary filename"; return false; } QFile file(filename); if (!file.open(QIODevice::ReadOnly)) { qDebug() << "Couldn't open summary file" << filename; return false; } QDataStream in(&file); in.setVersion(QDataStream::Qt_4_6); in.setByteOrder(QDataStream::LittleEndian); quint32 t32; quint16 t16; //QHash mctype; //QVector mcorder; in >> t32; if (t32!=magic) { qDebug() << "Wrong magic number in " << filename; return false; } quint16 version; in >> version; // DB Version if (version<6) { //throw OldDBVersion(); qWarning() << "Old dbversion "<< version << "summary file.. Sorry, you need to purge and reimport"; return false; } in >> t16; // File Type if (t16!=filetype_summary) { qDebug() << "Wrong file type"; //wrong file type return false; } qint32 ts32; in >> ts32; // MachineID (dont need this result) if (ts32!=s_machine->id()) { qWarning() << "Machine ID does not match in" << filename << " I will try to load anyway in case you know what your doing."; } in >> t32; // Sessionid; s_session=t32; in >> s_first; // Start time in >> s_last; // Duration // (16bit==Limited to 18 hours) QHash cruft; if (version<7) { // This code is deprecated.. just here incase anyone tries anything crazy... QHash v1; in >> v1; settings.clear(); ChannelID code; for (QHash::iterator i=v1.begin();i!=v1.end();i++) { code=schema::channel[i.key()].id(); settings[code]=i.value(); } QHash zcnt; in >> zcnt; for (QHash::iterator i=zcnt.begin();i!=zcnt.end();i++) { code=schema::channel[i.key()].id(); m_cnt[code]=i.value(); } QHash zsum; in >> zsum; for (QHash::iterator i=zsum.begin();i!=zsum.end();i++) { code=schema::channel[i.key()].id(); m_cnt[code]=i.value(); } QHash ztmp; in >> ztmp; // avg for (QHash::iterator i=ztmp.begin();i!=ztmp.end();i++) { code=schema::channel[i.key()].id(); m_avg[code]=i.value(); } ztmp.clear(); in >> ztmp; // wavg for (QHash::iterator i=ztmp.begin();i!=ztmp.end();i++) { code=schema::channel[i.key()].id(); m_wavg[code]=i.value(); } ztmp.clear(); in >> ztmp; // 90p ztmp.clear(); in >> ztmp; // min for (QHash::iterator i=ztmp.begin();i!=ztmp.end();i++) { code=schema::channel[i.key()].id(); m_min[code]=i.value(); } ztmp.clear(); in >> ztmp; // max for (QHash::iterator i=ztmp.begin();i!=ztmp.end();i++) { code=schema::channel[i.key()].id(); m_max[code]=i.value(); } ztmp.clear(); in >> ztmp; // cph for (QHash::iterator i=ztmp.begin();i!=ztmp.end();i++) { code=schema::channel[i.key()].id(); m_cph[code]=i.value(); } ztmp.clear(); in >> ztmp; // sph for (QHash::iterator i=ztmp.begin();i!=ztmp.end();i++) { code=schema::channel[i.key()].id(); m_sph[code]=i.value(); } QHash ztim; in >> ztim; //firstchan for (QHash::iterator i=ztim.begin();i!=ztim.end();i++) { code=schema::channel[i.key()].id(); m_firstchan[code]=i.value(); } ztim.clear(); in >> ztim; // lastchan for (QHash::iterator i=ztim.begin();i!=ztim.end();i++) { code=schema::channel[i.key()].id(); m_lastchan[code]=i.value(); } //SetChanged(true); } else { in >> settings; in >> m_cnt; in >> m_sum; in >> m_avg; in >> m_wavg; if (version < 11) { cruft.clear(); in >> cruft; // 90% if (version >= 10) { cruft.clear(); in >> cruft;// med cruft.clear(); in >> cruft; //p95 } } in >> m_min; in >> m_max; // Added 24/10/2013 by MW to support physical graph min/max values if (version>=12) { in >> m_physmin; in >> m_physmax; } in >> m_cph; in >> m_sph; in >> m_firstchan; in >> m_lastchan; if (version >= 8) { in >> m_valuesummary; in >> m_timesummary; if (version >= 9) { in >> m_gain; } } } // not really a good idea to do this... should flag and do a reindex if (version < summary_version) { qDebug() << "Upgrading Summary file to version" << summary_version; UpdateSummaries(); StoreSummary(filename); } return true; } const quint16 compress_method=1; bool Session::StoreEvents(QString filename) { QFile file(filename); file.open(QIODevice::WriteOnly); QByteArray headerbytes; QDataStream header(&headerbytes,QIODevice::WriteOnly); header.setVersion(QDataStream::Qt_4_6); header.setByteOrder(QDataStream::LittleEndian); header << (quint32)magic; // New Magic Number header << (quint16)events_version; // File Version header << (quint16)filetype_data; // File type 1 == Event header << (quint32)s_machine->id();// Machine Type header << (quint32)s_session; // This session's ID header << s_first; header << s_last; quint16 compress=0; if (p_profile->session->compressSessionData()) compress=compress_method; header << (quint16)compress; header << (quint16)s_machine->GetType();// Machine Type QByteArray databytes; QDataStream out(&databytes,QIODevice::WriteOnly); out.setVersion(QDataStream::Qt_4_6); out.setByteOrder(QDataStream::LittleEndian); out << (qint16)eventlist.size(); // Number of event categories QHash >::iterator i; for (i=eventlist.begin(); i!=eventlist.end(); i++) { out << i.key(); // ChannelID out << (qint16)i.value().size(); for (int j=0;j0) { data=qCompress(databytes); } else { data=databytes; } file.write(headerbytes); file.write(data); file.close(); return true; } bool Session::LoadEvents(QString filename) { quint32 magicnum,machid,sessid; quint16 version,type,crc16,machtype,compmethod; quint8 t8; qint32 datasize; if (filename.isEmpty()) { qDebug() << "Session::LoadEvents() Filename is empty"; return false; } QFile file(filename); if (!file.open(QIODevice::ReadOnly)) { qDebug() << "Couldn't open file" << filename; return false; } QByteArray headerbytes=file.read(42); QDataStream header(headerbytes); header.setVersion(QDataStream::Qt_4_6); header.setByteOrder(QDataStream::LittleEndian); header >> magicnum; // Magic Number (quint32) header >> version; // Version (quint16) header >> type; // File type (quint16) header >> machid; // Machine ID (quint32) header >> sessid; //(quint32) header >> s_first; //(qint64) header >> s_last; //(qint64) if (type!=filetype_data) { qDebug() << "Wrong File Type in " << filename; return false; } if (magicnum!=magic) { qWarning() << "Wrong Magic number in " << filename; return false; } if (version<6) { // prior to version 6 is too old to deal with qDebug() << "Old File Version, can't open file"; return false; } if (version<10) { file.seek(32); } else { header >> compmethod; // Compression Method (quint16) header >> machtype; // Machine Type (quint16) header >> datasize; // Size of Uncompressed Data (quint32) header >> crc16; // CRC16 of Uncompressed Data (quint16) } QByteArray databytes,temp=file.readAll(); file.close(); if (version>=10) { if (compmethod>0) { databytes=qUncompress(temp); if (!s_evchecksum_checked) { if (databytes.size()!=datasize) { qDebug() << "File" << filename << "has returned wrong datasize"; return false; } quint16 crc=qChecksum(databytes.data(),databytes.size()); if (crc!=crc16) { qDebug() << "CRC Doesn't match in" << filename; return false; } s_evchecksum_checked=true; } } else { databytes=temp; } } else databytes=temp; QDataStream in(databytes); in.setVersion(QDataStream::Qt_4_6); in.setByteOrder(QDataStream::LittleEndian); qint16 mcsize; in >> mcsize; // number of Machine Code lists ChannelID code; qint64 ts1,ts2; qint32 evcount; EventListType elt; EventDataType rate,gain,offset,mn,mx; qint16 size2; QVector mcorder; QVector sizevec; QString dim; for (int i=0;i> txt; code=schema::channel[txt].id(); } else { in >> code; } mcorder.push_back(code); in >> size2; sizevec.push_back(size2); for (int j=0;j> ts1; in >> ts2; in >> evcount; in >> t8; elt=(EventListType)t8; in >> rate; in >> gain; in >> offset; in >> mn; in >> mx; in >> dim; bool second_field=false; if (version>=7) // version 7 added this field in >> second_field; EventList *elist=AddEventList(code,elt,gain,offset,mn,mx,rate,second_field); elist->setDimension(dim); //eventlist[code].push_back(elist); elist->m_count=evcount; elist->m_first=ts1; elist->m_last=ts2; if (second_field) { EventDataType min,max; in >> min; in >> max; elist->setMin2(min); elist->setMax2(max); } } } //EventStoreType t; //quint32 x; for (int i=0;i> t; // *ptr++=t; // } if (evec.hasSecondField()) { evec.m_data2.resize(evec.m_count); 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; // } } 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; // } } } } if (version >::iterator it=eventlist.find(code); if (it!=eventlist.end()) { for (int i=0;i >::iterator ev=eventlist.find(code); if (ev==eventlist.end()) return; QHash >::iterator vs=m_valuesummary.find(code); if (vs!=m_valuesummary.end()) // already calculated? return; QHash valsum; QHash timesum; EventDataType raw,lastraw=0; qint64 start,time,lasttime=0; qint32 len,cnt; quint32 * tptr; EventStoreType * dptr, * eptr; for (int i=0;i::iterator it=valsum.begin(); it!=valsum.end(); it++) { t=EventDataType(it.value())*rate; timesum[it.key()]+=t; } } } if (valsum.size()==0) return; m_valuesummary[code]=valsum; m_timesummary[code]=timesum; } void Session::UpdateSummaries() { ChannelID id; QHash >::iterator c; calcAHIGraph(this); // Calculates RespRate and related waveforms (Tv, MV, Te, Ti) if missing calcRespRate(this); calcLeaks(this); calcSPO2Drop(this); calcPulseChange(this); for (c=eventlist.begin();c!=eventlist.end();c++) { id=c.key(); if (schema::channel[id].type()==schema::DATA) { //sum(id); // avg calculates this and cnt. if (c.value().size()>0) { EventList * el=c.value()[0]; EventDataType gain=el->gain(); m_gain[id]=gain; } if (!((id==CPAP_FlowRate) || (id==CPAP_MaskPressureHi) || (id==CPAP_RespEvent) || (id==CPAP_MaskPressure))) updateCountSummary(id); Min(id); Max(id); count(id); last(id); first(id); if (((id==CPAP_FlowRate) || (id==CPAP_MaskPressureHi) || (id==CPAP_RespEvent) || (id==CPAP_MaskPressure))) continue; cph(id); sph(id); avg(id); wavg(id); } } } bool Session::SearchEvent(ChannelID code, qint64 time, qint64 dist) { qint64 t,start; QHash >::iterator it; it=eventlist.find(code); quint32 * tptr; int cnt; //qint64 rate; if (it!=eventlist.end()) { for (int i=0;irate(); cnt=el->count(); // why would this be necessary??? if (el->type()==EVL_Waveform) { qDebug() << "Called SearchEvent on a waveform object!"; return false; } else { start=el->first(); tptr=el->rawTime(); for (int j=0;j=0) { return s_enabled!=0; } if (!settings.contains(SESSION_ENABLED)) { bool b=true; settings[SESSION_ENABLED]=b; s_enabled=b ? 1 : 0; return b; } s_enabled=settings[SESSION_ENABLED].toBool() ? 1 : 0; return s_enabled; } void Session::setEnabled(bool b) { settings[SESSION_ENABLED]=s_enabled=b; SetChanged(true); } EventDataType Session::Min(ChannelID id) { QHash::iterator i=m_min.find(id); if (i!=m_min.end()) return i.value(); QHash >::iterator j=eventlist.find(id); if (j==eventlist.end()) { m_min[id]=0; return 0; } QVector & evec=j.value(); bool first=true; EventDataType min=0,t1; for (int i=0;icount()==0) continue; t1=evec[i]->Min(); if (t1==0 && t1==evec[i]->Max()) continue; if (first) { min=t1; first=false; } else { if (min>t1) min=t1; } } m_min[id]=min; return min; } EventDataType Session::Max(ChannelID id) { QHash::iterator i=m_max.find(id); if (i!=m_max.end()) return i.value(); QHash >::iterator j=eventlist.find(id); if (j==eventlist.end()) { m_max[id]=0; return 0; } QVector & evec=j.value(); bool first=true; EventDataType max=0,t1; for (int i=0;icount()==0) continue; t1=evec[i]->Max(); if (t1==0 && t1==evec[i]->Min()) continue; if (first) { max=t1; first=false; } else { if (max::iterator i=m_physmin.find(id); if (i!=m_physmin.end()) return i.value(); QHash >::iterator j=eventlist.find(id); if (j==eventlist.end()) { m_physmin[id]=0; return 0; } EventDataType min=round(Min(id)); m_physmin[id]=min; return min; } EventDataType Session::physMax(ChannelID id) { QHash::iterator i=m_physmax.find(id); if (i!=m_physmax.end()) return i.value(); QHash >::iterator j=eventlist.find(id); if (j==eventlist.end()) { m_physmax[id]=0; return 0; } EventDataType max=round(Max(id)+0.5); m_physmax[id]=max; return max; } qint64 Session::first(ChannelID id) { qint64 drift=qint64(PROFILE.cpap->clockDrift())*1000L; qint64 tmp; QHash::iterator i=m_firstchan.find(id); if (i!=m_firstchan.end()) { tmp=i.value(); if (s_machine->GetType()==MT_CPAP) tmp+=drift; return tmp; } QHash >::iterator j=eventlist.find(id); if (j==eventlist.end()) return 0; QVector & evec=j.value(); bool first=true; qint64 min=0,t1; for (int i=0;ifirst(); if (first) { min=t1; first=false; } else { if (min>t1) min=t1; } } m_firstchan[id]=min; if (s_machine->GetType()==MT_CPAP) min+=drift; return min; } qint64 Session::last(ChannelID id) { qint64 drift=qint64(PROFILE.cpap->clockDrift())*1000L; qint64 tmp; QHash::iterator i=m_lastchan.find(id); if (i!=m_lastchan.end()) { tmp=i.value(); if (s_machine->GetType()==MT_CPAP) tmp+=drift; return tmp; } QHash >::iterator j=eventlist.find(id); if (j==eventlist.end()) return 0; QVector & evec=j.value(); bool first=true; qint64 max=0,t1; for (int i=0;ilast(); if (first) { max=t1; first=false; } else { if (maxGetType()==MT_CPAP) max+=drift; return max; } bool Session::channelDataExists(ChannelID id) { if (s_events_loaded) { QHash >::iterator j=eventlist.find(id); if (j==eventlist.end()) // eventlist not loaded. return false; return true; } else { qDebug() << "Calling channelDataExists without open eventdata!"; } return false; } bool Session::channelExists(ChannelID id) { if (!enabled()) return false; if (s_events_loaded) { QHash >::iterator j=eventlist.find(id); if (j==eventlist.end()) // eventlist not loaded. return false; } else { QHash::iterator q=m_cnt.find(id); if (q==m_cnt.end()) return false; if (q.value()==0) return false; } return true; } int Session::rangeCount(ChannelID id, qint64 first,qint64 last) { QHash >::iterator j=eventlist.find(id); if (j==eventlist.end()) { return 0; } QVector & evec=j.value(); int sum=0,cnt; qint64 t,start; for (int i=0;i last)) continue; 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(); quint32 * tptr=ev.rawTime(); quint32 * eptr=tptr+cnt; for (;tptr < eptr; tptr++) { t=start + *tptr; if (t >= first) { if (t<=last) { sum++; } else break; } } } } return sum; } double Session::rangeSum(ChannelID id, qint64 first,qint64 last) { QHash >::iterator j=eventlist.find(id); if (j==eventlist.end()) { return 0; } QVector & evec=j.value(); double sum=0,gain; qint64 t,start; EventStoreType * dptr, * eptr; quint32 * tptr; int cnt,idx=0; qint64 rate; for (int i=0;i < evec.size();i++) { EventList & ev=*evec[i]; if ((ev.last() < first) || (ev.first() > last)) continue; start=ev.first(); dptr=ev.rawData(); cnt=ev.count(); eptr=dptr+cnt; 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; } dptr+=idx; //???? foggy. t=start; for (;dptr < eptr; dptr++) { //int j=idx;j= first) { if (t <= last) { sum+=EventDataType(*dptr) * gain; } else break; } } } } return sum; } EventDataType Session::rangeMin(ChannelID id, qint64 first,qint64 last) { QHash >::iterator j=eventlist.find(id); if (j==eventlist.end()) { return 0; } QVector & evec=j.value(); EventDataType gain,v,min=999999999; qint64 t,start,rate; EventStoreType * dptr, * eptr; quint32 * tptr; int cnt,idx; for (int i=0;i last)) continue; dptr=ev.rawData(); start=ev.first(); cnt=ev.count(); eptr=dptr+cnt; gain=ev.gain(); if (ev.type()==EVL_Waveform) { rate=ev.rate(); t=start; idx=0; if (first > ev.first()) { // Skip the samples before first idx=(first - ev.first())/rate; } dptr+=idx; for (; dptr < eptr; dptr++) { //int j=idx;j= first) { if (t <= last) { v=EventDataType(*dptr) * gain; if (v >::iterator j=eventlist.find(id); if (j==eventlist.end()) { return 0; } QVector & evec=j.value(); EventDataType gain,v,max=-999999999; qint64 t,start,rate; EventStoreType * dptr, * eptr; quint32 * tptr; int cnt,idx; for (int i=0;i last)) continue; start=ev.first(); dptr=ev.rawData(); cnt=ev.count(); eptr=dptr + cnt; gain=ev.gain(); if (ev.type()==EVL_Waveform) { rate=ev.rate(); t=start; idx=0; if (first > ev.first()) { // Skip the samples before first idx=(first - ev.first())/rate; } dptr+=idx; for (; dptr < eptr; dptr++) { //int j=idx;jmax) max=v; } else break; t+=rate; } } else { tptr=ev.rawTime(); for (;dptr < eptr; dptr++) { t=start + *tptr++; if (t>=first) { if (t<=last) { v=EventDataType(*dptr) * gain; if (v>max) max=v; } else break; } } } } return max; } int Session::count(ChannelID id) { QHash::iterator i=m_cnt.find(id); if (i!=m_cnt.end()) return i.value(); QHash >::iterator j=eventlist.find(id); if (j==eventlist.end()) { m_cnt[id]=0; return 0; } QVector & evec=j.value(); int sum=0; for (int i=0;icount(); } m_cnt[id]=sum; return sum; } double Session::sum(ChannelID id) { QHash::iterator i=m_sum.find(id); if (i!=m_sum.end()) return i.value(); QHash >::iterator j=eventlist.find(id); if (j==eventlist.end()) { m_sum[id]=0; return 0; } QVector & evec=j.value(); double gain,sum=0; EventStoreType * dptr, * eptr; int cnt; for (int i=0;i::iterator i=m_avg.find(id); if (i!=m_avg.end()) return i.value(); QHash >::iterator j=eventlist.find(id); if (j==eventlist.end()) { m_avg[id]=0; return 0; } QVector & evec=j.value(); double val=0,gain; int cnt=0; EventStoreType * dptr, * eptr; for (int i=0;i0) { // Shouldn't really happen.. Should aways contain data val/=double(cnt); } m_avg[id]=val; return val; } EventDataType Session::cph(ChannelID id) // count per hour { QHash::iterator i=m_cph.find(id); if (i!=m_cph.end()) return i.value(); EventDataType val=count(id); val/=hours(); m_cph[id]=val; return val; } 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()) return i.value(); EventDataType val=sum(id)/3600.0; val=100.0 / hours() * val; m_sph[id]=val; return val; } bool sortfunction (EventStoreType i,EventStoreType j) { return (i >::iterator jj=eventlist.find(id); if (jj==eventlist.end()) return 0; QVector & evec=jj.value(); if (percent > 1.0) { qWarning() << "Session::percentile() called with > 1.0"; return 0; } int size=evec.size(); if (size==0) return 0; QVector array; EventDataType gain=evec[0]->gain(); EventStoreType * dptr, * sptr, *eptr; int tt=0,cnt=0; for (int i=0;iarray.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; } EventDataType Session::wavg(ChannelID id) { QHash vtime; QHash::iterator i=m_wavg.find(id); if (i!=m_wavg.end()) return i.value(); updateCountSummary(id); QHash >::iterator j2=m_timesummary.find(id); if (j2==m_timesummary.end()) return 0; QHash & timesum=j2.value(); if (!m_gain.contains(id)) return 0; double s0=0,s1=0,s2; EventDataType val, gain=m_gain[id]; for (QHash::iterator vi=timesum.begin();vi!=timesum.end();vi++) { val=vi.key() * gain; s2=vi.value(); s0+=s2; s1+=val * s2; } if (s0>0) { val=s1/s0; } else val=0; m_wavg[id]=val; return val; } EventList * Session::AddEventList(ChannelID code, EventListType et,EventDataType gain,EventDataType offset,EventDataType min, EventDataType max,EventDataType rate,bool second_field) { schema::Channel * channel=&schema::channel[code]; if (!channel) { qWarning() << "Channel" << code << "does not exist!"; //return NULL; } EventList * el=new EventList(et,gain,offset,min,max,rate,second_field); eventlist[code].push_back(el); //s_machine->registerChannel(chan); return el; } void Session::offsetSession(qint64 offset) { //qDebug() << "Session starts" << QDateTime::fromTime_t(s_first/1000).toString("yyyy-MM-dd HH:mm:ss"); s_first+=offset; s_last+=offset; QHash::iterator it; for (it=m_firstchan.begin();it!=m_firstchan.end();it++) { if (it.value()>0) it.value()+=offset; } for (it=m_lastchan.begin();it!=m_lastchan.end();it++) { if (it.value()>0) it.value()+=offset; } QHash >::iterator i; for (i=eventlist.begin();i!=eventlist.end();i++) { for (int j=0;jsetFirst(e->first()+offset); e->setLast(e->last()+offset); } } qDebug() << "Session now starts" << QDateTime::fromTime_t(s_first/1000).toString("yyyy-MM-dd HH:mm:ss"); } qint64 Session::first() { qint64 start=s_first; if (s_machine->GetType()==MT_CPAP) start+=qint64(PROFILE.cpap->clockDrift())*1000L; return start; } qint64 Session::last() { qint64 last=s_last; if (s_machine->GetType()==MT_CPAP) last+=qint64(PROFILE.cpap->clockDrift())*1000L; return last; }