OSCAR-code/oscar/SleepLib/loader_plugins/edfparser.h

178 lines
6.4 KiB
C
Raw Normal View History

/* EDF Parser Header
2018-04-25 15:22:29 +00:00
*
* Copyright (c) 2019 The OSCAR Team
2018-04-25 15:22:29 +00:00
* Copyright (c) 2011-2018 Mark Watkins <mark@jedimark.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 source code
* for more details. */
2018-04-25 15:22:29 +00:00
#ifndef EDFPARSER_H
#define EDFPARSER_H
#include <QString>
#include <QVector>
#include <QHash>
#include <QList>
#include "SleepLib/common.h"
const QString STR_ext_EDF = "edf";
const QString STR_ext_gz = ".gz";
2019-07-22 21:01:47 +00:00
const char AnnoSep = 20;
const char AnnoDurMark = 21;
const char AnnoEnd = 0;
2018-04-25 15:22:29 +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 EDFHeaderRaw {
2018-04-25 15:22:29 +00:00
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 _MSC_VER
2018-04-25 15:22:29 +00:00
__attribute__((packed))
#endif
;
const int EDFHeaderSize = sizeof(EDFHeaderRaw);
2018-04-25 15:22:29 +00:00
/*! \struct EDFHeaderQT
\brief Contains the QT version of the EDF header information
*/
struct EDFHeaderQT {
public:
long version;
QString patientident;
QString recordingident;
QDateTime startdate_orig;
long num_header_bytes;
QString reserved44;
long num_data_records;
double duration_Seconds;
int num_signals;
};
2018-04-25 15:22:29 +00:00
/*! \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
*/
struct EDFSignal {
public:
2019-08-28 03:59:51 +00:00
// virtual ~EDFSignal();
QString label; //! \brief Name of this Signal
QString transducer_type; //! \brief Tranducer Type (source of the data, usually blank)
QString physical_dimension; //! \brief The units of measurements represented by this signal
EventDataType physical_minimum; //! \brief The minimum limits of the ungained data
EventDataType physical_maximum; //! \brief The maximum limits of the ungained data
EventDataType digital_minimum; //! \brief The minimum limits of the data with gain and offset applied
EventDataType digital_maximum; //! \brief The maximum limits of the data with gain and offset applied
EventDataType gain; //! \brief Raw integer data is multiplied by this value
EventDataType offset; //! \brief This value is added to the raw data
QString prefiltering; //! \brief Any prefiltering methods used (usually blank)
long sampleCnt; //! \brief Number of samples per record
QString reserved; //! \brief Reserved (usually blank)
qint16 * dataArray; //! \brief Pointer to the signals sample data
// int pos; //! \brief a non-EDF extra used internally to count the signal data
2018-04-25 15:22:29 +00:00
};
/*! \class Annotation
\author Phil Olynyk
\brief Hold the annotation text from an EDF file
*/
class Annotation
{
public:
Annotation() { duration = -1.0; };
Annotation( double off, double dur, QString tx ) {
offset = off;
duration = dur;
text = tx;
};
virtual ~Annotation() {};
double offset;
double duration;
QString text;
};
2018-04-25 15:22:29 +00:00
/*! \class EDFInfo
\author Phil Olynyk
\author Mark Watkins <mark@jedimark.net>
2018-04-25 15:22:29 +00:00
\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
*/
class EDFInfo
2018-04-25 15:22:29 +00:00
{
public:
//! \brief Constructs an EDFParser object, opening the filename if one supplied
EDFInfo();
2018-04-25 15:22:29 +00:00
virtual ~EDFInfo();
2018-04-25 15:22:29 +00:00
virtual bool Open(const QString & name); //! \brief Open the EDF+ file, and read it's header
virtual bool Parse(); //! \brief Parse the EDF+ file into the EDFheaderQT. Must call Open(..) first.
2018-04-25 15:22:29 +00:00
2019-08-28 03:59:51 +00:00
virtual bool parseHeader( EDFHeaderRaw * hdrPtr ); //! \brief parse just the edf header for duration, etc
virtual EDFSignal * lookupLabel(const QString & name, int index=0); //! \brief Return a ptr to the i'th signal with that name
virtual EDFHeaderQT * GetHeader( const QString & name); //! \brief returna pointer to the header block
2018-04-25 15:22:29 +00:00
virtual long GetNumSignals() { return edfHdr.num_signals; } //! \brief Returns the number of signals contained in this EDF file
2018-04-25 15:22:29 +00:00
virtual long GetNumDataRecords() { return edfHdr.num_data_records; } //! \brief Returns the number of data records contained per signal.
2018-04-25 15:22:29 +00:00
virtual double GetDuration() { return edfHdr.duration_Seconds; } //! \brief Returns the duration represented by this EDF file
2018-04-25 15:22:29 +00:00
virtual QString GetPatient() { return edfHdr.patientident; } //! \brief Returns the patientid field from the EDF header
2018-04-25 15:22:29 +00:00
// The data members follow
2018-04-25 15:22:29 +00:00
QString filename; //! \brief For debug and error messages
EDFHeaderQT edfHdr; //! \brief The header in a QT friendly form
2018-04-25 15:22:29 +00:00
QVector<EDFSignal> edfsignals; //! \brief Holds the EDFSignals contained in this edf file
2018-04-25 15:22:29 +00:00
QVector< QVector<Annotation> > annotations; //! \brief Holds the Annotaions for this EDF file
2018-04-25 15:22:29 +00:00
QStringList signal_labels; //! \brief An by-name indexed into the EDFSignal data
QHash<QString, QList<EDFSignal *> > signalList; //! \brief ResMed sometimes re-uses the SAME signal name
// the following could be private
private:
QVector<Annotation> ReadAnnotations( const char * data, int charLen ); //! \brief Create an Annotaion vector from the signal values
QString ReadBytes(unsigned n); //! \brief Read n bytes of 8 bit data from the EDF+ data stream
qint16 Read16(); //! \brief Read 16 bit word of data from the EDF+ data stream
//! \brief This is the array holding the EDF file data
QByteArray fileData;
//! \brief The EDF+ files header structure, used as a place holder while processing the text data.
EDFHeaderRaw *hdrPtr;
//! \brief This is the array of signal descriptors and values
char *signalPtr;
long filesize;
long datasize;
long pos;
bool eof;
2018-04-25 15:22:29 +00:00
};
#endif // EDFPARSER_H