mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
936 lines
45 KiB
C++
936 lines
45 KiB
C++
/* Channel / Schema Implementation
|
|
*
|
|
* 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. */
|
|
|
|
#include <QFile>
|
|
#include <QDebug>
|
|
#include <QDomDocument>
|
|
#include <QDomElement>
|
|
#include <QDomNode>
|
|
#include <QMessageBox>
|
|
#include <QApplication>
|
|
|
|
#include "common.h"
|
|
#include "schema.h"
|
|
#include "common_gui.h"
|
|
|
|
#include "SleepLib/profiles.h"
|
|
|
|
QColor adjustcolor(QColor color, float ar=1.0, float ag=1.0, float ab=1.0)
|
|
{
|
|
int r = color.red();
|
|
int g = color.green();
|
|
int b = color.blue();
|
|
|
|
r += rand() & 64;
|
|
g += rand() & 64;
|
|
b += rand() & 64;
|
|
|
|
r = qMin(int(r * ar), 255);
|
|
g = qMin(int(g * ag), 255);
|
|
b = qMin(int(b * ab), 255);
|
|
|
|
return QColor(r,g,b, color.alpha());
|
|
}
|
|
|
|
|
|
QColor darken(QColor color, float p);
|
|
|
|
|
|
|
|
namespace schema {
|
|
|
|
void resetChannels();
|
|
|
|
ChannelList channel;
|
|
Channel EmptyChannel;
|
|
Channel *SessionEnabledChannel;
|
|
|
|
QHash<QString, ChanType> ChanTypes;
|
|
QHash<QString, DataType> DataTypes;
|
|
QHash<QString, ScopeType> Scopes;
|
|
|
|
bool schema_initialized = false;
|
|
|
|
void init()
|
|
{
|
|
if (schema_initialized) { return; }
|
|
|
|
schema_initialized = true;
|
|
|
|
EmptyChannel = Channel(0, DATA, MT_UNKNOWN, DAY, "Empty", "Empty", "Empty Channel", "", "");
|
|
SessionEnabledChannel = new Channel(1, DATA, MT_UNKNOWN, DAY, "Enabled", "Enabled", "Session Enabled", "", "");
|
|
|
|
channel.channels[1] = SessionEnabledChannel;
|
|
channel.names["Enabled"] = SessionEnabledChannel;
|
|
SESSION_ENABLED = 1;
|
|
ChanTypes["data"] = DATA;
|
|
//Types["waveform"]=WAVEFORM;
|
|
ChanTypes["setting"] = SETTING;
|
|
|
|
Scopes["session"] = SESSION;
|
|
Scopes["day"] = DAY;
|
|
Scopes["machine"] = MACHINE;
|
|
Scopes["global"] = GLOBAL;
|
|
|
|
DataTypes[""] = DEFAULT;
|
|
DataTypes["bool"] = BOOL;
|
|
DataTypes["double"] = DOUBLE;
|
|
DataTypes["integer"] = INTEGER;
|
|
DataTypes["string"] = STRING;
|
|
DataTypes["richtext"] = RICHTEXT;
|
|
DataTypes["date"] = DATE;
|
|
DataTypes["datetime"] = DATETIME;
|
|
DataTypes["time"] = TIME;
|
|
|
|
if (!schema::channel.Load(":/docs/channels.xml")) {
|
|
QMessageBox::critical(0, STR_MessageBox_Error,
|
|
QObject::tr("Couldn't parse Channels.xml, this build is seriously borked, no choice but to abort!!"),
|
|
QMessageBox::Ok);
|
|
QApplication::exit(-1);
|
|
}
|
|
|
|
|
|
// Lookup Code strings are used internally and not meant to be tranlsated
|
|
|
|
// Group ChannelID Code Type Scope Lookup Code Translable Name Description Shortened Name Units String FieldType Default Color
|
|
|
|
// Pressure Related Settings
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_Pressure = 0x110C, WAVEFORM, MT_CPAP, SESSION, "Pressure",
|
|
STR_TR_Pressure, QObject::tr("Therapy Pressure"), STR_TR_Pressure,
|
|
STR_UNIT_CMH2O, DEFAULT, QColor("dark green")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_IPAP = 0x110D, WAVEFORM, MT_CPAP, SESSION, "IPAP",
|
|
STR_TR_IPAP, QObject::tr("Inspiratory Pressure"), STR_TR_IPAP,
|
|
STR_UNIT_CMH2O, DEFAULT, QColor("red")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_IPAPLo = 0x1110, WAVEFORM, MT_CPAP, SESSION, "IPAPLo",
|
|
STR_TR_IPAPLo, QObject::tr("Lower Inspiratory Pressure"), STR_TR_IPAPLo,
|
|
STR_UNIT_CMH2O, DEFAULT, QColor("orange")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_IPAPHi = 0x1111, WAVEFORM, MT_CPAP, SESSION, "IPAPHi",
|
|
STR_TR_IPAPHi, QObject::tr("Higher Inspiratory Pressure"), STR_TR_IPAPHi,
|
|
STR_UNIT_CMH2O, DEFAULT, QColor("orange")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_EPAP = 0x110E, WAVEFORM, MT_CPAP, SESSION, "EPAP",
|
|
STR_TR_EPAP, QObject::tr("Expiratory Pressure"), STR_TR_EPAP,
|
|
STR_UNIT_CMH2O, DEFAULT, QColor("green")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_EPAPLo = 0x111C, WAVEFORM, MT_CPAP, SESSION, "EPAPLo",
|
|
STR_TR_EPAPLo, QObject::tr("Lower Expiratory Pressure"), STR_TR_EPAPLo,
|
|
STR_UNIT_CMH2O, DEFAULT, QColor("light blue")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_EPAPHi = 0x111D, WAVEFORM, MT_CPAP, SESSION, "EPAPHi",
|
|
STR_TR_EPAPHi, QObject::tr("Higher Expiratory Pressure"), STR_TR_EPAPHi,
|
|
STR_UNIT_CMH2O, DEFAULT, QColor("aqua")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_PS = 0x110F, WAVEFORM, MT_CPAP, SESSION, "PS",
|
|
STR_TR_PS, QObject::tr("Pressure Support"), STR_TR_PS,
|
|
STR_UNIT_CMH2O, DEFAULT, QColor("grey")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_PSMin = 0x111A, SETTING, MT_CPAP, SESSION, "PSMin",
|
|
QObject::tr("PS Min") , QObject::tr("Pressure Support Minimum"),
|
|
QObject::tr("PS Min"), STR_UNIT_CMH2O, DEFAULT, QColor("dark cyan")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_PSMax = 0x111B, SETTING, MT_CPAP, SESSION, "PSMax",
|
|
QObject::tr("PS Max"), QObject::tr("Pressure Support Maximum"),
|
|
QObject::tr("PS Max"), STR_UNIT_CMH2O, DEFAULT, QColor("dark magenta")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_PressureMin = 0x1020, SETTING, MT_CPAP, SESSION,
|
|
"PressureMin", QObject::tr("Min Pressure") , QObject::tr("Minimum Therapy Pressure"),
|
|
QObject::tr("Pressure Min"), STR_UNIT_CMH2O, DEFAULT, QColor("black")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_PressureMax = 0x1021, SETTING, MT_CPAP, SESSION,
|
|
"PressureMax", QObject::tr("Max Pressure"), QObject::tr("Maximum Therapy Pressure"),
|
|
QObject::tr("Pressure Max"), STR_UNIT_CMH2O, DEFAULT, QColor("black")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_RampTime = 0x1022, SETTING, MT_CPAP, SESSION,
|
|
"RampTime", QObject::tr("Ramp Time") , QObject::tr("Ramp Delay Period"),
|
|
QObject::tr("Ramp Time"), STR_UNIT_Minutes, DEFAULT, QColor("black")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_RampPressure = 0x1023, SETTING, MT_CPAP, SESSION,
|
|
"RampPressure", QObject::tr("Ramp Pressure"), QObject::tr("Starting Ramp Pressure"),
|
|
QObject::tr("Ramp Pressure"), STR_UNIT_CMH2O, DEFAULT, QColor("black")));
|
|
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_Ramp = 0x1027, SPAN, MT_CPAP, SESSION,
|
|
"Ramp", QObject::tr("Ramp Event") , QObject::tr("Ramp Event"),
|
|
QObject::tr("Ramp"), STR_UNIT_EventsPerHour, DEFAULT, QColor("light blue")));
|
|
|
|
|
|
// Flags
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_CSR = 0x1000, SPAN, MT_CPAP, SESSION, "CSR",
|
|
QObject::tr("Periodic Breathing"),
|
|
QObject::tr("A period of periodic breathing"),
|
|
QObject::tr("PB"), STR_UNIT_Percentage, DEFAULT, COLOR_CSR));
|
|
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_ClearAirway = 0x1001, FLAG, MT_CPAP, SESSION,
|
|
"ClearAirway", QObject::tr("Clear Airway Apnea"),
|
|
QObject::tr("An apnea where the airway is open"),
|
|
QObject::tr("CA"), STR_UNIT_EventsPerHour, DEFAULT, QColor("purple")));
|
|
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_Obstructive = 0x1002, FLAG, MT_CPAP, SESSION,
|
|
"Obstructive", QObject::tr("Obstructive Apnea"),
|
|
QObject::tr("An apnea caused by airway obstruction"),
|
|
QObject::tr("OA"), STR_UNIT_EventsPerHour, DEFAULT, QColor("#40c0ff")));
|
|
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_Hypopnea = 0x1003, FLAG, MT_CPAP, SESSION,
|
|
"Hypopnea", QObject::tr("Hypopnea"),
|
|
QObject::tr("A partially obstructed airway"),
|
|
QObject::tr("H"), STR_UNIT_EventsPerHour, DEFAULT, QColor("blue")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_Apnea = 0x1004, FLAG, MT_CPAP, SESSION, "Apnea",
|
|
QObject::tr("Unclassified Apnea"),
|
|
QObject::tr("An apnea that could not fit into a category"),
|
|
QObject::tr("UA"), STR_UNIT_EventsPerHour, DEFAULT, QColor("dark green")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_FlowLimit = 0x1005, FLAG, MT_CPAP, SESSION,
|
|
"FlowLimit", QObject::tr("Flow Limitation"),
|
|
QObject::tr("An restriction in breathing from normal, causing a flattening of the flow waveform."),
|
|
QObject::tr("FL"), STR_UNIT_EventsPerHour, DEFAULT, QColor("#404040")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_RERA = 0x1006, FLAG, MT_CPAP, SESSION, "RERA",
|
|
QObject::tr("Respiratory Effort Related Arousal"),
|
|
QObject::tr("An restriction in breathing that causes an either an awakening or sleep disturbance."),
|
|
QObject::tr("RE"), STR_UNIT_EventsPerHour, DEFAULT, QColor("gold")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_VSnore = 0x1007, FLAG, MT_CPAP, SESSION, "VSnore",
|
|
QObject::tr("Vibratory Snore"), QObject::tr("A vibratory snore"),
|
|
QObject::tr("VS"), STR_UNIT_EventsPerHour, DEFAULT, QColor("red")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_VSnore2 = 0x1008, FLAG, MT_CPAP, SESSION, "VSnore2",
|
|
QObject::tr("Vibratory Snore (VS2) "),
|
|
QObject::tr("A vibratory snore as detcted by a System One machine"),
|
|
QObject::tr("VS2"), STR_UNIT_EventsPerHour, DEFAULT, QColor("red")));
|
|
|
|
// This Large Leak record is just a flag marker, used by Intellipap for one
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_LeakFlag = 0x100a, FLAG, MT_CPAP, SESSION,
|
|
"LeakFlag", QObject::tr("Leak Flag"),
|
|
QObject::tr("A large mask leak affecting machine performance."),
|
|
QObject::tr("LF"), STR_UNIT_EventsPerHour, DEFAULT, QColor("light gray")));
|
|
|
|
// The following is a Large Leak record that references a waveform span
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_LargeLeak = 0x1158, SPAN, MT_CPAP, SESSION,
|
|
"LeakSpan", QObject::tr("Large Leak"),
|
|
QObject::tr("A large mask leak affecting machine performance."),
|
|
QObject::tr("LL"), STR_UNIT_EventsPerHour, DEFAULT, QColor("light gray")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_NRI = 0x100b, FLAG, MT_CPAP, SESSION, "NRI",
|
|
QObject::tr("Non Responding Event"),
|
|
QObject::tr("A type of respiratory event that won't respond to a pressure increase."),
|
|
QObject::tr("NR"), STR_UNIT_EventsPerHour, DEFAULT, QColor("orange")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_ExP = 0x100c, FLAG, MT_CPAP, SESSION, "ExP",
|
|
QObject::tr("Expiratory Puff"),
|
|
QObject::tr("Intellipap event where you breathe out your mouth."),
|
|
QObject::tr("EP"), STR_UNIT_EventsPerHour, DEFAULT, QColor("dark magenta")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_SensAwake = 0x100d, FLAG, MT_CPAP, SESSION,
|
|
"SensAwake", QObject::tr("SensAwake"),
|
|
QObject::tr("SensAwake feature will reduce pressure when waking is detected."),
|
|
QObject::tr("SA"), STR_UNIT_EventsPerHour, DEFAULT, QColor("gold")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_UserFlag1 = 0x101e, FLAG, MT_CPAP, SESSION,
|
|
"UserFlag1", QObject::tr("User Flag #1"),
|
|
QObject::tr("A user definable event detected by SleepyHead's flow waveform processor."),
|
|
QObject::tr("UF1"), STR_UNIT_EventsPerHour, DEFAULT, QColor(0xc0,0xc0,0xe0)));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_UserFlag2 = 0x101f, FLAG, MT_CPAP, SESSION,
|
|
"UserFlag2", QObject::tr("User Flag #2"),
|
|
QObject::tr("A user definable event detected by SleepyHead's flow waveform processor."),
|
|
QObject::tr("UF2"), STR_UNIT_EventsPerHour, DEFAULT, QColor(0xa0,0xa0,0xc0)));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_UserFlag3 = 0x1024, FLAG, MT_CPAP, SESSION,
|
|
"UserFlag3", QObject::tr("User Flag #3"),
|
|
QObject::tr("A user definable event detected by SleepyHead's flow waveform processor."),
|
|
QObject::tr("UF3"), STR_UNIT_EventsPerHour, DEFAULT, QColor("dark grey")));
|
|
|
|
|
|
// Oximetry
|
|
schema::channel.add(GRP_OXI, new Channel(OXI_Pulse = 0x1800, WAVEFORM, MT_OXIMETER, SESSION, "Pulse",
|
|
QObject::tr("Pulse Rate"), QObject::tr("Heart rate in beats per minute"),
|
|
QObject::tr("Pulse Rate"), STR_UNIT_BPM, DEFAULT, QColor("red")));
|
|
|
|
schema::channel[OXI_Pulse].setLowerThreshold(40);
|
|
schema::channel[OXI_Pulse].setUpperThreshold(130);
|
|
|
|
schema::channel.add(GRP_OXI, new Channel(OXI_SPO2 = 0x1801, WAVEFORM, MT_OXIMETER, SESSION, "SPO2",
|
|
QObject::tr("SpO2 %"), QObject::tr("Blood-oxygen saturation percentage"),
|
|
QObject::tr("SpO2"), STR_UNIT_Percentage, DEFAULT, QColor("blue")));
|
|
|
|
schema::channel[OXI_SPO2].setLowerThreshold(88);
|
|
|
|
schema::channel.add(GRP_OXI, new Channel(OXI_Plethy = 0x1802, WAVEFORM, MT_OXIMETER, SESSION, "Plethy",
|
|
QObject::tr("Plethysomogram"),
|
|
QObject::tr("An optical Photo-plethysomogram showing heart rhythm"),
|
|
QObject::tr("Plethy"), STR_UNIT_Hz, DEFAULT, QColor("#404040")));
|
|
|
|
schema::channel.add(GRP_OXI, new Channel(OXI_Perf = 0x1805, WAVEFORM, MT_OXIMETER, SESSION, "Perf. Index",
|
|
QObject::tr("Perfusion Index"),
|
|
QObject::tr("A relative assessment of the pulse strength at the monitoring site"),
|
|
QObject::tr("Perf. Index %"), STR_UNIT_Percentage, DEFAULT, QColor("magenta")));
|
|
|
|
schema::channel.add(GRP_OXI, new Channel(OXI_PulseChange = 0x1803, FLAG, MT_OXIMETER, SESSION,
|
|
"PulseChange", QObject::tr("Pulse Change"),
|
|
QObject::tr("A sudden (user definable) change in heart rate"),
|
|
QObject::tr("PC"), STR_UNIT_EventsPerHour, DEFAULT, QColor("light grey")));
|
|
|
|
schema::channel.add(GRP_OXI, new Channel(OXI_SPO2Drop = 0x1804, FLAG, MT_OXIMETER, SESSION,
|
|
"SPO2Drop", QObject::tr("SpO2 Drop"),
|
|
QObject::tr("A sudden (user definable) drop in blood oxygen saturation"),
|
|
QObject::tr("SD"), STR_UNIT_EventsPerHour, DEFAULT, QColor("light blue")));
|
|
|
|
// <channel id="0x1100" class="data" name="FlowRate" details="Flow Rate" label="Flow Rate" unit="L/min" color="black"/>
|
|
// <channel id="0x1101" class="data" name="MaskPressure" details="Mask Pressure" label="Mask Pressure" unit="cmH20" color="blue"/>
|
|
// <channel id="0x1102" class="data" name="MaskPressureHi" details="Mask Pressure" label="Mask Pressure (Hi-Res)" unit="cmH20" color="blue" link="0x1101"/>
|
|
// <channel id="0x1103" class="data" name="TidalVolume" details="Tidal Volume" label="Tidal Volume" unit="ml" color="magenta"/>
|
|
// <channel id="0x1104" class="data" name="Snore" details="Snore" label="Snore" unit="unknown" color="grey"/>
|
|
// <channel id="0x1105" class="data" name="MinuteVent" details="Minute Ventilation" label="Minute Vent." unit="L/min" color="dark cyan"/>
|
|
// <channel id="0x1106" class="data" name="RespRate" details="Respiratory Rate" label="Resp. Rate" unit="breaths/min" color="dark magenta"/>
|
|
// <channel id="0x1107" class="data" name="PTB" details="Patient Triggered Breaths" label="Pat. Trig. Breaths" unit="%" color="dark grey"/>
|
|
// <channel id="0x1108" class="data" name="Leak" details="Leak Rate" label="Leaks" unit="L/min" color="dark green"/>
|
|
|
|
// <channel id="0x1109" class="data" name="IE" details="Inspiratory:Expiratory" label="I:E" unit="ratio" color="dark red"/>
|
|
// <channel id="0x110a" class="data" name="Te" details="Expiratory Time" label="Exp Time" unit="seconds" color="dark green"/>
|
|
// <channel id="0x110b" class="data" name="Ti" details="Inspiratory Time" label="Insp Time" unit="seconds" color="dark blue"/>
|
|
// <channel id="0x1112" class="data" name="RespEvent" details="Respiratory Events" label="Resp Events" unit="" color="black"/>
|
|
// <channel id="0x1113" class="data" name="FLG" details="Flow Limit Graph" label="Flow Limit" unit="0-1" color="dark grey"/>
|
|
// <channel id="0x1114" class="data" name="TgMV" details="Target Minute Ventilation" label="Target Vent." unit="" color="dark cyan"/>
|
|
// <channel id="0x1115" class="data" name="MaxLeak" details="Maximum Leak" label="MaxLeaks" unit="L/min" color="dark red"/>
|
|
// <channel id="0x1116" class="data" name="AHI" details="Apnea / Hypopnea Index" label="AHI/Hr" unit="events/hr" color="dark red"/>
|
|
// <channel id="0x1117" class="data" name="LeakTotal" details="Total Leak Rate" label="Total Leaks" unit="L/min" color="dark green"/>
|
|
// <channel id="0x1118" class="data" name="LeakMedian" details="Median Leak Rate" label="Median Leaks" unit="L/min" color="dark green"/>
|
|
// <channel id="0x1119" class="data" name="RDI" details="Respiratory Disturbance Index" label="RDI" unit="events/hr" color="dark red"/>
|
|
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_FlowRate = 0x1100, WAVEFORM, MT_CPAP, SESSION,
|
|
"FlowRate", QObject::tr("Flow Rate"),
|
|
QObject::tr("Breathing flow rate waveform"), QObject::tr("Flow Rate"),
|
|
STR_UNIT_LPM, DEFAULT, QColor("black")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_MaskPressure = 0x1101, WAVEFORM, MT_CPAP, SESSION,
|
|
"MaskPressure", QObject::tr("Mask Pressure"),
|
|
QObject::tr("Mask Pressure"), QObject::tr("Mask Pressure"),
|
|
STR_UNIT_CMH2O, DEFAULT, QColor("blue")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_MaskPressureHi = 0x1102, WAVEFORM, MT_CPAP, SESSION,
|
|
"MaskPressureHi", QObject::tr("Mask Pressure"),
|
|
QObject::tr("Mask Pressure (High resolution)"), QObject::tr("Mask Pressure"),
|
|
STR_UNIT_CMH2O, DEFAULT, QColor("blue"), 0x1101)); // linked to CPAP_MaskPressure
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_TidalVolume = 0x1103, WAVEFORM, MT_CPAP, SESSION,
|
|
"TidalVolume", QObject::tr("Tidal Volume"),
|
|
QObject::tr("Amount of air displaced per breath"), QObject::tr("Tidal Volume"),
|
|
STR_UNIT_ml, DEFAULT, QColor("magenta")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_Snore = 0x1104, WAVEFORM, MT_CPAP, SESSION,
|
|
"Snore", QObject::tr("Snore"),
|
|
QObject::tr("Graph displaying snore volume"), QObject::tr("Snore"),
|
|
STR_UNIT_Unknown, DEFAULT, QColor("grey")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_MinuteVent = 0x1105, WAVEFORM, MT_CPAP, SESSION,
|
|
"MinuteVent", QObject::tr("Minute Ventilation"),
|
|
QObject::tr("Amount of air displaced per minute"), QObject::tr("Minute Vent."),
|
|
STR_UNIT_LPM, DEFAULT, QColor("dark cyan")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_RespRate = 0x1106, WAVEFORM, MT_CPAP, SESSION,
|
|
"RespRate", QObject::tr("Respiratory Rate"),
|
|
QObject::tr("Rate of breaths per minute"), QObject::tr("Resp. Rate"),
|
|
STR_UNIT_BreathsPerMinute, DEFAULT, QColor("dark magenta")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_PTB = 0x1107, WAVEFORM, MT_CPAP, SESSION, "PTB",
|
|
QObject::tr("Patient Triggered Breaths"),
|
|
QObject::tr("Percentage of breaths triggered by patient"), QObject::tr("Pat. Trig. Breaths"),
|
|
STR_UNIT_Percentage, DEFAULT, QColor("dark grey")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_Leak = 0x1108, WAVEFORM, MT_CPAP, SESSION,
|
|
"Leak", QObject::tr("Leak Rate"),
|
|
QObject::tr("Rate of detected mask leakage"), QObject::tr("Leak Rate"),
|
|
STR_UNIT_LPM, DEFAULT, QColor("dark green")));
|
|
|
|
schema::channel[CPAP_Leak].setLowerThreshold(24.0);
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_IE = 0x1109, WAVEFORM, MT_CPAP, SESSION, "IE",
|
|
QObject::tr("I:E Ratio"),
|
|
QObject::tr("Ratio between Inspiratory and Expiratory time"), QObject::tr("I:E Ratio"),
|
|
STR_UNIT_Ratio, DEFAULT, QColor("dark red")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_Te = 0x110A, WAVEFORM, MT_CPAP, SESSION, "Te",
|
|
QObject::tr("Expiratory Time"), QObject::tr("Time taken to breathe out"),
|
|
QObject::tr("Exp. Time"), STR_UNIT_Seconds, DEFAULT, QColor("dark green")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_Ti = 0x110B, WAVEFORM, MT_CPAP, SESSION, "Ti",
|
|
QObject::tr("Inspiratory Time"), QObject::tr("Time taken to breathe in"),
|
|
QObject::tr("Insp. Time"), STR_UNIT_Seconds, DEFAULT, QColor("dark blue")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_RespEvent = 0x1112, DATA, MT_CPAP, SESSION,
|
|
"RespEvent", QObject::tr("Respiratory Event"),
|
|
QObject::tr("A ResMed data source showing Respiratory Events"), QObject::tr("Resp. Event"),
|
|
STR_UNIT_EventsPerHour, DEFAULT, QColor("black")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_FLG = 0x1113, WAVEFORM, MT_CPAP, SESSION, "FLG",
|
|
QObject::tr("Flow Limitation"),
|
|
QObject::tr("Graph showing severity of flow limitations"), QObject::tr("Flow Limit."),
|
|
STR_UNIT_Severity, DEFAULT, QColor("dark gray")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_TgMV = 0x1114, WAVEFORM, MT_CPAP, SESSION,
|
|
"TgMV", QObject::tr("Target Minute Ventilation"),
|
|
QObject::tr("Target Minute Ventilation?"), QObject::tr("Target Vent."),
|
|
STR_UNIT_LPM, DEFAULT, QColor("dark cyan")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_MaxLeak = 0x1115, WAVEFORM, MT_CPAP, SESSION,
|
|
"MaxLeak", QObject::tr("Maximum Leak"),
|
|
QObject::tr("The maximum rate of mask leakage"), QObject::tr("Max Leaks"),
|
|
STR_UNIT_LPM, DEFAULT, QColor("dark red")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_AHI = 0x1116, WAVEFORM, MT_CPAP, SESSION, "AHI",
|
|
QObject::tr("Apnea Hypopnea Index"),
|
|
QObject::tr("Graph showing running AHI for the past hour"), QObject::tr("AHI"),
|
|
STR_UNIT_EventsPerHour, DEFAULT, QColor("dark red")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_LeakTotal = 0x1117, WAVEFORM, MT_CPAP, SESSION,
|
|
"LeakTotal", QObject::tr("Total Leak Rate"),
|
|
QObject::tr("Detected mask leakage including natural Mask leakages"), QObject::tr("Total Leaks"),
|
|
STR_UNIT_LPM, DEFAULT, QColor("dark green")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_LeakMedian = 0x1118, WAVEFORM, MT_CPAP, SESSION,
|
|
"LeakMedian", QObject::tr("Median Leak Rate"),
|
|
QObject::tr("Median rate of detected mask leakage"), QObject::tr("Median Leaks"),
|
|
STR_UNIT_LPM, DEFAULT, QColor("dark green")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_RDI = 0x1119, WAVEFORM, MT_CPAP, SESSION, "RDI",
|
|
QObject::tr("Respiratory Disturbance Index"),
|
|
QObject::tr("Graph showing running RDI for the past hour"), QObject::tr("RDI"),
|
|
STR_UNIT_EventsPerHour, DEFAULT, QColor("dark red")));
|
|
|
|
// Positional sensors
|
|
schema::channel.add(GRP_POS, new Channel(POS_Orientation = 0x2990, DATA, MT_POSITION, SESSION,
|
|
"Orientation", QObject::tr("Orientation"),
|
|
QObject::tr("Sleep position in degrees"), QObject::tr("Orientation"), STR_UNIT_Degrees,
|
|
DEFAULT, QColor("dark blue")));
|
|
|
|
schema::channel.add(GRP_POS, new Channel(POS_Inclination = 0x2991, DATA, MT_POSITION, SESSION,
|
|
"Inclination", QObject::tr("Inclination"),
|
|
QObject::tr("Upright angle in degrees"), QObject::tr("Inclination"), STR_UNIT_Degrees,
|
|
DEFAULT, QColor("dark magenta")));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(RMS9_MaskOnTime = 0x1025, DATA, MT_CPAP, SESSION,
|
|
"MaskOnTime", QObject::tr("Mask On Time"),
|
|
QObject::tr("Time started according to str.edf"), QObject::tr("Mask On Time"), STR_UNIT_Unknown,
|
|
DEFAULT, Qt::black));
|
|
|
|
schema::channel.add(GRP_CPAP, new Channel(CPAP_SummaryOnly = 0x1026, DATA, MT_CPAP, SESSION,
|
|
"SummaryOnly", QObject::tr("Summary Only"),
|
|
QObject::tr("CPAP Session contains summary data only"), QObject::tr("Summary Only"), STR_UNIT_Unknown,
|
|
DEFAULT, Qt::black));
|
|
|
|
Channel *ch;
|
|
schema::channel.add(GRP_CPAP, ch = new Channel(CPAP_Mode = 0x1200, SETTING, MT_CPAP, SESSION,
|
|
"PAPMode", QObject::tr("PAP Mode"),
|
|
QObject::tr("PAP Device Mode"),
|
|
QObject::tr("PAP Mode"), QString(),
|
|
LOOKUP, Qt::black));
|
|
|
|
ch->addOption(0, STR_TR_Unknown);
|
|
ch->addOption(1, STR_TR_CPAP);
|
|
ch->addOption(2, QObject::tr("APAP (Variable)"));
|
|
ch->addOption(3, QObject::tr("Fixed Bi-Level"));
|
|
ch->addOption(4, QObject::tr("Auto Bi-Level (Fixed PS)"));
|
|
ch->addOption(5, QObject::tr("Auto Bi-Level (Variable PS)"));
|
|
ch->addOption(6, QObject::tr("ASV (Fixed EPAP)"));
|
|
ch->addOption(7, QObject::tr("ASV (Variable EPAP)"));
|
|
|
|
|
|
// <channel id="0x1200" class="setting" scope="!session" name="PAPMode" details="PAP Mode" label="PAP Mode" type="integer">
|
|
// <option id="0" value="CPAP"/>
|
|
// <option id="1" value="Auto"/>
|
|
// <option id="2" value="Fixed Bi-Level"/>
|
|
// <option id="3" value="Auto Bi-Level"/>
|
|
// <option id="4" value="ASV"/>
|
|
// <option id="5" value="ASV Auto EPAP"/>
|
|
// </channel>
|
|
|
|
|
|
NoChannel = 0;
|
|
// CPAP_IPAP=schema::channel["IPAP"].id();
|
|
// CPAP_IPAPLo=schema::channel["IPAPLo"].id();
|
|
// CPAP_IPAPHi=schema::channel["IPAPHi"].id();
|
|
// CPAP_EPAP=schema::channel["EPAP"].id();
|
|
// CPAP_Pressure=schema::channel["Pressure"].id();
|
|
// CPAP_PS=schema::channel["PS"].id();
|
|
// CPAP_PSMin=schema::channel["PSMin"].id();
|
|
// CPAP_PSMax=schema::channel["PSMax"].id();
|
|
// CPAP_Mode = schema::channel["PAPMode"].id();
|
|
CPAP_BrokenSummary = schema::channel["BrokenSummary"].id();
|
|
CPAP_BrokenWaveform = schema::channel["BrokenWaveform"].id();
|
|
// CPAP_PressureMin=schema::channel["PressureMin"].id();
|
|
// CPAP_PressureMax=schema::channel["PressureMax"].id();
|
|
// CPAP_RampTime=schema::channel["RampTime"].id();
|
|
// CPAP_RampPressure=schema::channel["RampPressure"].id();
|
|
// CPAP_Obstructive=schema::channel["Obstructive"].id();
|
|
// CPAP_Hypopnea=schema::channel["Hypopnea"].id();
|
|
// CPAP_ClearAirway=schema::channel["ClearAirway"].id();
|
|
// CPAP_Apnea=schema::channel["Apnea"].id();
|
|
// CPAP_CSR=schema::channel["CSR"].id();
|
|
// CPAP_LeakFlag=schema::channel["LeakFlag"].id();
|
|
// CPAP_ExP=schema::channel["ExP"].id();
|
|
// CPAP_NRI=schema::channel["NRI"].id();
|
|
// CPAP_VSnore=schema::channel["VSnore"].id();
|
|
// CPAP_VSnore2=schema::channel["VSnore2"].id();
|
|
// CPAP_RERA=schema::channel["RERA"].id();
|
|
// CPAP_PressurePulse=schema::channel["PressurePulse"].id();
|
|
// CPAP_FlowLimit=schema::channel["FlowLimit"].id();
|
|
// CPAP_FlowRate=schema::channel["FlowRate"].id();
|
|
// CPAP_MaskPressure=schema::channel["MaskPressure"].id();
|
|
// CPAP_MaskPressureHi=schema::channel["MaskPressureHi"].id();
|
|
// CPAP_RespEvent=schema::channel["RespEvent"].id();
|
|
// CPAP_Snore=schema::channel["Snore"].id();
|
|
// CPAP_MinuteVent=schema::channel["MinuteVent"].id();
|
|
// CPAP_RespRate=schema::channel["RespRate"].id();
|
|
// CPAP_TidalVolume=schema::channel["TidalVolume"].id();
|
|
// CPAP_PTB=schema::channel["PTB"].id();
|
|
// CPAP_Leak=schema::channel["Leak"].id();
|
|
// CPAP_LeakMedian=schema::channel["LeakMedian"].id();
|
|
// CPAP_LeakTotal=schema::channel["LeakTotal"].id();
|
|
// CPAP_MaxLeak=schema::channel["MaxLeak"].id();
|
|
// CPAP_FLG=schema::channel["FLG"].id();
|
|
// CPAP_IE=schema::channel["IE"].id();
|
|
// CPAP_Te=schema::channel["Te"].id();
|
|
// CPAP_Ti=schema::channel["Ti"].id();
|
|
// CPAP_TgMV=schema::channel["TgMV"].id();
|
|
CPAP_Test1 = schema::channel["TestChan1"].id();
|
|
CPAP_Test2 = schema::channel["TestChan2"].id();
|
|
|
|
// CPAP_UserFlag1=schema::channel["UserFlag1"].id();
|
|
// CPAP_UserFlag2=schema::channel["UserFlag2"].id();
|
|
// CPAP_UserFlag3=schema::channel["UserFlag3"].id();
|
|
RMS9_E01 = schema::channel["RMS9_E01"].id();
|
|
RMS9_E02 = schema::channel["RMS9_E02"].id();
|
|
RMS9_SetPressure = schema::channel["SetPressure"].id(); // TODO: this isn't needed anymore
|
|
CPAP_HumidSetting = schema::channel["HumidSet"].id();
|
|
INTELLIPAP_Unknown1 = schema::channel["IntUnk1"].id();
|
|
INTELLIPAP_Unknown2 = schema::channel["IntUnk2"].id();
|
|
// OXI_Pulse=schema::channel["Pulse"].id();
|
|
// OXI_SPO2=schema::channel["SPO2"].id();
|
|
// OXI_PulseChange=schema::channel["PulseChange"].id();
|
|
// OXI_SPO2Drop=schema::channel["SPO2Drop"].id();
|
|
// OXI_Plethy=schema::channel["Plethy"].id();
|
|
// CPAP_AHI=schema::channel["AHI"].id();
|
|
// CPAP_RDI=schema::channel["RDI"].id();
|
|
Journal_Notes = schema::channel["Journal"].id();
|
|
Journal_Weight = schema::channel["Weight"].id();
|
|
Journal_BMI = schema::channel["BMI"].id();
|
|
Journal_ZombieMeter = schema::channel["ZombieMeter"].id();
|
|
LastUpdated = schema::channel["LastUpdated"].id();
|
|
Bookmark_Start = schema::channel["BookmarkStart"].id();
|
|
Bookmark_End = schema::channel["BookmarkEnd"].id();
|
|
Bookmark_Notes = schema::channel["BookmarkNotes"].id();
|
|
|
|
ZEO_SleepStage = schema::channel["SleepStage"].id();
|
|
ZEO_ZQ = schema::channel["ZeoZQ"].id();
|
|
ZEO_Awakenings = schema::channel["Awakenings"].id();
|
|
ZEO_MorningFeel = schema::channel["MorningFeel"].id();
|
|
ZEO_TimeInWake = schema::channel["TimeInWake"].id();
|
|
ZEO_TimeInREM = schema::channel["TimeInREM"].id();
|
|
ZEO_TimeInLight = schema::channel["TimeInLight"].id();
|
|
ZEO_TimeInDeep = schema::channel["TimeInDeep"].id();
|
|
ZEO_TimeToZ = schema::channel["TimeToZ"].id();
|
|
}
|
|
|
|
|
|
void resetChannels()
|
|
{
|
|
schema::channel.channels.clear();
|
|
schema::channel.names.clear();
|
|
schema::channel.groups.clear();
|
|
|
|
schema_initialized = false;
|
|
init();
|
|
|
|
QList<MachineLoader *> list = GetLoaders();
|
|
for (int i=0; i< list.size(); ++i) {
|
|
MachineLoader * loader = list.at(i);
|
|
loader->initChannels();
|
|
}
|
|
}
|
|
|
|
Channel::Channel(ChannelID id, ChanType type, MachineType machtype, ScopeType scope, QString code, QString fullname,
|
|
QString description, QString label, QString unit, DataType datatype, QColor color, int link):
|
|
m_id(id),
|
|
m_type(type),
|
|
m_machtype(machtype),
|
|
m_scope(scope),
|
|
m_code(code),
|
|
m_fullname(fullname),
|
|
m_description(description),
|
|
m_label(label),
|
|
m_unit(unit),
|
|
m_datatype(datatype),
|
|
m_defaultcolor(color),
|
|
m_link(link),
|
|
m_upperThreshold(0),
|
|
m_lowerThreshold(0),
|
|
m_upperThresholdColor(Qt::red),
|
|
m_lowerThresholdColor(Qt::green),
|
|
m_enabled(true),
|
|
m_order(255)
|
|
{
|
|
if (type == WAVEFORM) {
|
|
calc[Calc_Min] = ChannelCalc(id, Calc_Min, adjustcolor(color, 0.25, 1, 1.3), false);
|
|
calc[Calc_Middle] = ChannelCalc(id, Calc_Middle, adjustcolor(color, 1.3, 1, 1), false);
|
|
calc[Calc_Perc] = ChannelCalc(id, Calc_Perc, adjustcolor(color, 1.1, 1.2, 1), false);
|
|
calc[Calc_Max] = ChannelCalc(id, Calc_Max, adjustcolor(color, 0.5, 1.2, 1), false);
|
|
|
|
calc[Calc_Zero] = ChannelCalc(id, Calc_Zero, Qt::red, false);
|
|
calc[Calc_LowerThresh] = ChannelCalc(id, Calc_LowerThresh, Qt::blue, false);
|
|
calc[Calc_UpperThresh] = ChannelCalc(id, Calc_UpperThresh, Qt::red, false);
|
|
}
|
|
}
|
|
bool Channel::isNull()
|
|
{
|
|
return (this == &EmptyChannel);
|
|
}
|
|
|
|
ChannelList::ChannelList()
|
|
: m_doctype("channels")
|
|
{
|
|
}
|
|
ChannelList::~ChannelList()
|
|
{
|
|
for (QHash<ChannelID, Channel *>::iterator i = channels.begin(); i != channels.end(); i++) {
|
|
delete i.value();
|
|
}
|
|
}
|
|
bool ChannelList::Load(QString filename)
|
|
{
|
|
QDomDocument doc(m_doctype);
|
|
QFile file(filename);
|
|
qDebug() << "Opening " << filename;
|
|
|
|
if (!file.open(QIODevice::ReadOnly)) {
|
|
qWarning() << "Could not open" << filename;
|
|
return false;
|
|
}
|
|
|
|
QString errorMsg;
|
|
int errorLine;
|
|
|
|
if (!doc.setContent(&file, false, &errorMsg, &errorLine)) {
|
|
qWarning() << "Invalid XML Content in" << filename;
|
|
qWarning() << "Error line" << errorLine << ":" << errorMsg;
|
|
return false;
|
|
}
|
|
|
|
file.close();
|
|
|
|
|
|
QDomElement root = doc.documentElement();
|
|
|
|
if (root.tagName().toLower() != "channels") {
|
|
return false;
|
|
}
|
|
|
|
QString language = root.attribute("language", "en");
|
|
QString version = root.attribute("version", "");
|
|
|
|
if (version.isEmpty()) {
|
|
qWarning() << "No Version Field in" << m_doctype << "Schema, assuming 1.0" << filename;
|
|
version = "1.0";
|
|
}
|
|
|
|
qDebug() << "Processing xml file:" << m_doctype << language << version;
|
|
QDomNodeList grp = root.elementsByTagName("group");
|
|
QDomNode node, n, ch;
|
|
QDomElement e;
|
|
|
|
bool ok;
|
|
int id, linkid;
|
|
QString chantype, scopestr, typestr, name, group, idtxt, details, label, unit, datatypestr,
|
|
defcolor, link;
|
|
ChanType type;
|
|
DataType datatype;
|
|
Channel *chan;
|
|
QColor color;
|
|
//bool multi;
|
|
ScopeType scope;
|
|
int line;
|
|
|
|
for (int i = 0; i < grp.size(); i++) {
|
|
node = grp.at(i);
|
|
group = node.toElement().attribute("name");
|
|
//qDebug() << "Group Name" << group;
|
|
// Why do I have to skip the first node here? (shows up empty)
|
|
n = node.firstChildElement();
|
|
|
|
while (!n.isNull()) {
|
|
line = n.lineNumber();
|
|
e = n.toElement();
|
|
|
|
if (e.nodeName().toLower() != "channel") {
|
|
qWarning() << "Ignoring unrecognized schema type " << e.nodeName() << "in" << filename << "line" <<
|
|
line;
|
|
continue;
|
|
}
|
|
|
|
ch = n.firstChild();
|
|
n = n.nextSibling();
|
|
|
|
idtxt = e.attribute("id");
|
|
id = idtxt.toInt(&ok, 16);
|
|
|
|
if (!ok) {
|
|
qWarning() << "Dodgy ID number " << e.nodeName() << "in" << filename << "line" << line;
|
|
continue;
|
|
}
|
|
|
|
chantype = e.attribute("class", "data").toLower();
|
|
|
|
if (!ChanTypes.contains(chantype)) {
|
|
qWarning() << "Dodgy class " << chantype << "in" << filename << "line" << line;
|
|
continue;
|
|
}
|
|
|
|
type = ChanTypes[chantype];
|
|
|
|
scopestr = e.attribute("scope", "session");
|
|
|
|
if (scopestr.at(0) == QChar('!')) {
|
|
scopestr = scopestr.mid(1);
|
|
//multi=true;
|
|
} //multi=false;
|
|
|
|
if (!Scopes.contains(scopestr)) {
|
|
qWarning() << "Dodgy Scope " << scopestr << "in" << filename << "line" << line;
|
|
continue;
|
|
}
|
|
|
|
scope = Scopes[scopestr];
|
|
name = e.attribute("name", "");
|
|
details = e.attribute("details", "");
|
|
label = e.attribute("label", "");
|
|
|
|
if (name.isEmpty() || details.isEmpty() || label.isEmpty()) {
|
|
qWarning() << "Missing name,details or label attribute in" << filename << "line" << line;
|
|
continue;
|
|
}
|
|
|
|
unit = e.attribute("unit");
|
|
|
|
defcolor = e.attribute("color", "black");
|
|
color = QColor(defcolor);
|
|
|
|
if (!color.isValid()) {
|
|
qWarning() << "Invalid Color " << defcolor << "in" << filename << "line" << line;
|
|
color = Qt::black;
|
|
}
|
|
|
|
datatypestr = e.attribute("type", "").toLower();
|
|
|
|
link = e.attribute("link", "");
|
|
|
|
if (!link.isEmpty()) {
|
|
linkid = link.toInt(&ok, 16);
|
|
|
|
if (!ok) {
|
|
qWarning() << "Dodgy Link ID number " << e.nodeName() << "in" << filename << " line" << line;
|
|
}
|
|
} else { linkid = 0; }
|
|
|
|
if (DataTypes.contains(datatypestr)) {
|
|
datatype = DataTypes[typestr];
|
|
} else {
|
|
qWarning() << "Ignoring unrecognized schema datatype in" << filename << "line" << line;
|
|
continue;
|
|
}
|
|
|
|
if (channels.contains(id)) {
|
|
qWarning() << "Schema already contains id" << id << "in" << filename << "line" << line;
|
|
continue;
|
|
}
|
|
|
|
if (names.contains(name)) {
|
|
qWarning() << "Schema already contains name" << name << "in" << filename << "line" << line;
|
|
continue;
|
|
}
|
|
|
|
chan = new Channel(id, type, MT_UNKNOWN, scope, name, name, details, label, unit, datatype, color, linkid);
|
|
channels[id] = chan;
|
|
names[name] = chan;
|
|
//qDebug() << "Channel" << id << name << label;
|
|
groups[group][name] = chan;
|
|
|
|
if (linkid > 0) {
|
|
if (channels.contains(linkid)) {
|
|
Channel *it = channels[linkid];
|
|
it->m_links.push_back(chan);
|
|
//int i=0;
|
|
} else {
|
|
qWarning() << "Linked channel must be defined first in" << filename << "line" << line;
|
|
}
|
|
}
|
|
|
|
// process children
|
|
while (!ch.isNull()) {
|
|
e = ch.toElement();
|
|
QString sub = ch.nodeName().toLower();
|
|
QString id2str, name2str;
|
|
int id2;
|
|
|
|
if (sub == "option") {
|
|
id2str = e.attribute("id");
|
|
id2 = id2str.toInt(&ok, 10);
|
|
name2str = e.attribute("value");
|
|
//qDebug() << sub << id2 << name2str;
|
|
chan->addOption(id2, name2str);
|
|
} else if (sub == "color") {
|
|
}
|
|
|
|
ch = ch.nextSibling();
|
|
}
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
void ChannelList::add(QString group, Channel *chan)
|
|
{
|
|
Q_ASSERT(chan != nullptr);
|
|
|
|
if (channels.contains(chan->id())) {
|
|
qWarning() << "Channels already contains id" << chan->id() << chan->code();
|
|
Q_ASSERT(false);
|
|
return;
|
|
}
|
|
|
|
if (names.contains(chan->code())) {
|
|
qWarning() << "Channels already contains name" << chan->id() << chan->code();
|
|
Q_ASSERT(false);
|
|
return;
|
|
}
|
|
|
|
channels[chan->id()] = chan;
|
|
names[chan->code()] = chan;
|
|
groups[group][chan->code()] = chan;
|
|
|
|
if (channels.contains(chan->linkid())) {
|
|
Channel *it = channels[chan->linkid()];
|
|
it->m_links.push_back(chan);
|
|
//int i=0;
|
|
} else {
|
|
if (chan->linkid()>0) {
|
|
qWarning() << "Linked channel must be defined first for" << chan->code();
|
|
}
|
|
}
|
|
}
|
|
|
|
bool ChannelList::Save(QString filename)
|
|
{
|
|
if (filename.isEmpty()) {
|
|
filename = p_profile->Get("{DataFolder}/") + "channels.xml";
|
|
}
|
|
|
|
QDomDocument doc("channels");
|
|
|
|
QDomElement droot = doc.createElement(STR_AppName);
|
|
doc.appendChild(droot);
|
|
|
|
QDomElement root = doc.createElement("channels");
|
|
droot.appendChild(root);
|
|
|
|
QHash<QString, QHash<QString, Channel *> >::iterator git;
|
|
QHash<QString, QHash<QString, Channel *> >::iterator groups_end = groups.end();
|
|
|
|
for (git = groups.begin(); git != groups_end; ++git) {
|
|
QHash<QString, Channel *> & chanlist = git.value();
|
|
QHash<QString, Channel *>::iterator it;
|
|
QHash<QString, Channel *>::iterator chend = chanlist.end();
|
|
|
|
QDomElement grp = doc.createElement("group");
|
|
grp.setAttribute("name", git.key());
|
|
root.appendChild(grp);
|
|
|
|
for (it =chanlist.begin(); it!= chend; ++it) {
|
|
Channel * chan = it.value();
|
|
QDomElement cn = doc.createElement("channel");
|
|
cn.setAttribute("id", chan->id());
|
|
cn.setAttribute("code", it.key());
|
|
cn.setAttribute("label", chan->label());
|
|
cn.setAttribute("name", chan->fullname());
|
|
cn.setAttribute("description", chan->description());
|
|
cn.setAttribute("color", chan->defaultColor().name());
|
|
cn.setAttribute("upper", chan->upperThreshold());
|
|
cn.setAttribute("lower", chan->lowerThreshold());
|
|
cn.setAttribute("order", chan->order());
|
|
cn.setAttribute("type", chan->type());
|
|
cn.setAttribute("datatype", chan->datatype());
|
|
QHash<int, QString>::iterator op;
|
|
for (op = chan->m_options.begin(); op!=chan->m_options.end(); ++op) {
|
|
QDomElement c2 = doc.createElement("option");
|
|
c2.setAttribute("key", op.key());
|
|
c2.setAttribute("value", op.value());
|
|
cn.appendChild(c2);
|
|
}
|
|
|
|
//cn.appendChild(doc.createTextNode(i.value().toDateTime().toString("yyyy-MM-dd HH:mm:ss")));
|
|
grp.appendChild(cn);
|
|
}
|
|
|
|
}
|
|
|
|
|
|
QFile file(filename);
|
|
|
|
if (!file.open(QIODevice::WriteOnly)) {
|
|
return false;
|
|
}
|
|
|
|
QTextStream ts(&file);
|
|
ts << doc.toString();
|
|
file.close();
|
|
|
|
return true;
|
|
}
|
|
|
|
}
|
|
|
|
QString ChannelCalc::label()
|
|
{
|
|
QString lab = schema::channel[code].label();
|
|
QString m_label;
|
|
switch(type) {
|
|
case Calc_Min:
|
|
m_label = QString("%1 %2").arg(STR_TR_Min).arg(lab);
|
|
break;
|
|
case Calc_Middle:
|
|
m_label = Day::calcMiddleLabel(code);
|
|
break;
|
|
case Calc_Perc:
|
|
m_label = Day::calcPercentileLabel(code);
|
|
break;
|
|
case Calc_Max:
|
|
m_label = Day::calcMaxLabel(code);
|
|
break;
|
|
case Calc_Zero:
|
|
m_label = QObject::tr("Zero");
|
|
break;
|
|
case Calc_UpperThresh:
|
|
m_label = QString("%1 %2").arg(lab).arg(QObject::tr("Upper Threshold"));
|
|
break;
|
|
case Calc_LowerThresh:
|
|
m_label = QString("%1 %2").arg(lab).arg(QObject::tr("Lower Threshold"));
|
|
break;
|
|
}
|
|
return m_label;
|
|
|
|
}
|
|
|
|
//typedef schema::Channel * ChannelID;
|