OSCAR-code/SleepLib/day.h

78 lines
2.0 KiB
C
Raw Normal View History

2011-06-26 08:30:44 +00:00
/********************************************************************
SleepLib Day Class Header
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
License: GPL
*********************************************************************/
#ifndef DAY_H
#define DAY_H
2011-07-27 09:21:53 +00:00
#include "SleepLib/machine_common.h"
2011-06-26 08:30:44 +00:00
#include "SleepLib/machine.h"
2011-07-27 09:21:53 +00:00
#include "SleepLib/event.h"
2011-06-26 08:30:44 +00:00
#include "SleepLib/session.h"
class OneTypePerDay
{
};
class Machine;
class Session;
class Day
{
public:
Day(Machine *m);
~Day();
void AddSession(Session *s);
MachineType machine_type();
int count(ChannelID code);
EventDataType min(ChannelID code);
EventDataType max(ChannelID code);
EventDataType p90(ChannelID code);
EventDataType avg(ChannelID code);
EventDataType sum(ChannelID code);
EventDataType wavg(ChannelID code);
EventDataType percentile(ChannelID mc,double percent);
2011-06-26 08:30:44 +00:00
// Note, the following convert to doubles without considering the consequences fully.
EventDataType settings_avg(ChannelID code);
EventDataType settings_wavg(ChannelID code);
EventDataType settings_sum(ChannelID code);
EventDataType settings_min(ChannelID code);
EventDataType settings_max(ChannelID code);
2011-06-26 08:30:44 +00:00
2011-07-27 09:21:53 +00:00
qint64 first() { return d_first; }
qint64 last() { return d_last; }
2011-07-29 14:58:44 +00:00
void setFirst(qint64 val) { d_first=val; }
void setLast(qint64 val) { d_last=val; }
qint64 first(ChannelID code);
qint64 last(ChannelID code);
2011-07-27 09:21:53 +00:00
2011-06-26 08:30:44 +00:00
qint64 total_time(); // in milliseconds
2011-07-27 09:21:53 +00:00
double hours() { return double(total_time())/3600000.0; }
2011-06-26 08:30:44 +00:00
2011-07-27 09:21:53 +00:00
Session *operator [](int i) { return sessions[i]; }
2011-06-26 08:30:44 +00:00
QVector<Session *>::iterator begin() { return sessions.begin(); }
QVector<Session *>::iterator end() { return sessions.end(); }
2011-06-26 08:30:44 +00:00
int size() { return sessions.size(); }
2011-06-26 08:30:44 +00:00
Machine *machine;
void OpenEvents();
QVector<Session *> & getSessions() { return sessions; }
2011-06-26 08:30:44 +00:00
protected:
QVector<Session *> sessions;
qint64 d_first,d_last;
2011-06-26 08:30:44 +00:00
private:
bool d_firstsession;
};
#endif // DAY_H