2014-08-17 12:56:05 +00:00
|
|
|
/* Schema Header (Parse Channel XML data)
|
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. */
|
2011-11-26 04:00:31 +00:00
|
|
|
|
2011-09-17 12:39:00 +00:00
|
|
|
#ifndef SCHEMA_H
|
|
|
|
#define SCHEMA_H
|
|
|
|
|
|
|
|
#include <QColor>
|
|
|
|
#include <QHash>
|
|
|
|
#include <QVariant>
|
|
|
|
#include <QString>
|
2011-10-05 03:05:35 +00:00
|
|
|
#include "machine_common.h"
|
|
|
|
|
|
|
|
namespace GraphFlags {
|
2014-04-17 05:58:57 +00:00
|
|
|
const quint32 Shadow = 1;
|
|
|
|
const quint32 Foobar = 2;
|
|
|
|
const quint32 XTicker = 4;
|
|
|
|
const quint32 YTicker = 8;
|
|
|
|
const quint32 XGrid = 16;
|
|
|
|
const quint32 YGrid = 32;
|
2011-10-05 03:05:35 +00:00
|
|
|
}
|
2011-09-17 12:39:00 +00:00
|
|
|
|
2014-08-17 12:56:05 +00:00
|
|
|
enum ChannelCalcType {
|
|
|
|
Calc_Zero, Calc_Min, Calc_Middle, Calc_Perc, Calc_Max, Calc_UpperThresh, Calc_LowerThresh
|
|
|
|
};
|
|
|
|
|
|
|
|
struct ChannelCalc {
|
|
|
|
public:
|
|
|
|
ChannelCalc() {
|
|
|
|
code = 0;
|
|
|
|
enabled = false;
|
|
|
|
color = Qt::black;
|
|
|
|
type = Calc_Zero;
|
|
|
|
}
|
|
|
|
ChannelCalc(const ChannelCalc & copy) {
|
|
|
|
code = copy.code;
|
|
|
|
color = copy.color;
|
|
|
|
enabled = copy.enabled;
|
|
|
|
type = copy.type;
|
|
|
|
}
|
|
|
|
ChannelCalc(ChannelID code, ChannelCalcType type, QColor color, bool enabled):
|
|
|
|
code(code), type(type), color(color), enabled(enabled) {}
|
|
|
|
|
|
|
|
QString label();
|
|
|
|
|
|
|
|
ChannelID code;
|
|
|
|
ChannelCalcType type;
|
|
|
|
QColor color;
|
|
|
|
bool enabled;
|
|
|
|
};
|
|
|
|
|
2011-09-17 12:39:00 +00:00
|
|
|
namespace schema {
|
2014-08-06 14:06:44 +00:00
|
|
|
void resetChannels();
|
2014-09-22 05:44:55 +00:00
|
|
|
void setOrders();
|
|
|
|
|
2011-09-17 12:39:00 +00:00
|
|
|
|
|
|
|
enum Function {
|
2014-04-17 05:58:57 +00:00
|
|
|
NONE = 0, AVG, WAVG, MIN, MAX, SUM, CNT, P90, CPH, SPH, HOURS, SET
|
2011-09-17 12:39:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum ChanType {
|
2014-08-07 08:52:57 +00:00
|
|
|
DATA = 1,
|
|
|
|
SETTING = 2,
|
|
|
|
FLAG = 4,
|
|
|
|
MINOR_FLAG = 8,
|
|
|
|
SPAN = 16,
|
|
|
|
WAVEFORM = 32,
|
2014-08-07 20:27:23 +00:00
|
|
|
UNKNOWN = 64,
|
2014-08-07 08:52:57 +00:00
|
|
|
|
|
|
|
ALL = 0xFFFF
|
2011-09-17 12:39:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum DataType {
|
2014-08-03 13:00:13 +00:00
|
|
|
DEFAULT = 0, INTEGER, BOOL, DOUBLE, STRING, RICHTEXT, DATE, TIME, DATETIME, LOOKUP
|
2011-09-17 12:39:00 +00:00
|
|
|
};
|
|
|
|
enum ScopeType {
|
2014-04-17 05:58:57 +00:00
|
|
|
GLOBAL = 0, MACHINE, DAY, SESSION
|
2011-09-17 12:39:00 +00:00
|
|
|
};
|
|
|
|
class Channel;
|
|
|
|
extern Channel EmptyChannel;
|
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
/*! \class Channel
|
|
|
|
\brief Contains information about a SleepLib data Channel (aka signals)
|
|
|
|
*/
|
2011-09-17 12:39:00 +00:00
|
|
|
class Channel
|
|
|
|
{
|
2014-04-17 05:58:57 +00:00
|
|
|
public:
|
2014-09-11 14:23:08 +00:00
|
|
|
Channel() { m_id = 0; m_upperThreshold = 0; m_lowerThreshold = 0; m_enabled = true; m_order = 255; m_machtype = MT_UNKNOWN; m_showInOverview = false; }
|
2014-08-23 06:21:50 +00:00
|
|
|
Channel(ChannelID id, ChanType type, MachineType machtype, ScopeType scope, QString code, QString fullname,
|
2014-04-17 05:58:57 +00:00
|
|
|
QString description, QString label, QString unit, DataType datatype = DEFAULT, QColor = Qt::black,
|
|
|
|
int link = 0);
|
|
|
|
void addColor(Function f, QColor color) { m_colors[f] = color; }
|
|
|
|
void addOption(int i, QString option) { m_options[i] = option; }
|
|
|
|
|
2014-08-05 11:17:03 +00:00
|
|
|
inline ChannelID id() const { return m_id; }
|
|
|
|
inline ChanType type() const { return m_type; }
|
|
|
|
inline DataType datatype() const { return m_datatype; }
|
2014-08-23 06:21:50 +00:00
|
|
|
inline MachineType machtype() const { return m_machtype; }
|
2014-04-17 05:58:57 +00:00
|
|
|
const QString &code() { return m_code; }
|
|
|
|
const QString &fullname() { return m_fullname; }
|
|
|
|
const QString &description() { return m_description; }
|
|
|
|
const QString &label() { return m_label; }
|
|
|
|
const QString &units() { return m_unit; }
|
2014-08-06 19:49:05 +00:00
|
|
|
inline short order() const { return m_order; }
|
2014-05-15 21:48:53 +00:00
|
|
|
|
2014-09-11 14:23:08 +00:00
|
|
|
bool showInOverview() { return m_showInOverview; }
|
|
|
|
|
2014-08-05 11:17:03 +00:00
|
|
|
inline EventDataType upperThreshold() const { return m_upperThreshold; }
|
|
|
|
inline EventDataType lowerThreshold() const { return m_lowerThreshold; }
|
|
|
|
inline QColor upperThresholdColor() const { return m_upperThresholdColor; }
|
|
|
|
inline QColor lowerThresholdColor() const { return m_lowerThresholdColor; }
|
2014-05-15 21:48:53 +00:00
|
|
|
|
2014-08-05 11:17:03 +00:00
|
|
|
inline ChannelID linkid() const { return m_link; }
|
2014-04-17 05:58:57 +00:00
|
|
|
|
2014-05-15 21:48:53 +00:00
|
|
|
|
2014-08-06 14:06:44 +00:00
|
|
|
void setFullname(QString fullname) { m_fullname = fullname; }
|
2014-04-17 05:58:57 +00:00
|
|
|
void setLabel(QString label) { m_label = label; }
|
2014-08-25 02:55:01 +00:00
|
|
|
void setType(ChanType type) { m_type = type; }
|
2014-04-17 05:58:57 +00:00
|
|
|
void setUnit(QString unit) { m_unit = unit; }
|
|
|
|
void setDescription(QString desc) { m_description = desc; }
|
2014-05-15 21:48:53 +00:00
|
|
|
void setUpperThreshold(EventDataType value) { m_upperThreshold = value; }
|
|
|
|
void setUpperThresholdColor(QColor color) { m_upperThresholdColor = color; }
|
|
|
|
void setLowerThreshold(EventDataType value) { m_lowerThreshold = value; }
|
|
|
|
void setLowerThresholdColor(QColor color) { m_lowerThresholdColor = color; }
|
2014-08-06 19:49:05 +00:00
|
|
|
void setOrder(short order) { m_order = order; }
|
2014-05-15 21:48:53 +00:00
|
|
|
|
2014-09-11 14:23:08 +00:00
|
|
|
void setShowInOverview(bool b) { m_showInOverview = b; }
|
|
|
|
|
2011-12-14 04:54:17 +00:00
|
|
|
QString option(int i) {
|
2014-04-17 05:58:57 +00:00
|
|
|
if (m_options.contains(i)) {
|
2011-12-14 04:54:17 +00:00
|
|
|
return m_options[i];
|
2014-04-17 05:58:57 +00:00
|
|
|
}
|
|
|
|
|
2011-12-14 04:54:17 +00:00
|
|
|
return QString();
|
|
|
|
}
|
2014-08-05 11:17:03 +00:00
|
|
|
inline QColor defaultColor() const { return m_defaultcolor; }
|
|
|
|
inline void setDefaultColor(QColor color) { m_defaultcolor = color; }
|
2014-04-17 05:58:57 +00:00
|
|
|
QHash<int, QString> m_options;
|
|
|
|
QHash<Function, QColor> m_colors;
|
2011-09-17 12:39:00 +00:00
|
|
|
QList<Channel *> m_links; // better versions of this data type
|
|
|
|
bool isNull();
|
2014-08-05 11:17:03 +00:00
|
|
|
|
|
|
|
inline bool enabled() const { return m_enabled; }
|
|
|
|
void setEnabled(bool value) { m_enabled = value; }
|
2014-08-17 12:56:05 +00:00
|
|
|
|
|
|
|
QHash<ChannelCalcType, ChannelCalc> calc;
|
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
protected:
|
2014-10-02 17:46:08 +00:00
|
|
|
|
|
|
|
|
2011-09-17 12:39:00 +00:00
|
|
|
int m_id;
|
2014-08-23 06:21:50 +00:00
|
|
|
|
2011-09-17 12:39:00 +00:00
|
|
|
ChanType m_type;
|
2014-08-23 06:21:50 +00:00
|
|
|
MachineType m_machtype;
|
2011-09-17 12:39:00 +00:00
|
|
|
ScopeType m_scope;
|
2014-08-23 06:21:50 +00:00
|
|
|
|
2013-10-26 05:06:56 +00:00
|
|
|
QString m_code; // Untranslatable
|
|
|
|
|
|
|
|
QString m_fullname; // Translatable Name
|
2011-09-17 12:39:00 +00:00
|
|
|
QString m_description;
|
|
|
|
QString m_label;
|
|
|
|
QString m_unit;
|
2014-10-02 17:46:08 +00:00
|
|
|
|
|
|
|
QString default_fullname;
|
|
|
|
QString default_label;
|
|
|
|
QString default_description;
|
|
|
|
|
2014-08-23 09:54:51 +00:00
|
|
|
DataType m_datatype;
|
2011-09-17 12:39:00 +00:00
|
|
|
QColor m_defaultcolor;
|
|
|
|
|
2014-08-23 06:21:50 +00:00
|
|
|
|
2011-09-17 12:39:00 +00:00
|
|
|
int m_link;
|
2014-05-15 21:48:53 +00:00
|
|
|
|
|
|
|
EventDataType m_upperThreshold;
|
|
|
|
EventDataType m_lowerThreshold;
|
|
|
|
QColor m_upperThresholdColor;
|
|
|
|
QColor m_lowerThresholdColor;
|
2014-08-05 11:17:03 +00:00
|
|
|
|
2014-08-17 12:56:05 +00:00
|
|
|
|
2014-08-05 11:17:03 +00:00
|
|
|
bool m_enabled;
|
2014-08-06 19:49:05 +00:00
|
|
|
short m_order;
|
2014-09-11 14:23:08 +00:00
|
|
|
|
|
|
|
bool m_showInOverview;
|
2011-09-17 12:39:00 +00:00
|
|
|
};
|
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
/*! \class ChannelList
|
|
|
|
\brief A list containing a group of Channel objects, and XML storage and retrieval capability
|
|
|
|
*/
|
2011-09-17 12:39:00 +00:00
|
|
|
class ChannelList
|
|
|
|
{
|
2014-04-17 05:58:57 +00:00
|
|
|
public:
|
2011-09-17 12:39:00 +00:00
|
|
|
ChannelList();
|
|
|
|
virtual ~ChannelList();
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief Loads Channel list from XML file specified by filename
|
2011-09-17 12:39:00 +00:00
|
|
|
bool Load(QString filename);
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief Stores Channel list to XML file specified by filename
|
2014-08-17 12:56:05 +00:00
|
|
|
bool Save(QString filename = QString());
|
2011-12-19 05:35:05 +00:00
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
void add(QString group, Channel *chan);
|
2013-10-26 05:06:56 +00:00
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
//! \brief Looks up Channel in this List with the index idx, returns EmptyChannel if not found
|
2014-08-05 11:17:03 +00:00
|
|
|
Channel & operator[](ChannelID idx) {
|
2014-04-17 05:58:57 +00:00
|
|
|
if (channels.contains(idx)) {
|
2011-12-19 05:35:05 +00:00
|
|
|
return *channels[idx];
|
2014-04-17 05:58:57 +00:00
|
|
|
} else {
|
2011-09-17 12:39:00 +00:00
|
|
|
return EmptyChannel;
|
2014-04-17 05:58:57 +00:00
|
|
|
}
|
2011-09-17 12:39:00 +00:00
|
|
|
}
|
2011-12-19 05:35:05 +00:00
|
|
|
//! \brief Looks up Channel from this list by name, returns Empty Channel if not found.
|
2014-04-17 05:58:57 +00:00
|
|
|
Channel &operator[](QString name) {
|
|
|
|
if (names.contains(name)) {
|
2011-09-17 13:21:18 +00:00
|
|
|
return *names[name];
|
2014-04-17 05:58:57 +00:00
|
|
|
} else {
|
2011-09-17 12:39:00 +00:00
|
|
|
return EmptyChannel;
|
2014-04-17 05:58:57 +00:00
|
|
|
}
|
2011-09-17 12:39:00 +00:00
|
|
|
}
|
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
//! \brief Channel List indexed by integer ID
|
2014-04-17 05:58:57 +00:00
|
|
|
QHash<ChannelID, Channel *> channels;
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief Channel List index by name
|
2014-04-17 05:58:57 +00:00
|
|
|
QHash<QString, Channel *> names;
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief Channel List indexed by group
|
2014-04-17 05:58:57 +00:00
|
|
|
QHash<QString, QHash<QString, Channel *> > groups;
|
2011-09-17 12:39:00 +00:00
|
|
|
QString m_doctype;
|
|
|
|
};
|
|
|
|
extern ChannelList channel;
|
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
/*enum LayerType {
|
2011-10-05 03:05:35 +00:00
|
|
|
UnspecifiedLayer, Waveform, Flag, Overlay, Group
|
|
|
|
};
|
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
// ?????
|
2011-10-05 03:05:35 +00:00
|
|
|
class Layer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Layer(ChannelID code, QColor colour, QString label=QString());
|
|
|
|
virtual ~Layer();
|
|
|
|
Layer *addLayer(Layer *layer);// { m_layers.push_back(layer); return layer; }
|
|
|
|
void setMin(EventDataType min) { m_min=min; m_hasmin=true; }
|
|
|
|
void setMax(EventDataType max) { m_max=max; m_hasmax=true; }
|
2011-12-17 14:38:15 +00:00
|
|
|
EventDataType Min() { return m_min; }
|
|
|
|
EventDataType Max() { return m_max; }
|
2011-10-05 03:05:35 +00:00
|
|
|
bool visible() { return m_visible; }
|
|
|
|
void setVisible(bool b) { m_visible=b; }
|
|
|
|
protected:
|
|
|
|
LayerType m_type;
|
|
|
|
ChannelID m_code;
|
|
|
|
QColor m_colour;
|
|
|
|
QString m_label;
|
|
|
|
EventDataType m_min;
|
|
|
|
EventDataType m_max;
|
|
|
|
bool m_hasmin;
|
|
|
|
bool m_hasmax;
|
|
|
|
bool m_visible;
|
|
|
|
QVector<Layer *> m_layers;
|
|
|
|
};
|
|
|
|
|
|
|
|
class WaveformLayer: public Layer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
WaveformLayer(ChannelID code, QColor colour, float min=0, float max=0);
|
|
|
|
virtual ~WaveformLayer();
|
|
|
|
};
|
|
|
|
|
|
|
|
enum FlagVisual { Bar, Span, Dot };
|
|
|
|
class OverlayLayer: public Layer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
OverlayLayer(ChannelID code, QColor colour, FlagVisual visual=Bar);
|
|
|
|
virtual ~OverlayLayer();
|
|
|
|
protected:
|
|
|
|
FlagVisual m_visual;
|
|
|
|
};
|
|
|
|
class GroupLayer: public Layer // Effectively an empty Layer container
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GroupLayer();
|
|
|
|
virtual ~GroupLayer();
|
|
|
|
};
|
|
|
|
class FlagGroupLayer: public GroupLayer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
FlagGroupLayer();
|
|
|
|
virtual ~FlagGroupLayer();
|
|
|
|
};
|
|
|
|
class FlagLayer: public Layer
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
FlagLayer(ChannelID code, QColor colour, FlagVisual visual=Bar);
|
|
|
|
virtual ~FlagLayer();
|
|
|
|
protected:
|
|
|
|
FlagVisual m_visual;
|
|
|
|
};
|
|
|
|
class Graph
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Graph(QString name,quint32 flags=GraphFlags::XTicker | GraphFlags::YTicker | GraphFlags::XGrid);
|
|
|
|
Layer *addLayer(Layer *layer) { m_layers.push_back(layer); return layer; }
|
|
|
|
int height() { if (m_visible) return m_height; else return 0;}
|
2011-10-05 07:41:56 +00:00
|
|
|
void setHeight(int h) { m_height=h; }
|
2011-10-05 03:05:35 +00:00
|
|
|
bool visible() { return m_visible; }
|
|
|
|
void setVisible(bool b) { m_visible=b; }
|
|
|
|
protected:
|
|
|
|
QString m_name;
|
|
|
|
int m_height;
|
|
|
|
QVector<Layer *> m_layers;
|
|
|
|
bool m_visible;
|
|
|
|
};
|
|
|
|
class GraphGroup
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GraphGroup(QString name);
|
|
|
|
GraphGroup();
|
|
|
|
Graph *addGraph(Graph *graph) { m_graphs.push_back(graph); return graph; }
|
|
|
|
protected:
|
|
|
|
QVector<Graph *>m_graphs;
|
2011-12-19 05:35:05 +00:00
|
|
|
}; */
|
2011-10-05 03:05:35 +00:00
|
|
|
|
2011-09-17 12:39:00 +00:00
|
|
|
void init();
|
|
|
|
|
|
|
|
} // namespace
|
|
|
|
|
|
|
|
#endif // SCHEMA_H
|