/* SleepLib Fisher & Paykel SleepStyle Loader Implementation * * Copyright (c) 2020 The Oscar Team (info@oscar-team.org) * 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 SLEEPSTYLE_LOADER_H #define SLEEPSTYLE_LOADER_H #include #include "SleepLib/machine.h" #include "SleepLib/machine_loader.h" #include "SleepLib/profiles.h" //******************************************************************************************** /// IMPORTANT!!! //******************************************************************************************** // Please INCREMENT the following value when making changes to this loaders implementation. // const int sleepstyle_data_version = 1; // //******************************************************************************************** /*! \class SleepStyle \brief F&P SleepStyle customized machine object */ class SleepStyle: public CPAP { public: SleepStyle(Profile *, MachineID id = 0); virtual ~SleepStyle(); }; const int sleepstyle_load_buffer_size = 1024 * 1024; extern ChannelID INTP_SmartFlexMode; extern ChannelID SS_SmartFlexLevel; extern ChannelID SS_SenseAwakeLevel; const QString sleepstyle_class_name = STR_MACH_SleepStyle; /*! \class SleepStyleLoader \brief Loader for Fisher & Paykel SleepStyle data This is only relatively recent addition and still needs more work */ class SleepStyleLoader : public CPAPLoader { Q_OBJECT public: SleepStyleLoader(); virtual ~SleepStyleLoader(); //! \brief Detect if the given path contains a valid Folder structure virtual bool Detect(const QString & path); //! \brief Scans path for F&P SleepStyle data signature, and Loads any new data virtual int Open(const QString & path); int OpenMachine(Machine *mach, const QString & path, const QString & ssPath); bool OpenSummary(Machine *mach, const QString & path); bool OpenDetail(Machine *mach, const QString & path); // bool OpenFLW(Machine *mach, const QString & filename); bool OpenRealTime(Machine *mach, const QString & fname, const QString & filename); //! \brief Returns SleepLib database version of this F&P SleepStyle loader virtual int Version() { return sleepstyle_data_version; } //! \brief Returns the machine class name of this CPAP machine, "SleepStyle" virtual const QString & loaderName() { return sleepstyle_class_name; } // ! \brief Creates a machine object, indexed by serial number //Machine *CreateMachine(QString serial); QString getSerialPath () {return serialPath;} void setSerialPath (QString sp) {serialPath = sp;} bool backupData (Machine * mach, const QString & path); SessionID findSession (SessionID sid); void initChannels(); virtual MachineInfo newInfo() { return MachineInfo(MT_CPAP, 0, sleepstyle_class_name, QObject::tr("Fisher & Paykel"), QString(), QString(), QString(), QObject::tr("SleepStyle"), QDateTime::currentDateTime(), sleepstyle_data_version); } //! \brief Registers this MachineLoader with the master list, so F&P Icon data can load static void Register(); //////////////////////////////////////////////////////////////////////////////////////////////////////////// // Now for some CPAPLoader overrides //////////////////////////////////////////////////////////////////////////////////////////////////////////// virtual QString presRelType() { return QObject::tr(""); } // might not need this one virtual ChannelID presRelSet() { return NoChannel; } virtual ChannelID presRelLevel() { return NoChannel; } //////////////////////////////////////////////////////////////////////////////////////////////////////////// protected: // QDateTime readFPDateTime(quint8 *data); QString last; QHash MachList; QMap Sessions; QMultiMap SessDate; //QMap > FLWMapFlow; //QMap > FLWMapLeak; //QMap > FLWMapPres; //QMap > FLWDuration; //QMap > FLWTS; //QMap FLWDate; QString serialPath; // fully qualified path to the input data, ...SDCard.../FPHCARE/ICON/serial // QString serial; // Serial number bool rebuild_from_backups = false; bool create_backups = true; unsigned char *m_buffer; }; #endif // SLEEPSTYLE_LOADER_H