2011-06-26 08:30:44 +00:00
|
|
|
/********************************************************************
|
|
|
|
SleepLib Session Header
|
|
|
|
This stuff contains the base calculation smarts
|
|
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
License: GPL
|
|
|
|
*********************************************************************/
|
|
|
|
|
|
|
|
#ifndef SESSION_H
|
|
|
|
#define SESSION_H
|
|
|
|
|
2011-07-19 15:31:51 +00:00
|
|
|
#include <QDebug>
|
2011-07-31 20:24:43 +00:00
|
|
|
#include <QHash>
|
|
|
|
#include <QVector>
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-07-27 09:21:53 +00:00
|
|
|
#include "SleepLib/machine.h"
|
|
|
|
#include "SleepLib/event.h"
|
|
|
|
class EventList;
|
2011-06-26 08:30:44 +00:00
|
|
|
class Machine;
|
2011-07-27 09:21:53 +00:00
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
class Session
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Session(Machine *,SessionID);
|
|
|
|
virtual ~Session();
|
|
|
|
|
|
|
|
bool Store(QString path);
|
|
|
|
bool StoreSummary(QString filename);
|
|
|
|
bool StoreEvents(QString filename);
|
|
|
|
//bool Load(QString path);
|
|
|
|
bool LoadSummary(QString filename);
|
|
|
|
bool LoadEvents(QString filename);
|
|
|
|
|
2011-07-03 11:49:47 +00:00
|
|
|
bool OpenEvents();
|
2011-06-26 08:30:44 +00:00
|
|
|
void TrashEvents();
|
|
|
|
|
|
|
|
const SessionID & session() {
|
|
|
|
return s_session;
|
|
|
|
};
|
2011-07-03 02:43:50 +00:00
|
|
|
qint64 first() {
|
2011-06-26 08:30:44 +00:00
|
|
|
return s_first;
|
|
|
|
};
|
2011-07-03 02:43:50 +00:00
|
|
|
qint64 last() {
|
2011-06-26 08:30:44 +00:00
|
|
|
return s_last;
|
|
|
|
};
|
|
|
|
void SetSessionID(SessionID s) {
|
|
|
|
s_session=s;
|
|
|
|
};
|
2011-07-02 14:35:50 +00:00
|
|
|
void set_first(qint64 d) {
|
2011-07-03 02:43:50 +00:00
|
|
|
if (!s_first) s_first=d;
|
|
|
|
else if (d<s_first) s_first=d;
|
2011-06-26 08:30:44 +00:00
|
|
|
};
|
2011-07-02 14:35:50 +00:00
|
|
|
void set_last(qint64 d) {
|
2011-07-19 15:31:51 +00:00
|
|
|
if (d<=s_first) {
|
|
|
|
qWarning() << "Session::set_last() d<=s_first";
|
|
|
|
return;
|
|
|
|
}
|
2011-07-03 02:43:50 +00:00
|
|
|
if (!s_last) s_last=d;
|
|
|
|
else if (s_last<d) s_last=d;
|
2011-06-26 08:30:44 +00:00
|
|
|
};
|
|
|
|
|
2011-07-03 02:43:50 +00:00
|
|
|
double hours() {
|
2011-07-02 14:35:50 +00:00
|
|
|
double t=(s_last-s_first)/3600000.0;
|
|
|
|
return t;
|
2011-06-26 08:30:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void SetChanged(bool val) {
|
|
|
|
s_changed=val;
|
|
|
|
s_events_loaded=val; // dirty hack putting this here
|
|
|
|
};
|
|
|
|
bool IsChanged() {
|
|
|
|
return s_changed;
|
|
|
|
};
|
|
|
|
|
2011-07-31 20:24:43 +00:00
|
|
|
QHash<ChannelID,QVector<EventList *> > eventlist;
|
|
|
|
QHash<ChannelID,QVariant> settings;
|
|
|
|
QHash<ChannelID,int> m_cnt;
|
|
|
|
QHash<ChannelID,double> m_sum;
|
|
|
|
QHash<ChannelID,EventDataType> m_avg;
|
|
|
|
QHash<ChannelID,EventDataType> m_wavg;
|
|
|
|
QHash<ChannelID,EventDataType> m_90p;
|
|
|
|
QHash<ChannelID,EventDataType> m_min;
|
|
|
|
QHash<ChannelID,EventDataType> m_max;
|
|
|
|
QHash<ChannelID,EventDataType> m_cph; // Counts per hour (eg AHI)
|
|
|
|
QHash<ChannelID,EventDataType> m_sph; // % indice (eg % night in CSR)
|
|
|
|
QHash<ChannelID,quint64> m_firstchan;
|
|
|
|
QHash<ChannelID,quint64> m_lastchan;
|
|
|
|
|
|
|
|
|
|
|
|
// UpdateSummaries may recalculate all these, but it may be faster setting upfront
|
|
|
|
void setCount(ChannelID id,int val) { m_cnt[id]=val; }
|
|
|
|
void setSum(ChannelID id,EventDataType val) { m_sum[id]=val; }
|
|
|
|
void setMin(ChannelID id,EventDataType val) { m_min[id]=val; }
|
|
|
|
void setMax(ChannelID id,EventDataType val) { m_max[id]=val; }
|
|
|
|
void setAvg(ChannelID id,EventDataType val) { m_avg[id]=val; }
|
|
|
|
void setWavg(ChannelID id,EventDataType val) { m_wavg[id]=val; }
|
|
|
|
void set90p(ChannelID id,EventDataType val) { m_90p[id]=val; }
|
|
|
|
void setCph(ChannelID id,EventDataType val) { m_cph[id]=val; }
|
|
|
|
void setSph(ChannelID id,EventDataType val) { m_sph[id]=val; }
|
|
|
|
void setFirst(ChannelID id,qint64 val) { m_firstchan[id]=val; }
|
|
|
|
void setLast(ChannelID id,qint64 val) { m_lastchan[id]=val; }
|
|
|
|
|
|
|
|
int count(ChannelID id);
|
|
|
|
double sum(ChannelID id);
|
|
|
|
EventDataType avg(ChannelID id);
|
|
|
|
EventDataType wavg(ChannelID i);
|
|
|
|
EventDataType min(ChannelID id);
|
|
|
|
EventDataType max(ChannelID id);
|
|
|
|
EventDataType p90(ChannelID id);
|
|
|
|
EventDataType cph(ChannelID id);
|
|
|
|
EventDataType sph(ChannelID id);
|
|
|
|
|
|
|
|
EventDataType percentile(ChannelID id,EventDataType percentile);
|
|
|
|
|
2011-08-07 07:11:50 +00:00
|
|
|
bool channelExists(ChannelID id);
|
2011-07-27 09:21:53 +00:00
|
|
|
|
|
|
|
bool IsLoneSession() { return s_lonesession; }
|
|
|
|
void SetLoneSession(bool b) { s_lonesession=b; }
|
|
|
|
void SetEventFile(QString & filename) { s_eventfile=filename; }
|
|
|
|
|
2011-07-31 20:24:43 +00:00
|
|
|
inline void updateFirst(qint64 v) { if (!s_first) s_first=v; else if (s_first>v) s_first=v; }
|
|
|
|
inline void updateLast(qint64 v) { if (!s_last) s_last=v; else if (s_last<v) s_last=v; }
|
|
|
|
|
|
|
|
qint64 first(ChannelID code);
|
|
|
|
qint64 last(ChannelID code);
|
|
|
|
|
|
|
|
void UpdateSummaries();
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
SessionID s_session;
|
|
|
|
|
|
|
|
Machine *s_machine;
|
2011-07-02 14:35:50 +00:00
|
|
|
qint64 s_first;
|
|
|
|
qint64 s_last;
|
2011-06-26 08:30:44 +00:00
|
|
|
bool s_changed;
|
|
|
|
bool s_lonesession;
|
|
|
|
bool _first_session;
|
|
|
|
|
|
|
|
bool s_events_loaded;
|
|
|
|
QString s_eventfile;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // SESSION_H
|