2014-04-09 21:01:57 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: set ts=8 sts=4 et sw=4 tw=99:
|
|
|
|
*
|
|
|
|
* SleepLib Day Class Header
|
|
|
|
*
|
|
|
|
* Copyright (c) 2011-2014 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file COPYING in the main directory of the Linux
|
|
|
|
* distribution for more details. */
|
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
|
|
|
|
{
|
2014-04-17 05:58:57 +00:00
|
|
|
public:
|
2011-06-26 08:30:44 +00:00
|
|
|
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
|
2014-04-11 22:22:23 +00:00
|
|
|
MachineType machine_type() const;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-12-18 13:20:01 +00:00
|
|
|
//! \brief Returns the count of all this days sessions' events for this day
|
2014-06-20 02:06:57 +00:00
|
|
|
EventDataType 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
|
|
|
|
2013-10-25 10:39:30 +00:00
|
|
|
//! \brief Returns the Minimum of all this sessions' events for this day
|
|
|
|
EventDataType physMin(ChannelID code);
|
|
|
|
|
|
|
|
//! \brief Returns the Maximum of all sessions' events for this day
|
|
|
|
EventDataType physMax(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
|
2014-04-17 05:58:57 +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
|
|
|
|
2014-05-15 20:48:05 +00:00
|
|
|
//! \brief Returns the amount of time (in decimal minutes) the Channel spent above the threshold
|
2014-07-20 16:22:51 +00:00
|
|
|
EventDataType timeAboveThreshold(ChannelID code, EventDataType threshold);
|
2014-05-15 20:48:05 +00:00
|
|
|
|
|
|
|
//! \brief Returns the amount of time (in decimal minutes) the Channel spent below the threshold
|
2014-07-20 16:22:51 +00:00
|
|
|
EventDataType timeBelowThreshold(ChannelID code, EventDataType threshold);
|
2014-05-15 20:48:05 +00:00
|
|
|
|
2014-07-20 16:22:51 +00:00
|
|
|
//! \brief Returns the value for Channel code at a given time
|
2014-08-06 07:28:24 +00:00
|
|
|
EventDataType lookupValue(ChannelID code, qint64 time, bool square);
|
2014-05-15 20:48:05 +00:00
|
|
|
|
2014-07-30 17:14:28 +00:00
|
|
|
//! \brief Returns the count of code events inside span flag event durations
|
|
|
|
EventDataType countInsideSpan(ChannelID span, ChannelID code);
|
|
|
|
|
|
|
|
|
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
|
2014-04-17 05:58:57 +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
|
2013-10-22 11:42:57 +00:00
|
|
|
QList<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
|
2013-10-22 11:42:57 +00:00
|
|
|
QList<Session *>::iterator end() { return sessions.end(); }
|
2011-12-18 13:20:01 +00:00
|
|
|
|
2014-05-19 03:46:02 +00:00
|
|
|
//! \brief Check if day contains SummaryOnly records
|
|
|
|
bool summaryOnly();
|
|
|
|
|
2011-12-18 13:20:01 +00:00
|
|
|
//! \brief Finds and returns the index of a session, otherwise -1 if it's not there
|
2014-04-17 05:58:57 +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 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);
|
|
|
|
|
2014-08-07 20:27:23 +00:00
|
|
|
//! \brief Removes a session from this day
|
2014-07-25 07:53:48 +00:00
|
|
|
bool removeSession(Session *sess);
|
|
|
|
|
2014-08-07 20:27:23 +00:00
|
|
|
//! \brief Returns a list of channels of supplied types, according to channel orders
|
|
|
|
QList<ChannelID> getSortedMachineChannels(quint32 chantype);
|
2014-07-25 07:53:48 +00:00
|
|
|
|
2014-08-03 13:00:13 +00:00
|
|
|
// Some ugly CPAP specific stuff
|
2014-07-25 07:53:48 +00:00
|
|
|
QString getCPAPMode();
|
2014-08-03 13:00:13 +00:00
|
|
|
QString getPressureRelief();
|
2014-07-25 07:53:48 +00:00
|
|
|
QString getPressureSettings();
|
2014-08-03 13:00:13 +00:00
|
|
|
|
2014-07-25 07:53:48 +00:00
|
|
|
QList<Session *> sessions;
|
2013-10-22 11:42:57 +00:00
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
protected:
|
2011-12-18 13:20:01 +00:00
|
|
|
//! \brief A Vector containing all sessions for this day
|
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;
|
2014-04-17 05:58:57 +00:00
|
|
|
private:
|
2011-06-26 08:30:44 +00:00
|
|
|
bool d_firstsession;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // DAY_H
|