Support for loading Hoffrichter Point 3 machine sdcard data
The data of this machine can be read by iMatrix software from Resvent iBreeze serie. Probably this code also support Resvent iBreeze serie. But was only tested with data from the machine in the title.
Events loaded: CPAP_Obstructive, CPAP_Apnea, CPAP_Hypopnea, CPAP_FlowLimit, CPAP_RERA, CPAP_PB, CPAP_Snore
Waveforms loaded: CPAP_MaskPressure, CPAP_FlowRate
Other Events loaded: CPAP_Pressure, CPAP_IPAP, CPAP_EPAP, CPAP_Leak, CPAP_TidalVolume, CPAP_MinuteVent, CPAP_RespRate, CPAP_Ti, CPAP_IE
2023-05-06 08:49:06 +00:00
|
|
|
|
/* SleepLib Resvent Loader Implementation
|
|
|
|
|
*
|
2024-01-13 20:27:48 +00:00
|
|
|
|
* Copyright (c) 2019-2024 The OSCAR Team
|
2024-02-15 19:27:55 +00:00
|
|
|
|
* Copyright (C) 2011-2018 Mark Watkins
|
Support for loading Hoffrichter Point 3 machine sdcard data
The data of this machine can be read by iMatrix software from Resvent iBreeze serie. Probably this code also support Resvent iBreeze serie. But was only tested with data from the machine in the title.
Events loaded: CPAP_Obstructive, CPAP_Apnea, CPAP_Hypopnea, CPAP_FlowLimit, CPAP_RERA, CPAP_PB, CPAP_Snore
Waveforms loaded: CPAP_MaskPressure, CPAP_FlowRate
Other Events loaded: CPAP_Pressure, CPAP_IPAP, CPAP_EPAP, CPAP_Leak, CPAP_TidalVolume, CPAP_MinuteVent, CPAP_RespRate, CPAP_Ti, CPAP_IE
2023-05-06 08:49:06 +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 source code
|
|
|
|
|
* for more details. */
|
|
|
|
|
|
|
|
|
|
#ifndef RESVENT_LOADER_H
|
|
|
|
|
#define RESVENT_LOADER_H
|
|
|
|
|
|
|
|
|
|
#include <QVector>
|
2024-02-15 19:27:55 +00:00
|
|
|
|
#include <QFile>
|
Support for loading Hoffrichter Point 3 machine sdcard data
The data of this machine can be read by iMatrix software from Resvent iBreeze serie. Probably this code also support Resvent iBreeze serie. But was only tested with data from the machine in the title.
Events loaded: CPAP_Obstructive, CPAP_Apnea, CPAP_Hypopnea, CPAP_FlowLimit, CPAP_RERA, CPAP_PB, CPAP_Snore
Waveforms loaded: CPAP_MaskPressure, CPAP_FlowRate
Other Events loaded: CPAP_Pressure, CPAP_IPAP, CPAP_EPAP, CPAP_Leak, CPAP_TidalVolume, CPAP_MinuteVent, CPAP_RespRate, CPAP_Ti, CPAP_IE
2023-05-06 08:49:06 +00:00
|
|
|
|
#include "SleepLib/machine.h" // Base class: MachineLoader
|
|
|
|
|
#include "SleepLib/machine_loader.h"
|
|
|
|
|
#include "SleepLib/profiles.h"
|
2024-02-15 19:27:55 +00:00
|
|
|
|
class EventList;
|
Support for loading Hoffrichter Point 3 machine sdcard data
The data of this machine can be read by iMatrix software from Resvent iBreeze serie. Probably this code also support Resvent iBreeze serie. But was only tested with data from the machine in the title.
Events loaded: CPAP_Obstructive, CPAP_Apnea, CPAP_Hypopnea, CPAP_FlowLimit, CPAP_RERA, CPAP_PB, CPAP_Snore
Waveforms loaded: CPAP_MaskPressure, CPAP_FlowRate
Other Events loaded: CPAP_Pressure, CPAP_IPAP, CPAP_EPAP, CPAP_Leak, CPAP_TidalVolume, CPAP_MinuteVent, CPAP_RespRate, CPAP_Ti, CPAP_IE
2023-05-06 08:49:06 +00:00
|
|
|
|
|
|
|
|
|
//********************************************************************************************
|
|
|
|
|
/// IMPORTANT!!!
|
|
|
|
|
//********************************************************************************************
|
|
|
|
|
// Please INCREMENT the following value when making changes to this loaders implementation.
|
|
|
|
|
//
|
2024-02-15 19:27:55 +00:00
|
|
|
|
const int resvent_data_version = 2;
|
Support for loading Hoffrichter Point 3 machine sdcard data
The data of this machine can be read by iMatrix software from Resvent iBreeze serie. Probably this code also support Resvent iBreeze serie. But was only tested with data from the machine in the title.
Events loaded: CPAP_Obstructive, CPAP_Apnea, CPAP_Hypopnea, CPAP_FlowLimit, CPAP_RERA, CPAP_PB, CPAP_Snore
Waveforms loaded: CPAP_MaskPressure, CPAP_FlowRate
Other Events loaded: CPAP_Pressure, CPAP_IPAP, CPAP_EPAP, CPAP_Leak, CPAP_TidalVolume, CPAP_MinuteVent, CPAP_RespRate, CPAP_Ti, CPAP_IE
2023-05-06 08:49:06 +00:00
|
|
|
|
//
|
|
|
|
|
//********************************************************************************************
|
|
|
|
|
|
2024-02-15 19:27:55 +00:00
|
|
|
|
const QString resvent_class_name = "Resvent";
|
|
|
|
|
|
|
|
|
|
enum class EventType {
|
|
|
|
|
//UsageSec = 1,
|
|
|
|
|
//UnixStart = 2,
|
|
|
|
|
ObstructiveApnea = 17,
|
|
|
|
|
CentralApnea = 18,
|
|
|
|
|
Hypopnea = 19,
|
|
|
|
|
FlowLimitation = 20,
|
|
|
|
|
RERA = 21,
|
|
|
|
|
PeriodicBreathing = 22,
|
|
|
|
|
Snore = 23
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct EventData {
|
|
|
|
|
EventType type;
|
|
|
|
|
QDateTime date_time;
|
|
|
|
|
int duration;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct UsageData {
|
|
|
|
|
QString number{};
|
|
|
|
|
QDateTime start_time{};
|
|
|
|
|
QDateTime end_time{};
|
|
|
|
|
qint32 countAHI = 0;
|
|
|
|
|
qint32 countOAI = 0;
|
|
|
|
|
qint32 countCAI = 0;
|
|
|
|
|
qint32 countAI = 0;
|
|
|
|
|
qint32 countHI = 0;
|
|
|
|
|
qint32 countRERA = 0;
|
|
|
|
|
qint32 countSNI = 0;
|
|
|
|
|
qint32 countBreath = 0;
|
|
|
|
|
qint32 PressureMin = 0;
|
|
|
|
|
qint32 PressureMax = 0;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct ChunkData {
|
|
|
|
|
EventList* event_list;
|
|
|
|
|
uint16_t samples_by_chunk;
|
|
|
|
|
qint64 start_time;
|
|
|
|
|
int total_samples_by_chunk;
|
|
|
|
|
float sample_rate;
|
|
|
|
|
#ifdef TEST_MACROS_ENABLED
|
|
|
|
|
QString chunkName ;
|
|
|
|
|
int chunkDebug = -1;
|
|
|
|
|
#endif
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class UsageData2 {
|
|
|
|
|
public:
|
|
|
|
|
UsageData2();
|
|
|
|
|
virtual ~UsageData2();
|
|
|
|
|
QString number{};
|
|
|
|
|
QDateTime start_time{};
|
|
|
|
|
QDateTime end_time{};
|
|
|
|
|
qint32 countAHI = 0;
|
|
|
|
|
qint32 countOAI = 0;
|
|
|
|
|
qint32 countCAI = 0;
|
|
|
|
|
qint32 countAI = 0;
|
|
|
|
|
qint32 countHI = 0;
|
|
|
|
|
qint32 countRERA = 0;
|
|
|
|
|
qint32 countSNI = 0;
|
|
|
|
|
qint32 countBreath = 0;
|
|
|
|
|
};
|
Support for loading Hoffrichter Point 3 machine sdcard data
The data of this machine can be read by iMatrix software from Resvent iBreeze serie. Probably this code also support Resvent iBreeze serie. But was only tested with data from the machine in the title.
Events loaded: CPAP_Obstructive, CPAP_Apnea, CPAP_Hypopnea, CPAP_FlowLimit, CPAP_RERA, CPAP_PB, CPAP_Snore
Waveforms loaded: CPAP_MaskPressure, CPAP_FlowRate
Other Events loaded: CPAP_Pressure, CPAP_IPAP, CPAP_EPAP, CPAP_Leak, CPAP_TidalVolume, CPAP_MinuteVent, CPAP_RespRate, CPAP_Ti, CPAP_IE
2023-05-06 08:49:06 +00:00
|
|
|
|
|
|
|
|
|
/*! \class ResventLoader
|
|
|
|
|
\brief Importer for Resvent iBreezer and Hoffrichter Point 3
|
|
|
|
|
*/
|
|
|
|
|
class ResventLoader : public CPAPLoader
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
ResventLoader();
|
|
|
|
|
virtual ~ResventLoader();
|
|
|
|
|
|
|
|
|
|
//! \brief Detect if the given path contains a valid Folder structure
|
|
|
|
|
virtual bool Detect(const QString & path);
|
|
|
|
|
|
|
|
|
|
//! \brief Look up machine model information of ResMed file structure stored at path
|
|
|
|
|
virtual MachineInfo PeekInfo(const QString & path);
|
|
|
|
|
|
|
|
|
|
//! \brief Scans for ResMed SD folder structure signature, and loads any new data if found
|
|
|
|
|
virtual int Open(const QString &);
|
|
|
|
|
|
|
|
|
|
//! \brief Returns the version number of this Resvent loader
|
|
|
|
|
virtual int Version() { return resvent_data_version; }
|
|
|
|
|
|
|
|
|
|
//! \brief Returns the Machine class name of this loader. ("Resvent")
|
|
|
|
|
virtual const QString &loaderName() { return resvent_class_name; }
|
|
|
|
|
|
|
|
|
|
//! \brief Register the ResmedLoader with the list of other machine loaders
|
|
|
|
|
static void Register();
|
|
|
|
|
|
|
|
|
|
virtual MachineInfo newInfo() {
|
2024-02-15 19:27:55 +00:00
|
|
|
|
return MachineInfo(MT_CPAP, 0, resvent_class_name, QObject::tr("Resvent"), QString(), QString(), QString(), QObject::tr("iBreeze"), QDateTime::currentDateTime(), resvent_data_version);
|
Support for loading Hoffrichter Point 3 machine sdcard data
The data of this machine can be read by iMatrix software from Resvent iBreeze serie. Probably this code also support Resvent iBreeze serie. But was only tested with data from the machine in the title.
Events loaded: CPAP_Obstructive, CPAP_Apnea, CPAP_Hypopnea, CPAP_FlowLimit, CPAP_RERA, CPAP_PB, CPAP_Snore
Waveforms loaded: CPAP_MaskPressure, CPAP_FlowRate
Other Events loaded: CPAP_Pressure, CPAP_IPAP, CPAP_EPAP, CPAP_Leak, CPAP_TidalVolume, CPAP_MinuteVent, CPAP_RespRate, CPAP_Ti, CPAP_IE
2023-05-06 08:49:06 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual void initChannels();
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Now for some CPAPLoader overrides
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
2024-02-15 19:27:55 +00:00
|
|
|
|
virtual QString PresReliefLabel() { return QObject::tr("IPR: "); }
|
Support for loading Hoffrichter Point 3 machine sdcard data
The data of this machine can be read by iMatrix software from Resvent iBreeze serie. Probably this code also support Resvent iBreeze serie. But was only tested with data from the machine in the title.
Events loaded: CPAP_Obstructive, CPAP_Apnea, CPAP_Hypopnea, CPAP_FlowLimit, CPAP_RERA, CPAP_PB, CPAP_Snore
Waveforms loaded: CPAP_MaskPressure, CPAP_FlowRate
Other Events loaded: CPAP_Pressure, CPAP_IPAP, CPAP_EPAP, CPAP_Leak, CPAP_TidalVolume, CPAP_MinuteVent, CPAP_RespRate, CPAP_Ti, CPAP_IE
2023-05-06 08:49:06 +00:00
|
|
|
|
|
|
|
|
|
virtual ChannelID PresReliefMode();
|
|
|
|
|
virtual ChannelID PresReliefLevel();
|
|
|
|
|
virtual ChannelID CPAPModeChannel();
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
2024-02-15 19:27:55 +00:00
|
|
|
|
private:
|
|
|
|
|
// OSCAR CPAP MODE
|
|
|
|
|
enum CPAPMode myCPAPMode = MODE_UNKNOWN;
|
|
|
|
|
|
|
|
|
|
//Resvent Loader Mode
|
|
|
|
|
//These must start at zero. and increment. order is required for initChannels function
|
|
|
|
|
enum RESVENT_PAP_MODE {
|
|
|
|
|
RESVENT_PAP_CPAP0 = 0
|
|
|
|
|
, RESVENT_PAP_APAP1 = 1
|
|
|
|
|
};
|
|
|
|
|
enum RESVENT_PAP_MODE myRESVENT_PAP_MODE = RESVENT_PAP_CPAP0;
|
|
|
|
|
|
|
|
|
|
// Revent Devce Mode. value defined in file CONFIG/TCTRL VentMOde
|
|
|
|
|
enum RESVENT_DEVICE_MODE{
|
|
|
|
|
RESVENT_DEVICE_APAP = 3,
|
|
|
|
|
//RESVENT_DEVICE_CPAP = ? // needs to be verified.
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
QMap<QString,QString> configSettings ;
|
|
|
|
|
|
|
|
|
|
void readAllConfigFiles(const QString & homePath ,QMap<QString,QString>& ) ;
|
|
|
|
|
void readConfigFile(const QString & configFile, QMap<QString,QString>&);
|
|
|
|
|
QVector<QDate> GetSessionsDate(const QString& dirpath);
|
|
|
|
|
QString GetSessionFolder(const QString& dirpath, const QDate& session_date);
|
|
|
|
|
int LoadSession(const QString& dirpath, const QDate& session_date, Machine* machine);
|
|
|
|
|
void LoadEvents(const QString& session_folder_path, Session* session, const UsageData& usage );
|
|
|
|
|
void UpdateEvents(EventType event_type, const QMap<EventType, QVector<EventData>>& events, Session* session);
|
|
|
|
|
bool VerifyEvent(EventData& eventData);
|
|
|
|
|
EventList* GetEventList(const QString& name, Session* session, float sample_rate = 0.0) ;
|
|
|
|
|
void ReadWaveFormsHeaders(QFile& f, QVector<ChunkData>& wave_forms, Session* session, const UsageData& usage);
|
|
|
|
|
void LoadOtherWaveForms(const QString& session_folder_path, Session* session, const UsageData& usage);
|
|
|
|
|
void LoadWaveForms(const QString& session_folder_path, Session* session, const UsageData& usage);
|
|
|
|
|
void LoadStats(const UsageData& /*usage_data*/, Session* session );
|
|
|
|
|
UsageData ReadUsage(const QString& session_folder_path, const QString& usage_number);
|
|
|
|
|
QVector<UsageData> GetDifferentUsage(const QString& session_folder_path);
|
Support for loading Hoffrichter Point 3 machine sdcard data
The data of this machine can be read by iMatrix software from Resvent iBreeze serie. Probably this code also support Resvent iBreeze serie. But was only tested with data from the machine in the title.
Events loaded: CPAP_Obstructive, CPAP_Apnea, CPAP_Hypopnea, CPAP_FlowLimit, CPAP_RERA, CPAP_PB, CPAP_Snore
Waveforms loaded: CPAP_MaskPressure, CPAP_FlowRate
Other Events loaded: CPAP_Pressure, CPAP_IPAP, CPAP_EPAP, CPAP_Leak, CPAP_TidalVolume, CPAP_MinuteVent, CPAP_RespRate, CPAP_Ti, CPAP_IE
2023-05-06 08:49:06 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // RESVENT_LOADER_H
|