mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
277 lines
9.8 KiB
C++
277 lines
9.8 KiB
C++
/* 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. */
|
|
|
|
#ifndef DAY_H
|
|
#define DAY_H
|
|
|
|
#include "SleepLib/common.h"
|
|
#include "SleepLib/machine_common.h"
|
|
#include "SleepLib/machine.h"
|
|
#include "SleepLib/event.h"
|
|
#include "SleepLib/session.h"
|
|
|
|
/*! \class OneTypePerDay
|
|
\brief An Exception class to catch multiple machine records per day
|
|
*/
|
|
class OneTypePerDay
|
|
{
|
|
};
|
|
|
|
class Machine;
|
|
class Session;
|
|
|
|
/*! \class Day
|
|
\brief Contains a list of all Sessions for single date, for a single machine
|
|
*/
|
|
class Day
|
|
{
|
|
public:
|
|
Day();
|
|
~Day();
|
|
|
|
//! \brief Add a new machine to this day record
|
|
bool addMachine(Machine *m);
|
|
|
|
//! \brief Returns a machine record if present of specified machine type
|
|
Machine *machine(MachineType type);
|
|
|
|
//! \brief Returns a list of sessions for the specified machine type
|
|
QList<Session *> getSessions(MachineType type);
|
|
|
|
//! \brief Add Session to this Day object (called during Load)
|
|
void addSession(Session *s);
|
|
|
|
//! \brief Returns the count of all this days sessions' events for this day
|
|
EventDataType count(ChannelID code);
|
|
|
|
//! \brief Returns the Minimum of all this sessions' events for this day
|
|
EventDataType Min(ChannelID code);
|
|
|
|
//! \brief Returns the Maximum of all sessions' events for this day
|
|
EventDataType Max(ChannelID code);
|
|
|
|
//! \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);
|
|
|
|
//! \brief Returns the Count-per-hour of all sessions' events for this day
|
|
EventDataType cph(ChannelID code);
|
|
|
|
//! \brief Returns the Sum-per-hour of all this sessions' events for this day
|
|
EventDataType sph(ChannelID code);
|
|
|
|
//! \brief Returns (and caches) the 90th Percentile of all this sessions' events for this day
|
|
EventDataType p90(ChannelID code);
|
|
|
|
//! \brief Returns the Average of all this sessions' events for this day
|
|
EventDataType avg(ChannelID code);
|
|
|
|
//! \brief Returns the Sum of all this sessions' events for this day
|
|
EventDataType sum(ChannelID code);
|
|
|
|
//! \brief Returns the Time-Weighted Average of all this sessions' events for this day
|
|
EventDataType wavg(ChannelID code);
|
|
|
|
//! \brief Returns a requested Percentile of all this sessions' events for this day
|
|
EventDataType percentile(ChannelID code, EventDataType percentile);
|
|
|
|
//! \brief Returns if the cache contains SummaryType information about the requested code
|
|
bool hasData(ChannelID code, SummaryType type);
|
|
|
|
//! \brief Returns the Average of all Sessions setting 'code' for this day
|
|
EventDataType settings_avg(ChannelID code);
|
|
|
|
//! \brief Returns the Time-Weighted Average of all Sessions setting 'code' for this day
|
|
EventDataType settings_wavg(ChannelID code);
|
|
|
|
//! \brief Returns the Sum of all Sessions setting 'code' for this day
|
|
EventDataType settings_sum(ChannelID code);
|
|
|
|
//! \brief Returns the Minimum of all Sessions setting 'code' for this day
|
|
EventDataType settings_min(ChannelID code);
|
|
|
|
//! \brief Returns the Maximum of all Sessions setting 'code' for this day
|
|
EventDataType settings_max(ChannelID code);
|
|
|
|
//! \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, bool square);
|
|
|
|
//! \brief Returns the count of code events inside span flag event durations
|
|
EventDataType countInsideSpan(ChannelID span, ChannelID code);
|
|
|
|
|
|
//! \brief Returns the first session time of this day
|
|
qint64 first();
|
|
|
|
//! \brief Returns the last session time of this day
|
|
qint64 last();
|
|
|
|
//! \brief Returns the first session time of this machine type for this day
|
|
qint64 first(MachineType type);
|
|
|
|
//! \brief Returns the last session time of this machine type for this day
|
|
qint64 last(MachineType type);
|
|
|
|
|
|
// //! \brief Sets the first session time of this day
|
|
// void setFirst(qint64 val) { d_first=val; }
|
|
|
|
// //! \brief Sets the last session time of this day
|
|
// void setLast(qint64 val) { d_last=val; }
|
|
|
|
//! \brief Returns the last session time of this day for the supplied Channel code
|
|
qint64 first(ChannelID code);
|
|
|
|
//! \brief Returns the last session time of this day for the supplied Channel code
|
|
qint64 last(ChannelID code);
|
|
|
|
//! \brief Returns the total time in milliseconds for this day
|
|
qint64 total_time();
|
|
|
|
//! \brief Returns the total time in milliseconds for this day for given machine type
|
|
qint64 total_time(MachineType type);
|
|
|
|
//! \brief Returns true if this day has enabled sessions for supplied machine type
|
|
bool hasEnabledSessions(MachineType);
|
|
|
|
//! \brief Returns true if this day has enabled sessions
|
|
bool hasEnabledSessions();
|
|
|
|
//! \brief Return the total time in decimal hours for this day
|
|
EventDataType hours() { return double(total_time()) / 3600000.0; }
|
|
EventDataType hours(MachineType type) { return double(total_time(type)) / 3600000.0; }
|
|
|
|
//! \brief Return the session indexed by i
|
|
Session *operator [](int i) { return sessions[i]; }
|
|
|
|
//! \brief Return the first session as a QVector<Session*>::iterator
|
|
QList<Session *>::iterator begin() { return sessions.begin(); }
|
|
//! \brief Return the end session record as a QVector<Session*>::iterator
|
|
QList<Session *>::iterator end() { return sessions.end(); }
|
|
|
|
//! \brief Check if day contains SummaryOnly records
|
|
bool summaryOnly();
|
|
|
|
//! \brief Finds and returns the index of a session, otherwise -1 if it's not there
|
|
int find(Session *sess) { return sessions.indexOf(sess); }
|
|
|
|
Session *find(SessionID sessid);
|
|
|
|
//! \brief Returns the number of Sessions in this day record
|
|
int size() { return sessions.size(); }
|
|
|
|
//! \brief Loads all Events files for this Days Sessions
|
|
void OpenEvents();
|
|
|
|
//! \brief Closes all Events files for this Days Sessions
|
|
void CloseEvents();
|
|
|
|
//! \brief Returns true if this Day contains loaded Event Data for this channel.
|
|
bool channelExists(ChannelID id);
|
|
|
|
//! \brief Returns true if session events are loaded
|
|
bool eventsLoaded();
|
|
|
|
//! \brief Returns true if this Day contains loaded Event Data or a cached count for this channel
|
|
bool channelHasData(ChannelID id);
|
|
|
|
//! \brief Returns true if this day contains the supplied settings Channel id
|
|
bool settingExists(ChannelID id);
|
|
|
|
//! \brief Removes a session from this day
|
|
bool removeSession(Session *sess);
|
|
|
|
//! \brief Returns a list of channels of supplied types, according to channel orders
|
|
QList<ChannelID> getSortedMachineChannels(quint32 chantype);
|
|
|
|
// Some ugly CPAP specific stuff
|
|
QString getCPAPMode();
|
|
QString getPressureRelief();
|
|
QString getPressureSettings();
|
|
|
|
// Some more very much CPAP only related stuff
|
|
|
|
//! \brief Calculate AHI (Apnea Hypopnea Index)
|
|
EventDataType calcAHI() {
|
|
EventDataType c = count(CPAP_Hypopnea) + count(CPAP_Obstructive) + count(CPAP_Apnea) + count(CPAP_ClearAirway);
|
|
EventDataType minutes = hours() * 60.0;
|
|
return (c * 60.0) / minutes;
|
|
}
|
|
|
|
//! \brief Calculate RDI (Respiratory Disturbance Index)
|
|
EventDataType calcRDI() {
|
|
EventDataType c = count(CPAP_Hypopnea) + count(CPAP_Obstructive) + count(CPAP_Apnea) + count(CPAP_ClearAirway) + count(CPAP_RERA);
|
|
EventDataType minutes = hours() * 60.0;
|
|
return (c * 60.0) / minutes;
|
|
}
|
|
|
|
//! \brief Percent of night for specified channel
|
|
EventDataType calcPON(ChannelID code) {
|
|
EventDataType c = sum(code);
|
|
EventDataType minutes = hours() * 60.0;
|
|
|
|
return (100.0 / minutes) * (c / 60.0);
|
|
}
|
|
|
|
//! \brief Calculate index (count per hour) for specified channel
|
|
EventDataType calcIdx(ChannelID code) {
|
|
EventDataType c = count(code);
|
|
EventDataType minutes = hours() * 60.0;
|
|
|
|
return (c * 60.0) / minutes;
|
|
}
|
|
|
|
//! \brief SleepyyHead Events Index, AHI combined with SleepyHead detected events.. :)
|
|
EventDataType calcSHEI() {
|
|
EventDataType c = count(CPAP_Hypopnea) + count(CPAP_Obstructive) + count(CPAP_Apnea) + count(CPAP_ClearAirway) + count(CPAP_UserFlag1) + count(CPAP_UserFlag2);
|
|
EventDataType minutes = hours() * 60.0;
|
|
return (c * 60.0) / minutes;
|
|
}
|
|
//! \brief Total duration of all Apnea/Hypopnea events in seconds,
|
|
EventDataType calcTTIA() {
|
|
EventDataType c = sum(CPAP_Hypopnea) + sum(CPAP_Obstructive) + sum(CPAP_Apnea) + sum(CPAP_ClearAirway);
|
|
return c;
|
|
}
|
|
bool hasEvents();
|
|
|
|
// According to preferences..
|
|
EventDataType calcMiddle(ChannelID code);
|
|
EventDataType calcMax(ChannelID code);
|
|
EventDataType calcPercentile(ChannelID code);
|
|
static QString calcMiddleLabel(ChannelID code);
|
|
static QString calcMaxLabel(ChannelID code);
|
|
static QString calcPercentileLabel(ChannelID code);
|
|
|
|
EventDataType calc(ChannelID code, ChannelCalcType type);
|
|
|
|
Session * firstSession(MachineType type);
|
|
|
|
//! \brief A QList containing all Sessions objects for this day
|
|
QList<Session *> sessions;
|
|
|
|
QHash<MachineType, Machine *> machines;
|
|
|
|
protected:
|
|
//! \brief A Vector containing all sessions for this day
|
|
QHash<ChannelID, QHash<EventDataType, EventDataType> > perc_cache;
|
|
//qint64 d_first,d_last;
|
|
private:
|
|
bool d_firstsession;
|
|
};
|
|
|
|
|
|
#endif // DAY_H
|