OSCAR-code/SleepLib/day.h

162 lines
5.2 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
*/
2011-06-26 08:30:44 +00:00
#ifndef DAY_H
#define DAY_H
#include "SleepLib/common.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
\brief An Exception class to catch multiple machine records per day
*/
2011-06-26 08:30:44 +00:00
class OneTypePerDay
{
};
class Machine;
class Session;
2011-12-18 13:20:01 +00:00
/*! \class Day
\brief Contains a list of all Sessions for single date, for a single machine
*/
2011-06-26 08:30:44 +00:00
class Day
{
public:
Day(Machine *m);
~Day();
2011-12-18 13:20:01 +00:00
//! \brief Add Session to this Day object (called during Load)
2011-06-26 08:30:44 +00:00
void AddSession(Session *s);
2011-12-18 13:20:01 +00:00
//! \brief Returns this machines type
2011-06-26 08:30:44 +00:00
MachineType machine_type();
2011-12-18 13:20:01 +00:00
//! \brief Returns the count of all this days sessions' events for this day
int count(ChannelID code);
2011-12-18 13:20:01 +00:00
//! \brief Returns the Minimum of all this sessions' events for this day
2011-12-17 14:38:15 +00:00
EventDataType Min(ChannelID code);
2011-12-18 13:20:01 +00:00
//! \brief Returns the Maximum of all sessions' events for this day
2011-12-17 14:38:15 +00:00
EventDataType Max(ChannelID code);
2011-12-18 13:20:01 +00:00
//! \brief Returns the Count-per-hour of all sessions' events for this day
EventDataType cph(ChannelID code);
2011-12-18 13:20:01 +00:00
//! \brief Returns the Sum-per-hour of all this sessions' events for this day
EventDataType sph(ChannelID code);
2011-12-18 13:20:01 +00:00
//! \brief Returns (and caches) the 90th Percentile of all this sessions' events for this day
EventDataType p90(ChannelID code);
2011-12-18 13:20:01 +00:00
//! \brief Returns the Average of all this sessions' events for this day
EventDataType avg(ChannelID code);
2011-12-18 13:20:01 +00:00
//! \brief Returns the Sum of all this sessions' events for this day
EventDataType sum(ChannelID code);
2011-12-18 13:20:01 +00:00
//! \brief Returns the Time-Weighted Average of all this sessions' events for this day
EventDataType wavg(ChannelID code);
2011-12-18 13:20:01 +00:00
//! \brief Returns a requested Percentile of all this sessions' events for this day
EventDataType percentile(ChannelID code,EventDataType percentile);
2011-12-18 13:20:01 +00:00
//! \brief Returns if the cache contains SummaryType information about the requested code
bool hasData(ChannelID code, SummaryType type);
2011-12-18 13:20:01 +00:00
//! \brief Returns the Average of all Sessions setting 'code' for this day
EventDataType settings_avg(ChannelID code);
2011-12-18 13:20:01 +00:00
//! \brief Returns the Time-Weighted Average of all Sessions setting 'code' for this day
EventDataType settings_wavg(ChannelID code);
2011-12-18 13:20:01 +00:00
//! \brief Returns the Sum of all Sessions setting 'code' for this day
EventDataType settings_sum(ChannelID code);
2011-12-18 13:20:01 +00:00
//! \brief Returns the Minimum of all Sessions setting 'code' for this day
EventDataType settings_min(ChannelID code);
2011-12-18 13:20:01 +00:00
//! \brief Returns the Maximum of all Sessions setting 'code' for this day
EventDataType settings_max(ChannelID code);
2011-06-26 08:30:44 +00:00
2011-12-18 13:20:01 +00:00
//! \brief Returns the first session time of this day
2011-07-27 09:21:53 +00:00
qint64 first() { return d_first; }
2011-12-18 13:20:01 +00:00
//! \brief Returns the last session time of this day
2011-07-27 09:21:53 +00:00
qint64 last() { return d_last; }
2011-12-18 13:20:01 +00:00
//! \brief Sets the first session time of this day
2011-07-29 14:58:44 +00:00
void setFirst(qint64 val) { d_first=val; }
2011-12-18 13:20:01 +00:00
//! \brief Sets the last session time of this day
2011-07-29 14:58:44 +00:00
void setLast(qint64 val) { d_last=val; }
2011-12-18 13:20:01 +00:00
//! \brief Returns the last session time of this day for the supplied Channel code
qint64 first(ChannelID code);
2011-12-18 13:20:01 +00:00
//! \brief Returns the last session time of this day for the supplied Channel code
qint64 last(ChannelID code);
2011-07-27 09:21:53 +00:00
2011-12-18 13:20:01 +00:00
//! \brief Returns the total time in milliseconds for this day
qint64 total_time();
2011-06-26 08:30:44 +00:00
2011-12-18 13:20:01 +00:00
//! \brief Return the total time in decimal hours for this day
EventDataType hours() { return double(total_time())/3600000.0; }
2011-06-26 08:30:44 +00:00
2011-12-18 13:20:01 +00:00
//! \brief Return the session indexed by i
2011-07-27 09:21:53 +00:00
Session *operator [](int i) { return sessions[i]; }
2011-06-26 08:30:44 +00:00
2011-12-18 13:20:01 +00:00
//! \brief Return the first session as a QVector<Session*>::iterator
QVector<Session *>::iterator begin() { return sessions.begin(); }
2011-12-18 13:20:01 +00:00
//! \brief Return the end session record as a QVector<Session*>::iterator
QVector<Session *>::iterator end() { return sessions.end(); }
2011-12-18 13:20:01 +00:00
//! \brief Finds and returns the index of a session, otherwise -1 if it's not there
int find(Session * sess) { return sessions.indexOf(sess); }
2011-12-18 13:20:01 +00:00
Session *find(SessionID sessid);
2011-12-18 13:20:01 +00:00
//! \brief Returns the number of Sessions in this day record
int size() { return sessions.size(); }
2011-12-18 13:20:01 +00:00
2011-06-26 08:30:44 +00:00
Machine *machine;
2011-12-18 13:20:01 +00:00
//! \brief Loads all Events files for this Days Sessions
2011-06-26 08:30:44 +00:00
void OpenEvents();
2011-12-18 13:20:01 +00:00
//! \brief Closes all Events files for this Days Sessions
void CloseEvents();
2011-12-18 13:20:01 +00:00
//! \brief Returns this days sessions list
QVector<Session *> & getSessions() { return sessions; }
2011-12-18 13:20:01 +00:00
//! \brief Returns true if this Day contains loaded Event Data for this channel.
2011-08-07 11:37:56 +00:00
bool channelExists(ChannelID id);
2011-12-18 13:20:01 +00:00
//! \brief Returns true if session events are loaded
bool eventsLoaded();
2011-12-18 13:20:01 +00:00
//! \brief Returns true if this Day contains loaded Event Data or a cached count for this channel
2011-09-17 12:39:00 +00:00
bool channelHasData(ChannelID id);
2011-12-18 13:20:01 +00:00
//! \brief Returns true if this day contains the supplied settings Channel id
2011-09-18 15:43:14 +00:00
bool settingExists(ChannelID id);
2011-06-26 08:30:44 +00:00
protected:
2011-12-18 13:20:01 +00:00
//! \brief A Vector containing all sessions for this day
QVector<Session *> sessions;
qint64 d_first,d_last;
2011-06-26 08:30:44 +00:00
private:
bool d_firstsession;
};
#endif // DAY_H