/* SleepLib RESMED Loader Header * * Copyright (c) 2019-2020 The OSCAR Team * Copyright (C) 2011-2018 Mark Watkins * * 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 RESMED_LOADER_H #define RESMED_LOADER_H #include #include "SleepLib/machine.h" // Base class: MachineLoader #include "SleepLib/machine_loader.h" #include "SleepLib/profiles.h" #include "SleepLib/loader_plugins/edfparser.h" #include "SleepLib/loader_plugins/resmed_EDFinfo.h" //******************************************************************************************** /// IMPORTANT!!! //******************************************************************************************** // Please INCREMENT the following value when making changes to this loaders implementation. // const int resmed_data_version = 12; // //******************************************************************************************** class ResmedLoader; class ResMedDay { public: ResMedDay( QDate d) : date(d) {} QDate date; STRRecord str; QHash files; // key is filename, value is fullpath }; typedef void (*ResDaySaveCallback)(ResmedLoader* loader, Session* session); class ResDayTask:public ImportTask { public: ResDayTask(ResmedLoader * l, Machine * m, ResMedDay * d, ResDaySaveCallback s): reimporting(false), loader(l), mach(m), resday(d), save(s) {} virtual ~ResDayTask() {} virtual void run(); bool reimporting; protected: ResmedLoader * loader; Machine * mach; ResMedDay * resday; ResDaySaveCallback save; }; /*! \class ResmedLoader \brief Importer for ResMed S9 Data */ class ResmedLoader : public CPAPLoader { Q_OBJECT friend class ResmedImport; friend class ResmedImportStage2; public: ResmedLoader(); virtual ~ResmedLoader(); //! \brief Register the ResmedLoader with the list of other machine loaders static void Register(); //! \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); virtual void checkSummaryDay( ResMedDay & resday, QDate date, Machine * mach ); //! \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 ResMed loader virtual int Version() { return resmed_data_version; } //! \brief Returns the Machine class name of this loader. ("ResMed") virtual const QString &loaderName() { return resmed_class_name; } virtual MachineInfo newInfo() { return MachineInfo(MT_CPAP, 0, resmed_class_name, QObject::tr("ResMed"), QString(), QString(), QString(), QObject::tr("S9"), QDateTime::currentDateTime(), resmed_data_version); } virtual void initChannels(); //! \brief Converts EDFSignal data to time delta packed EventList, and adds to Session void ToTimeDelta(Session *sess, ResMedEDFInfo &edf, EDFSignal &es, ChannelID code, long recs, qint64 duration, EventDataType min = 0, EventDataType max = 0, bool square = false); //! \brief Parse the EVE Event annotation data, and save to Session * sess //! This contains all Hypopnea, Obstructive Apnea, Central and Apnea codes bool LoadEVE(Session *sess, const QString & path); //! \brief Parse the CSL Event annotation data, and save to Session * sess //! This contains Cheyne Stokes Respiration flagging on the AirSense 10 bool LoadCSL(Session *sess, const QString & path); //! \brief Parse the BRP High Resolution data, and save to Session * sess //! This contains Flow Rate, Mask Pressure, and Resp. Event data bool LoadBRP(Session *sess, const QString & path); //! \brief Parse the SAD Pulse oximetry attachment data, and save to Session * sess //! This contains Pulse Rate and SpO2 Oxygen saturation data bool LoadSAD(Session *sess, const QString & path); //! \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, const QString & path); //////////////////////////////////////////////////////////////////////////////////////////////////////////// // Now for some CPAPLoader overrides //////////////////////////////////////////////////////////////////////////////////////////////////////////// virtual QString PresReliefLabel() { return QObject::tr("EPR: "); } virtual ChannelID PresReliefMode() ; virtual ChannelID PresReliefLevel() ; virtual ChannelID CPAPModeChannel() ; //////////////////////////////////////////////////////////////////////////////////////////////////////////// volatile int sessionCount; static void SaveSession(ResmedLoader* loader, Session* session); ResDaySaveCallback saveCallback; int Open(const QString & dirpath, ResDaySaveCallback s); protected: //! \brief The STR.edf file is a unique edf file with many signals void ProcessSTRfiles(Machine *, QMap &, QDate); //! \brief Scan for new files to import, group into sessions and add to task que int ScanFiles(Machine * mach, const QString & datalog_path, QDate firstImport); //! \brief Write a backup copy to the backup path QString Backup(const QString & file, const QString & backup_path); // The data members // QMap sessfiles; // QMap strsess; // QMap > strdate; QMap resdayList; #ifdef DEBUG_EFFICIENCY QHash channel_efficiency; QHash channel_time; volatile qint64 timeInLoadBRP; volatile qint64 timeInLoadPLD; volatile qint64 timeInLoadEVE; volatile qint64 timeInLoadCSL; volatile qint64 timeInLoadSAD; volatile qint64 timeInEDFOpen; volatile qint64 timeInEDFInfo; volatile qint64 timeInAddWaveform; volatile qint64 timeInTimeDelta; QMutex timeMutex; #endif }; #endif // RESMED_LOADER_H