OSCAR-code/SleepLib/day.cpp

353 lines
8.1 KiB
C++
Raw Normal View History

2011-09-02 05:13:07 +00:00
/*
2011-06-26 08:30:44 +00:00
SleepLib Day Class Implementation
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
License: GPL
2011-09-02 05:13:07 +00:00
*/
2011-06-26 08:30:44 +00:00
#include "day.h"
Day::Day(Machine *m)
:machine(m)
{
d_firstsession=true;
}
Day::~Day()
{
QVector<Session *>::iterator s;
2011-06-26 08:30:44 +00:00
for (s=sessions.begin();s!=sessions.end();s++) {
delete (*s);
}
}
MachineType Day::machine_type()
{
return machine->GetType();
};
void Day::AddSession(Session *s)
{
if (!s) {
qWarning("Day::AddSession called with NULL session object");
return;
}
if (d_firstsession) {
d_firstsession=false;
d_first=s->first();
d_last=s->last();
} else {
if (d_first > s->first()) d_first = s->first();
if (d_last < s->last()) d_last = s->last();
}
sessions.push_back(s);
}
EventDataType Day::settings_sum(ChannelID code)
2011-06-26 08:30:44 +00:00
{
EventDataType val=0;
QVector<Session *>::iterator s;
2011-06-26 08:30:44 +00:00
for (s=sessions.begin();s!=sessions.end();s++) {
Session & sess=*(*s);
QHash<ChannelID,QVariant>::iterator i=sess.settings.find(code);
if (i!=sess.settings.end()) {
val+=i.value().toDouble();
2011-06-26 08:30:44 +00:00
}
}
return val;
}
EventDataType Day::settings_max(ChannelID code)
2011-06-26 08:30:44 +00:00
{
EventDataType val=0,tmp;
QVector<Session *>::iterator s;
2011-06-26 08:30:44 +00:00
for (s=sessions.begin();s!=sessions.end();s++) {
Session & sess=*(*s);
QHash<ChannelID,QVariant>::iterator i=sess.settings.find(code);
if (i!=sess.settings.end()) {
tmp=i.value().toDouble();
2011-06-26 08:30:44 +00:00
if (tmp>val) val=tmp;
}
}
return val;
}
EventDataType Day::settings_min(ChannelID code)
2011-06-26 08:30:44 +00:00
{
EventDataType val=0,tmp;
bool fir=true;
// Cache this?
QVector<Session *>::iterator s;
2011-06-26 08:30:44 +00:00
for (s=sessions.begin();s!=sessions.end();s++) {
Session & sess=*(*s);
QHash<ChannelID,QVariant>::iterator i=sess.settings.find(code);
if (i!=sess.settings.end()) {
tmp=i.value().toDouble();
2011-06-26 08:30:44 +00:00
if (fir) {
val=tmp;
fir=false;
} else {
if (val<tmp) val=tmp;
}
}
}
return val;
}
EventDataType Day::settings_avg(ChannelID code)
2011-06-26 08:30:44 +00:00
{
EventDataType val=0;
2011-06-26 08:30:44 +00:00
int cnt=0;
QVector<Session *>::iterator s;
2011-06-26 08:30:44 +00:00
for (s=sessions.begin();s!=sessions.end();s++) {
Session & sess=*(*s);
QHash<ChannelID,QVariant>::iterator i=sess.settings.find(code);
if (i!=sess.settings.end()) {
val+=i.value().toDouble();
2011-06-26 08:30:44 +00:00
cnt++;
}
}
val/=EventDataType(cnt);
2011-06-26 08:30:44 +00:00
return val;
}
EventDataType Day::settings_wavg(ChannelID code)
2011-06-26 08:30:44 +00:00
{
double s0=0,s1=0,s2=0;
for (QVector<Session *>::iterator s=sessions.begin();s!=sessions.end();s++) {
2011-06-26 08:30:44 +00:00
Session & sess=*(*s);
2011-09-10 06:29:58 +00:00
QHash<ChannelID,QVariant>::iterator i=sess.settings.find(code);
if (i!=sess.settings.end()) {
2011-06-26 08:30:44 +00:00
s0=sess.hours();
s1+=i.value().toDouble()*s0;
2011-06-26 08:30:44 +00:00
s2+=s0;
}
}
if (s2==0) return 0;
return (s1/s2);
}
EventDataType Day::p90(ChannelID code) // The "average" p90.. this needs fixing.
{
double val=0;
// Cache this?
int cnt=0;
QVector<Session *>::iterator s;
// Don't assume sessions are in order.
for (s=sessions.begin();s!=sessions.end();s++) {
Session & sess=*(*s);
2011-09-10 06:29:58 +00:00
if (sess.m_90p.contains(code)) {
val+=sess.p90(code);
cnt++;
}
}
if (cnt==0) return 0;
return EventDataType(val/float(cnt));
}
2011-06-26 08:30:44 +00:00
EventDataType Day::avg(ChannelID code)
2011-06-26 08:30:44 +00:00
{
double val=0;
// Cache this?
int cnt=0;
QVector<Session *>::iterator s;
2011-06-26 08:30:44 +00:00
// Don't assume sessions are in order.
for (s=sessions.begin();s!=sessions.end();s++) {
Session & sess=*(*s);
2011-09-10 06:29:58 +00:00
if (sess.m_avg.contains(code)) {
2011-07-27 09:21:53 +00:00
val+=sess.avg(code);
2011-06-26 08:30:44 +00:00
cnt++;
}
}
if (cnt==0) return 0;
return EventDataType(val/float(cnt));
}
EventDataType Day::sum(ChannelID code)
2011-06-26 08:30:44 +00:00
{
// Cache this?
EventDataType val=0;
QVector<Session *>::iterator s;
2011-06-26 08:30:44 +00:00
for (s=sessions.begin();s!=sessions.end();s++) {
Session & sess=*(*s);
2011-09-10 06:29:58 +00:00
if (sess.m_sum.contains(code)) {
2011-07-27 09:21:53 +00:00
val+=sess.sum(code);
2011-06-26 08:30:44 +00:00
}
}
return val;
}
EventDataType Day::wavg(ChannelID code)
2011-06-26 08:30:44 +00:00
{
double s0=0,s1=0,s2=0;
2011-08-07 11:37:56 +00:00
qint64 d;
for (QVector<Session *>::iterator s=sessions.begin();s!=sessions.end();s++) {
2011-06-26 08:30:44 +00:00
Session & sess=*(*s);
if (sess.m_wavg.contains(code)) {
2011-08-07 11:37:56 +00:00
d=sess.last(code)-sess.first(code);
s0=double(d)/1000.0;
if (s0>0) {
s1+=sess.wavg(code)*s0;
s2+=s0;
}
2011-06-26 08:30:44 +00:00
}
}
2011-08-07 11:37:56 +00:00
if (s2==0)
return 0;
2011-06-26 08:30:44 +00:00
return (s1/s2);
}
2011-07-03 02:43:50 +00:00
// Total session time in milliseconds
qint64 Day::total_time()
2011-06-26 08:30:44 +00:00
{
2011-07-27 09:21:53 +00:00
qint64 d_totaltime=0;
2011-09-12 02:24:58 +00:00
for (QVector<Session *>::iterator s=begin();s!=end();s++) {
2011-06-26 08:30:44 +00:00
Session & sess=*(*s);
2011-09-12 02:24:58 +00:00
d_totaltime+=sess.length();
2011-06-26 08:30:44 +00:00
}
return d_totaltime;
}
EventDataType Day::percentile(ChannelID code,double percent)
2011-06-26 08:30:44 +00:00
{
double val=0;
int cnt=0;
for (QVector<Session *>::iterator s=sessions.begin();s!=sessions.end();s++) {
2011-06-26 08:30:44 +00:00
Session & sess=*(*s);
2011-07-27 09:21:53 +00:00
if (sess.eventlist.find(code)!=sess.eventlist.end()) {
val+=sess.percentile(code,percent);
2011-06-26 08:30:44 +00:00
cnt++;
}
}
if (cnt==0) return 0;
return EventDataType(val/cnt);
}
qint64 Day::first(ChannelID code)
2011-06-26 08:30:44 +00:00
{
qint64 date=0;
qint64 tmp;
2011-06-26 08:30:44 +00:00
for (QVector<Session *>::iterator s=sessions.begin();s!=sessions.end();s++) {
2011-07-27 09:21:53 +00:00
tmp=(*s)->first(code);
if (!tmp) continue;
if (!date) {
date=tmp;
} else {
if (tmp<date) date=tmp;
2011-06-26 08:30:44 +00:00
}
}
return date;
}
qint64 Day::last(ChannelID code)
2011-06-26 08:30:44 +00:00
{
qint64 date=0;
qint64 tmp;
2011-06-26 08:30:44 +00:00
for (QVector<Session *>::iterator s=sessions.begin();s!=sessions.end();s++) {
2011-07-27 09:21:53 +00:00
tmp=(*s)->last(code);
if (!tmp) continue;
if (!date) {
date=tmp;
} else {
if (tmp>date) date=tmp;
2011-06-26 08:30:44 +00:00
}
}
return date;
}
EventDataType Day::min(ChannelID code)
2011-06-26 08:30:44 +00:00
{
2011-07-27 09:21:53 +00:00
EventDataType min=0;
EventDataType tmp;
bool first=true;
for (QVector<Session *>::iterator s=sessions.begin();s!=sessions.end();s++) {
2011-09-10 06:29:58 +00:00
if (!(*s)->m_min.contains(code)) continue;
//if ((*s)->eventlist.find(code)==(*s)->eventlist.end()) continue;
2011-07-27 09:21:53 +00:00
tmp=(*s)->min(code);
if (first) {
min=tmp;
first=false;
} else {
if (tmp<min) min=tmp;
}
2011-06-26 08:30:44 +00:00
}
2011-07-27 09:21:53 +00:00
return min;
}
2011-06-26 08:30:44 +00:00
EventDataType Day::max(ChannelID code)
2011-07-27 09:21:53 +00:00
{
EventDataType max=0;
EventDataType tmp;
bool first=true;
for (QVector<Session *>::iterator s=sessions.begin();s!=sessions.end();s++) {
2011-09-10 06:29:58 +00:00
if (!(*s)->m_max.contains(code)) continue;
// if ((*s)->eventlist.find(code)==(*s)->eventlist.end()) continue;
2011-07-27 09:21:53 +00:00
tmp=(*s)->max(code);
if (first) {
max=tmp;
first=false;
} else {
if (tmp>max) max=tmp;
}
}
return max;
2011-06-26 08:30:44 +00:00
}
EventDataType Day::cph(ChannelID code)
{
EventDataType sum=0;
EventDataType h=0;
for (int i=0;i<sessions.size();i++) {
2011-09-12 05:09:53 +00:00
if (!sessions[i]->m_cph.contains(code)) continue;
sum+=sessions[i]->cph(code)*sessions[i]->hours();
2011-09-10 16:30:25 +00:00
//h+=sessions[i]->hours();
}
2011-09-12 05:09:53 +00:00
sum/=hours();
return sum;
}
EventDataType Day::sph(ChannelID code)
{
EventDataType sum=0;
EventDataType h=0;
for (int i=0;i<sessions.size();i++) {
2011-09-12 05:09:53 +00:00
if (!sessions[i]->m_sph.contains(code)) continue;
sum+=sessions[i]->sph(code)*sessions[i]->hours();
2011-09-10 16:30:25 +00:00
//h+=sessions[i]->hours();
}
2011-09-10 16:30:25 +00:00
h=hours();
sum=(100.0/h)*sum;
return sum;
}
int Day::count(ChannelID code)
2011-07-27 09:21:53 +00:00
{
int sum=0;
for (int i=0;i<sessions.size();i++) {
2011-07-27 09:21:53 +00:00
sum+=sessions[i]->count(code);
}
return sum;
}
2011-08-07 11:37:56 +00:00
bool Day::channelExists(ChannelID id)
{
for (int i=0;i<sessions.size();i++) {
if (sessions[i]->channelExists(id))
return true;
}
return false;
}
2011-07-27 09:21:53 +00:00
void Day::OpenEvents()
2011-06-26 08:30:44 +00:00
{
QVector<Session *>::iterator s;
2011-06-26 08:30:44 +00:00
for (s=sessions.begin();s!=sessions.end();s++) {
2011-07-27 09:21:53 +00:00
(*s)->OpenEvents();
2011-06-26 08:30:44 +00:00
}
2011-07-27 09:21:53 +00:00
2011-06-26 08:30:44 +00:00
}