2014-08-17 12:56:05 +00:00
|
|
|
/* Statistics Report Generator Header
|
2014-04-09 21:01:57 +00:00
|
|
|
*
|
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. */
|
2013-09-14 23:32:14 +00:00
|
|
|
|
|
|
|
#ifndef SUMMARY_H
|
|
|
|
#define SUMMARY_H
|
|
|
|
|
|
|
|
#include <QObject>
|
2014-05-06 09:11:31 +00:00
|
|
|
#include <QHash>
|
|
|
|
#include <QList>
|
|
|
|
#include "SleepLib/schema.h"
|
2014-09-11 14:23:08 +00:00
|
|
|
#include "SleepLib/machine.h"
|
2014-05-06 09:11:31 +00:00
|
|
|
|
|
|
|
enum StatCalcType {
|
2014-05-15 21:48:53 +00:00
|
|
|
SC_UNDEFINED=0, SC_COLUMNHEADERS, SC_HEADING, SC_SUBHEADING, SC_MEDIAN, SC_AVG, SC_WAVG, SC_90P, SC_MIN, SC_MAX, SC_CPH, SC_SPH, SC_AHI, SC_HOURS, SC_COMPLIANCE, SC_DAYS, SC_ABOVE, SC_BELOW
|
2014-05-06 09:11:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct StatisticsRow {
|
|
|
|
StatisticsRow() { calc=SC_UNDEFINED; }
|
|
|
|
StatisticsRow(QString src, QString calc, QString type) {
|
|
|
|
this->src = src;
|
|
|
|
this->calc = lookupCalc(calc);
|
|
|
|
this->type = lookupType(type);
|
|
|
|
}
|
|
|
|
StatisticsRow(QString src, StatCalcType calc, MachineType type) {
|
|
|
|
this->src = src;
|
|
|
|
this->calc = calc;
|
|
|
|
this->type = type;
|
|
|
|
}
|
|
|
|
StatisticsRow(const StatisticsRow ©) {
|
|
|
|
src=copy.src;
|
|
|
|
calc=copy.calc;
|
|
|
|
type=copy.type;
|
|
|
|
}
|
|
|
|
QString src;
|
|
|
|
StatCalcType calc;
|
|
|
|
MachineType type;
|
|
|
|
|
|
|
|
StatCalcType lookupCalc(QString calc)
|
|
|
|
{
|
|
|
|
if (calc.compare("avg",Qt::CaseInsensitive)==0) {
|
|
|
|
return SC_AVG;
|
|
|
|
} else if (calc.compare("w-avg",Qt::CaseInsensitive)==0) {
|
|
|
|
return SC_WAVG;
|
|
|
|
} else if (calc.compare("median",Qt::CaseInsensitive)==0) {
|
|
|
|
return SC_MEDIAN;
|
|
|
|
} else if (calc.compare("90%",Qt::CaseInsensitive)==0) {
|
|
|
|
return SC_90P;
|
|
|
|
} else if (calc.compare("min", Qt::CaseInsensitive)==0) {
|
|
|
|
return SC_MIN;
|
|
|
|
} else if (calc.compare("max", Qt::CaseInsensitive)==0) {
|
|
|
|
return SC_MAX;
|
|
|
|
} else if (calc.compare("cph", Qt::CaseInsensitive)==0) {
|
|
|
|
return SC_CPH;
|
|
|
|
} else if (calc.compare("sph", Qt::CaseInsensitive)==0) {
|
|
|
|
return SC_SPH;
|
|
|
|
} else if (calc.compare("ahi", Qt::CaseInsensitive)==0) {
|
|
|
|
return SC_AHI;
|
|
|
|
} else if (calc.compare("hours", Qt::CaseInsensitive)==0) {
|
|
|
|
return SC_HOURS;
|
|
|
|
} else if (calc.compare("compliance", Qt::CaseInsensitive)==0) {
|
|
|
|
return SC_COMPLIANCE;
|
|
|
|
} else if (calc.compare("days", Qt::CaseInsensitive)==0) {
|
|
|
|
return SC_DAYS;
|
|
|
|
} else if (calc.compare("heading", Qt::CaseInsensitive)==0) {
|
|
|
|
return SC_HEADING;
|
|
|
|
} else if (calc.compare("subheading", Qt::CaseInsensitive)==0) {
|
|
|
|
return SC_SUBHEADING;
|
|
|
|
}
|
|
|
|
return SC_UNDEFINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
MachineType lookupType(QString type)
|
|
|
|
{
|
|
|
|
if (type.compare("cpap", Qt::CaseInsensitive)==0) {
|
|
|
|
return MT_CPAP;
|
|
|
|
} else if (type.compare("oximeter", Qt::CaseInsensitive)==0) {
|
|
|
|
return MT_OXIMETER;
|
|
|
|
} else if (type.compare("sleepstage", Qt::CaseInsensitive)==0) {
|
|
|
|
return MT_SLEEPSTAGE;
|
|
|
|
}
|
|
|
|
return MT_UNKNOWN;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ChannelID channel() {
|
|
|
|
return schema::channel[src].id();
|
|
|
|
}
|
|
|
|
|
|
|
|
QString value(QDate start, QDate end);
|
|
|
|
};
|
2013-09-14 23:32:14 +00:00
|
|
|
|
2014-09-11 14:23:08 +00:00
|
|
|
class RXItem {
|
|
|
|
public:
|
|
|
|
RXItem() {
|
|
|
|
machine = nullptr;
|
|
|
|
ahi = rdi = 0;
|
|
|
|
highlight = 0;
|
|
|
|
hours = 0;
|
|
|
|
}
|
|
|
|
RXItem(const RXItem & copy) {
|
|
|
|
start = copy.start;
|
|
|
|
end = copy.end;
|
|
|
|
days = copy.days;
|
|
|
|
s_count = copy.s_count;
|
|
|
|
s_sum = copy.s_sum;
|
|
|
|
ahi = copy.ahi;
|
|
|
|
rdi = copy.rdi;
|
|
|
|
hours = copy.hours;
|
|
|
|
machine = copy.machine;
|
|
|
|
relief = copy.relief;
|
|
|
|
mode = copy.mode;
|
|
|
|
pressure = copy.pressure;
|
|
|
|
dates = copy.dates;
|
|
|
|
highlight = copy.highlight;
|
|
|
|
}
|
|
|
|
inline quint64 count(ChannelID id) const {
|
|
|
|
QHash<ChannelID, quint64>::const_iterator it = s_count.find(id);
|
|
|
|
if (it == s_count.end()) return 0;
|
|
|
|
return it.value();
|
|
|
|
}
|
|
|
|
inline double sum(ChannelID id) const{
|
|
|
|
QHash<ChannelID, double>::const_iterator it = s_sum.find(id);
|
|
|
|
if (it == s_sum.end()) return 0;
|
|
|
|
return it.value();
|
|
|
|
}
|
|
|
|
QDate start;
|
|
|
|
QDate end;
|
|
|
|
int days;
|
|
|
|
QHash<ChannelID, quint64> s_count;
|
|
|
|
QHash<ChannelID, double> s_sum;
|
|
|
|
quint64 ahi;
|
|
|
|
quint64 rdi;
|
|
|
|
double hours;
|
|
|
|
Machine * machine;
|
|
|
|
QString relief;
|
|
|
|
QString mode;
|
|
|
|
QString pressure;
|
|
|
|
QMap<QDate, Day *> dates;
|
|
|
|
short highlight;
|
|
|
|
};
|
|
|
|
|
2014-09-30 08:40:12 +00:00
|
|
|
|
|
|
|
|
2014-04-25 05:28:10 +00:00
|
|
|
class Statistics : public QObject
|
2013-09-14 23:32:14 +00:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
2014-04-17 05:52:25 +00:00
|
|
|
public:
|
2014-04-25 05:28:10 +00:00
|
|
|
explicit Statistics(QObject *parent = 0);
|
2014-04-17 05:52:25 +00:00
|
|
|
|
2014-09-11 14:23:08 +00:00
|
|
|
void loadRXChanges();
|
|
|
|
void saveRXChanges();
|
|
|
|
void updateRXChanges();
|
|
|
|
|
2019-05-22 20:49:28 +00:00
|
|
|
QString getUserInfo();
|
2019-05-24 19:43:49 +00:00
|
|
|
QString getRDIorAHIText();
|
2014-05-06 09:11:31 +00:00
|
|
|
QString GenerateHTML();
|
2014-09-11 14:23:08 +00:00
|
|
|
QString GenerateMachineList();
|
|
|
|
QString GenerateRXChanges();
|
|
|
|
|
2014-09-30 08:40:12 +00:00
|
|
|
void UpdateRecordsBox();
|
|
|
|
|
2014-05-06 09:11:31 +00:00
|
|
|
|
|
|
|
protected:
|
2019-05-24 19:43:49 +00:00
|
|
|
QString htmlNoData();
|
2018-06-14 07:25:54 +00:00
|
|
|
QString htmlHeader(bool showheader);
|
|
|
|
QString htmlFooter(bool showinfo=true);
|
|
|
|
|
2014-05-06 09:11:31 +00:00
|
|
|
// Using a map to maintain order
|
|
|
|
QList<StatisticsRow> rows;
|
|
|
|
QMap<StatCalcType, QString> calcnames;
|
|
|
|
QMap<MachineType, QString> machinenames;
|
2013-09-14 23:32:14 +00:00
|
|
|
|
2014-09-11 14:23:08 +00:00
|
|
|
QMap<QDate, RXItem> rxitems;
|
|
|
|
|
2014-09-30 08:40:12 +00:00
|
|
|
QList<QDate> record_best_ahi;
|
|
|
|
QList<QDate> record_worst_ahi;
|
|
|
|
|
2014-04-17 05:52:25 +00:00
|
|
|
signals:
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
2013-09-14 23:32:14 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SUMMARY_H
|