OSCAR-code/sleepyhead/SleepLib/loader_plugins/resmed_loader.h

229 lines
7.4 KiB
C
Raw Normal View History

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
* vim: set ts=8 sts=4 et sw=4 tw=99:
*
* SleepLib RESMED Loader Header
*
* 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. */
2011-06-28 02:21:38 +00:00
#ifndef RESMED_LOADER_H
#define RESMED_LOADER_H
//#include <map>
//using namespace std;
#include <QVector>
2011-06-28 02:21:38 +00:00
#include "SleepLib/machine.h" // Base class: MachineLoader
#include "SleepLib/machine_loader.h"
#include "SleepLib/profiles.h"
//********************************************************************************************
/// IMPORTANT!!!
//********************************************************************************************
// Please INCREMENT the following value when making changes to this loaders implementation.
//
const int resmed_data_version=6;
2011-06-28 02:21:38 +00:00
//
//********************************************************************************************
2011-12-21 14:24:09 +00:00
const QString resmed_class_name=STR_MACH_ResMed;
2011-06-28 02:21:38 +00:00
/*! \struct EDFHeader
\brief Represents the EDF+ header structure, used as a place holder while processing the text data.
\note More information on the EDF+ file format can be obtained from http://edfplus.info
*/
struct EDFHeader {
char version[8];
char patientident[80];
char recordingident[80];
char datetime[16];
char num_header_bytes[8];
char reserved[44];
char num_data_records[8];
char dur_data_records[8];
char num_signals[4];
}
#ifndef BUILD_WITH_MSVC
__attribute__ ((packed))
#endif
;
const int EDFHeaderSize=sizeof(EDFHeader);
/*! \struct EDFSignal
\brief Contains information about a single EDF+ Signal
\note More information on the EDF+ file format can be obtained from http://edfplus.info
*/
2011-06-29 14:19:38 +00:00
struct EDFSignal {
public:
//! \brief Name of this Signal
2011-06-29 14:19:38 +00:00
QString label;
//! \brief Tranducer Type (source of the data, usually blank)
2011-06-29 14:19:38 +00:00
QString transducer_type;
//! \brief The units of measurements represented by this signal
2011-06-29 14:19:38 +00:00
QString physical_dimension;
//! \brief The minimum limits of the ungained data
EventDataType physical_minimum;
//! \brief The maximum limits of the ungained data
EventDataType physical_maximum;
//! \brief The minimum limits of the data with gain and offset applied
EventDataType digital_minimum;
//! \brief The maximum limits of the data with gain and offset applied
EventDataType digital_maximum;
//! \brief Raw integer data is multiplied by this value
EventDataType gain;
//! \brief This value is added to the raw data
EventDataType offset;
//! \brief Any prefiltering methods used (usually blank)
2011-06-29 14:19:38 +00:00
QString prefiltering;
//! \brief Number of records
2011-06-29 14:19:38 +00:00
long nr;
//! \brief Reserved (usually blank)
2011-06-29 14:19:38 +00:00
QString reserved;
//! \brief Pointer to the signals sample data
2011-06-29 14:19:38 +00:00
qint16 * data;
//! \brief a non-EDF extra used internally to count the signal data
2011-06-29 16:19:57 +00:00
int pos;
2011-06-29 14:19:38 +00:00
};
/*! \class EDFParser
\author Mark Watkins <jedimark64_at_users.sourceforge.net>
\brief Parse an EDF+ data file into a list of EDFSignal's
\note More information on the EDF+ file format can be obtained from http://edfplus.info
*/
2011-06-29 14:19:38 +00:00
class EDFParser
{
public:
//! \brief Constructs an EDFParser object, opening the filename if one supplied
EDFParser(QString filename="");
2011-06-29 14:19:38 +00:00
~EDFParser();
//! \brief Open the EDF+ file, and read it's header
2011-06-29 14:19:38 +00:00
bool Open(QString name);
//! \brief Read n bytes of 8 bit data from the EDF+ data stream
QString Read(unsigned n);
//! \brief Read 16 bit word of data from the EDF+ data stream
2011-06-29 16:19:57 +00:00
qint16 Read16();
2011-06-29 14:19:38 +00:00
//! \brief Vector containing the list of EDFSignals contained in this edf file
QVector<EDFSignal> edfsignals;
//! \brief An by-name indexed into the EDFSignal data
2011-09-17 12:39:00 +00:00
QHash<QString,EDFSignal *> lookup;
//! \brief Look up signal names by SleepLib ChannelID.. A little "ResMed"ified.. :/
EDFSignal * lookupSignal(ChannelID);
EDFSignal * lookupName(QString name);
2011-06-29 14:19:38 +00:00
//! \brief Returns the number of signals contained in this EDF file
2011-07-27 09:21:53 +00:00
long GetNumSignals() { return num_signals; }
//! \brief Returns the number of data records contained per signal.
2011-07-27 09:21:53 +00:00
long GetNumDataRecords() { return num_data_records; }
//! \brief Returns the duration represented by this EDF file (in milliseconds)
2011-07-27 09:21:53 +00:00
qint64 GetDuration() { return dur_data_record; }
//! \brief Returns the patientid field from the EDF header
2011-07-27 09:21:53 +00:00
QString GetPatient() { return patientident; }
2011-09-17 12:39:00 +00:00
//! \brief Parse the EDF+ file into the list of EDFSignals.. Must be call Open(..) first.
2011-06-29 14:19:38 +00:00
bool Parse();
char *buffer;
//! \brief The EDF+ files header structure, used as a place holder while processing the text data.
EDFHeader header;
2011-06-29 14:19:38 +00:00
QString filename;
long filesize;
long datasize;
long pos;
2011-06-29 14:19:38 +00:00
long version;
long num_header_bytes;
long num_data_records;
qint64 dur_data_record;
2011-06-29 14:19:38 +00:00
long num_signals;
QString patientident;
QString recordingident;
QString serialnumber;
qint64 startdate;
2011-07-03 02:43:50 +00:00
qint64 enddate;
2011-06-29 14:19:38 +00:00
QString reserved44;
};
/*! \class ResmedLoader
\brief Importer for ResMed S9 Data
*/
2011-06-28 02:21:38 +00:00
class ResmedLoader : public MachineLoader
{
public:
ResmedLoader();
virtual ~ResmedLoader();
//! \brief Scans for S9 SD folder structure signature, and loads any new data if found
2011-07-15 13:30:41 +00:00
virtual int Open(QString & path,Profile *profile);
2011-06-28 02:21:38 +00:00
//! \brief Returns the version number of this ResMed loader
2011-07-27 09:21:53 +00:00
virtual int Version() { return resmed_data_version; }
//! \brief Returns the Machine class name of this loader. ("ResMed")
2011-07-27 09:21:53 +00:00
virtual const QString & ClassName() { return resmed_class_name; }
//! \brief Converts EDFSignal data to time delta packed EventList, and adds to Session
void ToTimeDelta(Session *sess,EDFParser &edf, EDFSignal & es, ChannelID code, long recs,qint64 duration,EventDataType min=0,EventDataType max=0,bool square=false);
2011-06-29 20:30:23 +00:00
//! \brief Create Machine record, and index it by serial number
2011-06-28 02:21:38 +00:00
Machine *CreateMachine(QString serial,Profile *profile);
//! \brief Register the ResmedLoader with the list of other machine loaders
2011-06-28 02:21:38 +00:00
static void Register();
protected:
QHash<QString,Machine *> ResmedList;
//! \brief Parse the EVE Event annotation data, and save to Session * sess
//! This contains all Hypopnea, Obstructive Apnea, Central and Apnea codes
2011-07-01 10:10:44 +00:00
bool LoadEVE(Session *sess,EDFParser &edf);
//! \brief Parse the BRP High Resolution data, and save to Session * sess
//! This contains Flow Rate, Mask Pressure, and Resp. Event data
2011-07-01 10:10:44 +00:00
bool LoadBRP(Session *sess,EDFParser &edf);
//! \brief Parse the SAD Pulse oximetry attachment data, and save to Session * sess
//! This contains Pulse Rate and SpO2 Oxygen saturation data
2011-07-01 10:10:44 +00:00
bool LoadSAD(Session *sess,EDFParser &edf);
2011-06-29 14:19:38 +00:00
//! \brief Parse the PRD low resolution data, and save to Session * sess
//! This contains the Pressure, Leak, Respiratory Rate, Minute Ventilation, Tidal Volume, etc..
bool LoadPLD(Session *sess,EDFParser &edf);
QString backup(QString file, QString backup_path, bool compress=false);
QMap<SessionID,QStringList> sessfiles;
#ifdef DEBUG_EFFICIENCY
QHash<ChannelID,qint64> channel_efficiency;
QHash<ChannelID,qint64> channel_time;
#endif
2011-06-28 02:21:38 +00:00
};
#endif // RESMED_LOADER_H