2014-08-17 12:56:05 +00:00
|
|
|
/* Minutes At Pressure Graph Header
|
2014-08-11 18:29:44 +00:00
|
|
|
*
|
2018-03-28 07:10:52 +00:00
|
|
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
2014-08-11 18:29:44 +00:00
|
|
|
*
|
|
|
|
* 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 MINUTESATPRESSURE_H
|
|
|
|
#define MINUTESATPRESSURE_H
|
|
|
|
|
|
|
|
#include "Graphs/layer.h"
|
|
|
|
#include "SleepLib/day.h"
|
|
|
|
|
|
|
|
class MinutesAtPressure;
|
2016-03-07 09:10:58 +00:00
|
|
|
struct PressureInfo
|
|
|
|
{
|
|
|
|
PressureInfo()
|
|
|
|
{
|
|
|
|
code = 0;
|
|
|
|
minx = maxx = 0;
|
|
|
|
peaktime = peakevents = 0;
|
|
|
|
min_pressure = max_pressure = 0;
|
|
|
|
}
|
|
|
|
PressureInfo(PressureInfo ©) {
|
|
|
|
code = copy.code;
|
|
|
|
minx = copy.minx;
|
|
|
|
maxx = copy.maxx;
|
|
|
|
peaktime = copy.peaktime;
|
|
|
|
peakevents = copy.peakevents;
|
|
|
|
min_pressure = copy.min_pressure;
|
|
|
|
max_pressure = copy.max_pressure;
|
|
|
|
times = copy.times;
|
|
|
|
events = copy.events;
|
|
|
|
chans = copy.chans;
|
|
|
|
}
|
|
|
|
|
|
|
|
PressureInfo(ChannelID code, qint64 minx, qint64 maxx) : code(code), minx(minx), maxx(maxx)
|
|
|
|
{
|
|
|
|
times.resize(300);
|
|
|
|
}
|
|
|
|
void AddChannel(ChannelID c)
|
|
|
|
{
|
|
|
|
chans.append(c);
|
|
|
|
events[c].resize(300);
|
|
|
|
}
|
|
|
|
void AddChannels(QList<ChannelID> & chans)
|
|
|
|
{
|
|
|
|
for (int i=0; i<chans.size(); ++i) {
|
|
|
|
AddChannel(chans.at(i));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
void finishCalcs();
|
|
|
|
|
|
|
|
ChannelID code;
|
|
|
|
qint64 minx, maxx;
|
|
|
|
QVector<int> times;
|
|
|
|
int peaktime, peakevents;
|
|
|
|
int min_pressure, max_pressure;
|
|
|
|
|
|
|
|
QHash<ChannelID, QVector<int> > events;
|
|
|
|
QList<ChannelID> chans;
|
|
|
|
};
|
|
|
|
|
2014-08-11 18:29:44 +00:00
|
|
|
class RecalcMAP:public QRunnable
|
|
|
|
{
|
|
|
|
friend class MinutesAtPressure;
|
|
|
|
public:
|
|
|
|
explicit RecalcMAP(MinutesAtPressure * map) :map(map), m_quit(false), m_done(false) {}
|
|
|
|
virtual ~RecalcMAP();
|
|
|
|
virtual void run();
|
2016-03-07 09:10:58 +00:00
|
|
|
|
2014-08-11 18:29:44 +00:00
|
|
|
void quit();
|
|
|
|
protected:
|
2016-03-07 09:10:58 +00:00
|
|
|
void updateTimes(PressureInfo & info, Session * sess);
|
2014-08-11 18:29:44 +00:00
|
|
|
MinutesAtPressure * map;
|
|
|
|
volatile bool m_quit;
|
|
|
|
volatile bool m_done;
|
|
|
|
};
|
|
|
|
|
|
|
|
class MinutesAtPressure:public Layer
|
|
|
|
{
|
|
|
|
friend class RecalcMAP;
|
|
|
|
public:
|
|
|
|
MinutesAtPressure();
|
|
|
|
virtual ~MinutesAtPressure();
|
|
|
|
|
|
|
|
virtual void recalculate(gGraph * graph);
|
|
|
|
|
|
|
|
virtual void SetDay(Day *d);
|
|
|
|
|
|
|
|
virtual bool isEmpty();
|
2014-08-17 12:56:05 +00:00
|
|
|
virtual int minimumHeight();
|
2014-08-11 18:29:44 +00:00
|
|
|
|
|
|
|
//! Draw filled rectangles behind Event Flag's, and an outlines around them all, Calls the individual paint for each gFlagLine
|
|
|
|
virtual void paint(QPainter &painter, gGraph &w, const QRegion ®ion);
|
|
|
|
|
|
|
|
bool mouseMoveEvent(QMouseEvent *event, gGraph *graph);
|
|
|
|
bool mousePressEvent(QMouseEvent *event, gGraph *graph);
|
|
|
|
bool mouseReleaseEvent(QMouseEvent *event, gGraph *graph);
|
|
|
|
|
|
|
|
virtual void recalcFinished();
|
2014-08-28 08:01:25 +00:00
|
|
|
virtual Layer * Clone() {
|
|
|
|
MinutesAtPressure * map = new MinutesAtPressure();
|
|
|
|
Layer::CloneInto(map);
|
|
|
|
CloneInto(map);
|
|
|
|
return map;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CloneInto(MinutesAtPressure * layer) {
|
|
|
|
mutex.lock();
|
|
|
|
timelock.lock();
|
|
|
|
layer->m_empty = m_empty;
|
|
|
|
layer->m_minimum_height = m_minimum_height;
|
|
|
|
layer->m_lastminx = m_lastminx;
|
|
|
|
layer->m_lastmaxx = m_lastmaxx;
|
|
|
|
layer->times = times;
|
|
|
|
layer->chans = chans;
|
|
|
|
layer->events = events;
|
|
|
|
layer->maxtime = maxtime;
|
|
|
|
layer->maxevents = maxevents;
|
|
|
|
layer->m_presChannel = m_presChannel;
|
|
|
|
layer->m_minpressure = m_minpressure;
|
|
|
|
layer->m_maxpressure = m_maxpressure;
|
|
|
|
layer->max_mins = max_mins;
|
|
|
|
|
|
|
|
layer->ahis = ahis;
|
|
|
|
|
|
|
|
mutex.unlock();
|
|
|
|
timelock.unlock();
|
|
|
|
}
|
2014-08-11 18:29:44 +00:00
|
|
|
protected:
|
|
|
|
QMutex timelock;
|
|
|
|
QMutex mutex;
|
|
|
|
|
|
|
|
bool m_empty;
|
2014-08-17 12:56:05 +00:00
|
|
|
int m_minimum_height;
|
2014-08-11 18:29:44 +00:00
|
|
|
|
|
|
|
qint64 m_lastminx;
|
|
|
|
qint64 m_lastmaxx;
|
|
|
|
gGraph * m_graph;
|
|
|
|
RecalcMAP * m_remap;
|
|
|
|
QMap<EventStoreType, int> times;
|
2016-03-07 09:10:58 +00:00
|
|
|
QMap<EventStoreType, int> epap_times;
|
2014-08-11 18:29:44 +00:00
|
|
|
QList<ChannelID> chans;
|
|
|
|
QHash<ChannelID, QMap<EventStoreType, EventDataType> > events;
|
|
|
|
int maxtime;
|
2014-08-19 10:26:44 +00:00
|
|
|
int maxevents;
|
2014-08-12 08:04:53 +00:00
|
|
|
ChannelID m_presChannel;
|
2014-08-12 05:59:41 +00:00
|
|
|
EventStoreType m_minpressure;
|
|
|
|
EventStoreType m_maxpressure;
|
2014-08-11 18:29:44 +00:00
|
|
|
|
2016-03-07 09:10:58 +00:00
|
|
|
PressureInfo epap, ipap;
|
|
|
|
|
2014-08-19 10:26:44 +00:00
|
|
|
EventDataType max_mins;
|
|
|
|
|
2014-08-11 18:29:44 +00:00
|
|
|
QMap<EventStoreType, EventDataType> ahis;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MINUTESATPRESSURE_H
|