2011-11-26 04:00:31 +00:00
|
|
|
/*
|
2011-06-26 08:30:44 +00:00
|
|
|
SleepLib Day Class Header
|
|
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
License: GPL
|
2011-11-26 04:00:31 +00:00
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
#ifndef DAY_H
|
|
|
|
#define DAY_H
|
|
|
|
|
2011-12-21 11:09:50 +00:00
|
|
|
#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"
|
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
/*! \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
|
2011-07-31 20:24:43 +00:00
|
|
|
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
|
2011-09-10 15:43:40 +00:00
|
|
|
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
|
2011-09-10 15:43:40 +00:00
|
|
|
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
|
2011-07-31 20:24:43 +00:00
|
|
|
EventDataType p90(ChannelID code);
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
//! \brief Returns the Average of all this sessions' events for this day
|
2011-07-31 20:24:43 +00:00
|
|
|
EventDataType avg(ChannelID code);
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
//! \brief Returns the Sum of all this sessions' events for this day
|
2011-07-31 20:24:43 +00:00
|
|
|
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
|
2011-07-31 20:24:43 +00:00
|
|
|
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
|
2011-12-11 09:45:28 +00:00
|
|
|
EventDataType percentile(ChannelID code,EventDataType percentile);
|
2011-07-31 20:24:43 +00:00
|
|
|
|
2011-12-18 13:20:01 +00:00
|
|
|
//! \brief Returns if the cache contains SummaryType information about the requested code
|
2011-12-10 12:14:48 +00:00
|
|
|
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
|
2011-07-31 20:24:43 +00:00
|
|
|
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
|
2011-07-31 20:24:43 +00:00
|
|
|
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
|
2011-07-31 20:24:43 +00:00
|
|
|
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
|
2011-07-31 20:24:43 +00:00
|
|
|
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
|
2011-07-31 20:24:43 +00:00
|
|
|
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-12-28 12:36:40 +00:00
|
|
|
qint64 first();
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
//! \brief Returns the last session time of this day
|
2011-12-28 12:36:40 +00:00
|
|
|
qint64 last();
|
2011-12-18 13:20:01 +00:00
|
|
|
|
2012-01-19 15:18:34 +00:00
|
|
|
// //! \brief Sets the first session time of this day
|
|
|
|
// void setFirst(qint64 val) { d_first=val; }
|
2011-12-18 13:20:01 +00:00
|
|
|
|
2012-01-19 15:18:34 +00:00
|
|
|
// //! \brief Sets the last session time of this day
|
|
|
|
// 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
|
2011-07-31 20:24:43 +00:00
|
|
|
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
|
2011-07-31 20:24:43 +00:00
|
|
|
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-28 14:03:09 +00:00
|
|
|
//! \brief Returns true if this day has enabled sessions
|
|
|
|
bool hasEnabledSessions();
|
|
|
|
|
2011-12-18 13:20:01 +00:00
|
|
|
//! \brief Return the total time in decimal hours for this day
|
2011-10-02 05:06:58 +00:00
|
|
|
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
|
2011-07-31 20:24:43 +00:00
|
|
|
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
|
2011-07-31 20:24:43 +00:00
|
|
|
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
|
2011-12-06 14:39:14 +00:00
|
|
|
int find(Session * sess) { return sessions.indexOf(sess); }
|
2011-12-18 13:20:01 +00:00
|
|
|
|
2011-12-27 13:21:10 +00:00
|
|
|
Session *find(SessionID sessid);
|
|
|
|
|
2011-12-18 13:20:01 +00:00
|
|
|
//! \brief Returns the number of Sessions in this day record
|
2011-08-01 04:34:55 +00:00
|
|
|
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
|
|
|
|
2011-12-23 10:52:31 +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
|
2011-07-31 20:24:43 +00:00
|
|
|
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
|
|
|
|
2011-12-23 10:52:31 +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
|
2011-07-31 20:24:43 +00:00
|
|
|
QVector<Session *> sessions;
|
2012-01-05 04:37:22 +00:00
|
|
|
QHash<ChannelID, QHash<EventDataType, EventDataType> > perc_cache;
|
2012-01-19 15:18:34 +00:00
|
|
|
//qint64 d_first,d_last;
|
2011-06-26 08:30:44 +00:00
|
|
|
private:
|
|
|
|
bool d_firstsession;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // DAY_H
|