OSCAR-code/sleepyhead/SleepLib/day.h

196 lines
6.6 KiB
C
Raw Normal View History

/* -*- 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
#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:
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
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
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
//! \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
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
//! \brief Returns the amount of time (in decimal minutes) the Channel spent above the threshold
EventDataType timeAboveThreshold(ChannelID code, EventDataType threshold);
//! \brief Returns the amount of time (in decimal minutes) the Channel spent below the threshold
EventDataType timeBelowThreshold(ChannelID code, EventDataType threshold);
//! \brief Returns the value for Channel code at a given time
EventDataType lookupValue(ChannelID code, qint64 time);
//! \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
qint64 first();
2011-12-18 13:20:01 +00:00
//! \brief Returns the last session time of this day
qint64 last();
2011-12-18 13:20:01 +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
// //! \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
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
//! \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
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
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
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
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 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);
bool removeSession(Session *sess);
QString getCPAPMode();
QString getPressureSettings();
QList<Session *> sessions;
protected:
2011-12-18 13:20:01 +00:00
//! \brief A Vector containing all sessions for this day
QHash<ChannelID, QHash<EventDataType, EventDataType> > perc_cache;
//qint64 d_first,d_last;
private:
2011-06-26 08:30:44 +00:00
bool d_firstsession;
};
#endif // DAY_H