2019-08-15 19:49:40 +00:00
|
|
|
/* SleepLib Day Class Header
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
2024-01-13 20:27:48 +00:00
|
|
|
* Copyright (c) 2019-2024 The OSCAR Team
|
2018-03-28 07:10:52 +00:00
|
|
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
2018-06-04 20:48:38 +00:00
|
|
|
* License. See the file COPYING in the main directory of the source code
|
|
|
|
* 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
|
2022-02-27 16:01:46 +00:00
|
|
|
\brief An Exception class to catch multiple device records per day
|
2011-12-19 05:35:05 +00:00
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
class OneTypePerDay
|
|
|
|
{
|
|
|
|
};
|
|
|
|
|
|
|
|
class Machine;
|
|
|
|
class Session;
|
2011-12-18 13:20:01 +00:00
|
|
|
|
|
|
|
/*! \class Day
|
2022-02-27 16:01:46 +00:00
|
|
|
\brief Contains a list of all Sessions for single date, for a single device
|
2011-12-18 13:20:01 +00:00
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
class Day
|
|
|
|
{
|
2014-04-17 05:58:57 +00:00
|
|
|
public:
|
2014-08-20 17:17:13 +00:00
|
|
|
Day();
|
2011-06-26 08:30:44 +00:00
|
|
|
~Day();
|
2011-12-18 13:20:01 +00:00
|
|
|
|
2022-02-27 16:01:46 +00:00
|
|
|
//! \brief Add a new device to this day record
|
2014-08-20 17:17:13 +00:00
|
|
|
bool addMachine(Machine *m);
|
|
|
|
|
2022-02-27 16:01:46 +00:00
|
|
|
//! \brief Returns a device record if present of specified device type
|
2014-08-20 17:17:13 +00:00
|
|
|
Machine *machine(MachineType type);
|
|
|
|
|
2022-02-27 16:01:46 +00:00
|
|
|
//! \brief Returns a list of sessions for the specified device type
|
2014-08-21 05:46:14 +00:00
|
|
|
QList<Session *> getSessions(MachineType type, bool ignore_enabled = false);
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2014-08-20 17:17:13 +00:00
|
|
|
//! \brief Add Session to this Day object (called during Load)
|
|
|
|
void addSession(Session *s);
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2014-09-01 04:49:05 +00:00
|
|
|
EventDataType rangeCount(ChannelID code, qint64 st, qint64 et);
|
|
|
|
EventDataType rangeSum(ChannelID code, qint64 st, qint64 et);
|
|
|
|
EventDataType rangeAvg(ChannelID code, qint64 st, qint64 et);
|
|
|
|
EventDataType rangeWavg(ChannelID code, qint64 st, qint64 et);
|
|
|
|
EventDataType rangePercentile(ChannelID code, float p, qint64 st, qint64 et);
|
|
|
|
|
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);
|
|
|
|
|
2022-02-27 16:01:46 +00:00
|
|
|
//! \brief Returns true if Day has specific device type
|
2014-09-04 02:17:59 +00:00
|
|
|
inline bool hasMachine(MachineType mt) const { return machines.contains(mt); }
|
|
|
|
|
2022-02-27 16:01:46 +00:00
|
|
|
//! \brief Returns true if Day has specific device record
|
2018-04-28 05:33:26 +00:00
|
|
|
bool hasMachine(Machine * mach);
|
|
|
|
|
2022-02-27 16:01:46 +00:00
|
|
|
//! \brief Returns true if any sessions have records matching specific device type
|
2014-09-17 06:59:58 +00:00
|
|
|
bool searchMachine(MachineType mt);
|
|
|
|
|
2022-02-27 16:01:46 +00:00
|
|
|
//! \brief Removes any lingering references to a specific device record and emits a warning if there were any
|
2019-08-15 19:49:40 +00:00
|
|
|
void removeMachine(Machine * mach);
|
|
|
|
|
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
|
|
|
|
2022-02-27 16:01:46 +00:00
|
|
|
//! \brief Returns the first session time of this device type for this day
|
2014-08-20 17:17:13 +00:00
|
|
|
qint64 first(MachineType type);
|
|
|
|
|
2022-02-27 16:01:46 +00:00
|
|
|
//! \brief Returns the last session time of this device type for this day
|
2014-08-20 17:17:13 +00:00
|
|
|
qint64 last(MachineType type);
|
|
|
|
|
|
|
|
|
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
|
|
|
|
2022-02-27 16:01:46 +00:00
|
|
|
//! \brief Returns the total time in milliseconds for this day for given device type
|
2014-08-20 17:17:13 +00:00
|
|
|
qint64 total_time(MachineType type);
|
|
|
|
|
2022-02-27 16:01:46 +00:00
|
|
|
//! \brief Returns true if this day has enabled sessions for supplied device type
|
2014-08-20 17:17:13 +00:00
|
|
|
bool hasEnabledSessions(MachineType);
|
|
|
|
|
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-09-11 14:23:08 +00:00
|
|
|
EventDataType hours() {
|
|
|
|
if (!d_invalidate) return d_hours;
|
|
|
|
d_invalidate = false;
|
|
|
|
return d_hours = double(total_time()) / 3600000.0;
|
|
|
|
}
|
|
|
|
EventDataType hours(MachineType type) {
|
2018-05-05 21:58:11 +00:00
|
|
|
auto it = d_machhours.find(type);
|
2014-09-11 14:23:08 +00:00
|
|
|
if (it == d_machhours.end()) {
|
|
|
|
return d_machhours[type] = double(total_time(type)) / 3600000.0;
|
|
|
|
}
|
|
|
|
return it.value();
|
|
|
|
}
|
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
|
2018-04-28 05:33:26 +00:00
|
|
|
bool summaryOnly(Machine * mach = nullptr);
|
2014-05-19 03:46:02 +00:00
|
|
|
|
2018-05-06 16:59:50 +00:00
|
|
|
//! \brief Check if day has missing Summary/Settings records
|
|
|
|
bool noSettings(Machine * mach = nullptr);
|
|
|
|
|
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);
|
|
|
|
|
2020-11-05 04:12:05 +00:00
|
|
|
Session *find(SessionID sessid, MachineType mt);
|
|
|
|
|
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
|
|
|
|
|
|
|
//! \brief Loads all Events files for this Days Sessions
|
2011-06-26 08:30:44 +00:00
|
|
|
void OpenEvents();
|
2014-09-11 14:23:08 +00:00
|
|
|
void OpenSummary();
|
|
|
|
|
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();
|
|
|
|
|
2019-09-16 19:05:47 +00:00
|
|
|
//! \brief Get the ChannelID to be used for reporting pressure
|
|
|
|
ChannelID getPressureChannelID();
|
|
|
|
|
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
|
|
|
|
2022-02-27 16:01:46 +00:00
|
|
|
//! \brief Returns a list of device specific channels of supplied types, according to channel orders
|
2014-08-20 18:36:44 +00:00
|
|
|
QList<ChannelID> getSortedMachineChannels(MachineType type, quint32 chantype);
|
|
|
|
|
2014-08-03 13:00:13 +00:00
|
|
|
// Some ugly CPAP specific stuff
|
2019-09-02 05:14:36 +00:00
|
|
|
int getCPAPMode();
|
|
|
|
QString getCPAPModeStr();
|
2014-08-03 13:00:13 +00:00
|
|
|
QString getPressureRelief();
|
2014-07-25 07:53:48 +00:00
|
|
|
QString getPressureSettings();
|
2020-08-30 20:43:00 +00:00
|
|
|
QString validPressure(float pressure);
|
2014-08-03 13:00:13 +00:00
|
|
|
|
2014-08-11 18:29:44 +00:00
|
|
|
// Some more very much CPAP only related stuff
|
|
|
|
|
|
|
|
//! \brief Calculate AHI (Apnea Hypopnea Index)
|
|
|
|
EventDataType calcAHI() {
|
2021-07-25 04:12:15 +00:00
|
|
|
EventDataType c = count(AllAhiChannels);
|
2014-09-11 14:23:08 +00:00
|
|
|
EventDataType minutes = hours(MT_CPAP) * 60.0;
|
2014-08-11 18:29:44 +00:00
|
|
|
return (c * 60.0) / minutes;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! \brief Calculate RDI (Respiratory Disturbance Index)
|
|
|
|
EventDataType calcRDI() {
|
2021-07-25 04:12:15 +00:00
|
|
|
EventDataType c = count(AllAhiChannels) + count(CPAP_RERA);
|
2014-09-11 14:23:08 +00:00
|
|
|
EventDataType minutes = hours(MT_CPAP) * 60.0;
|
2014-08-11 18:29:44 +00:00
|
|
|
return (c * 60.0) / minutes;
|
|
|
|
}
|
|
|
|
|
|
|
|
//! \brief Percent of night for specified channel
|
|
|
|
EventDataType calcPON(ChannelID code) {
|
|
|
|
EventDataType c = sum(code);
|
2014-09-11 14:23:08 +00:00
|
|
|
EventDataType minutes = hours(MT_CPAP) * 60.0;
|
2014-08-11 18:29:44 +00:00
|
|
|
|
|
|
|
return (100.0 / minutes) * (c / 60.0);
|
|
|
|
}
|
|
|
|
|
|
|
|
//! \brief Calculate index (count per hour) for specified channel
|
|
|
|
EventDataType calcIdx(ChannelID code) {
|
|
|
|
EventDataType c = count(code);
|
2014-09-11 14:23:08 +00:00
|
|
|
EventDataType minutes = hours(MT_CPAP) * 60.0;
|
2014-08-11 18:29:44 +00:00
|
|
|
|
|
|
|
return (c * 60.0) / minutes;
|
|
|
|
}
|
|
|
|
|
2019-03-10 16:03:19 +00:00
|
|
|
//! \brief SleepyyHead Events Index, AHI combined with OSCAR detected events.. :)
|
2014-08-11 18:29:44 +00:00
|
|
|
EventDataType calcSHEI() {
|
2021-07-25 04:12:15 +00:00
|
|
|
EventDataType c = count(AllAhiChannels) + count(CPAP_UserFlag1) + count(CPAP_UserFlag2);
|
2014-09-11 14:23:08 +00:00
|
|
|
EventDataType minutes = hours(MT_CPAP) * 60.0;
|
2014-08-11 18:29:44 +00:00
|
|
|
return (c * 60.0) / minutes;
|
|
|
|
}
|
|
|
|
//! \brief Total duration of all Apnea/Hypopnea events in seconds,
|
|
|
|
EventDataType calcTTIA() {
|
2021-07-25 04:12:15 +00:00
|
|
|
EventDataType c = sum(AllAhiChannels);
|
2014-08-11 18:29:44 +00:00
|
|
|
return c;
|
|
|
|
}
|
2014-08-17 15:36:53 +00:00
|
|
|
bool hasEvents();
|
2014-08-11 18:29:44 +00:00
|
|
|
|
|
|
|
// According to preferences..
|
|
|
|
EventDataType calcMiddle(ChannelID code);
|
|
|
|
EventDataType calcMax(ChannelID code);
|
|
|
|
EventDataType calcPercentile(ChannelID code);
|
2014-08-17 12:56:05 +00:00
|
|
|
static QString calcMiddleLabel(ChannelID code);
|
|
|
|
static QString calcMaxLabel(ChannelID code);
|
|
|
|
static QString calcPercentileLabel(ChannelID code);
|
|
|
|
|
|
|
|
EventDataType calc(ChannelID code, ChannelCalcType type);
|
2014-08-11 18:29:44 +00:00
|
|
|
|
2014-08-20 17:17:13 +00:00
|
|
|
Session * firstSession(MachineType type);
|
|
|
|
|
|
|
|
//! \brief A QList containing all Sessions objects for this day
|
2014-07-25 07:53:48 +00:00
|
|
|
QList<Session *> sessions;
|
2013-10-22 11:42:57 +00:00
|
|
|
|
2014-08-20 17:17:13 +00:00
|
|
|
QHash<MachineType, Machine *> machines;
|
|
|
|
|
2014-08-28 08:01:25 +00:00
|
|
|
void incUseCounter() { d_useCounter++; }
|
|
|
|
void decUseCounter() { d_useCounter--; if (d_useCounter<0) d_useCounter = 0; }
|
|
|
|
int useCounter() { return d_useCounter; }
|
|
|
|
|
2014-09-11 14:23:08 +00:00
|
|
|
|
|
|
|
void invalidate() {
|
|
|
|
d_invalidate = true;
|
|
|
|
d_machhours.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
void updateCPAPCache();
|
2014-09-17 02:34:50 +00:00
|
|
|
|
|
|
|
inline QDate date() const { return d_date; }
|
|
|
|
void setDate(QDate date) { d_date = date; }
|
2014-04-17 05:58:57 +00:00
|
|
|
protected:
|
2014-09-04 02:17:59 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
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;
|
2014-08-28 08:01:25 +00:00
|
|
|
int d_useCounter;
|
2014-09-11 14:23:08 +00:00
|
|
|
bool d_summaries_open;
|
|
|
|
bool d_events_open;
|
|
|
|
float d_hours;
|
|
|
|
QHash<MachineType, EventDataType> d_machhours;
|
|
|
|
QHash<ChannelID, long> d_count;
|
|
|
|
QHash<ChannelID, double> d_sum;
|
|
|
|
bool d_invalidate;
|
2014-09-17 02:34:50 +00:00
|
|
|
QDate d_date;
|
2011-06-26 08:30:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // DAY_H
|