diff --git a/SleepLib/loader_plugins/resmed_loader.cpp b/SleepLib/loader_plugins/resmed_loader.cpp new file mode 100644 index 00000000..c03c4ae2 --- /dev/null +++ b/SleepLib/loader_plugins/resmed_loader.cpp @@ -0,0 +1,100 @@ +/* + +SleepLib ResMed Loader Implementation + +Author: Mark Watkins +License: GPL +*/ + +#include +#include +#include +#include +#include +#include + +#include "resmed_loader.h" +#include "SleepLib/session.h" + +ResmedLoader::ResmedLoader() +{ +} +ResmedLoader::~ResmedLoader() +{ +} + +Machine *ResmedLoader::CreateMachine(QString serial,Profile *profile) +{ + qDebug(("Create ResMed Machine "+serial).toLatin1()); + assert(profile!=NULL); + vector ml=profile->GetMachines(MT_CPAP); + bool found=false; + for (vector::iterator i=ml.begin(); i!=ml.end(); i++) { + if (((*i)->GetClass()=="ResMed") && ((*i)->properties["Serial"]==serial)) { + ResmedList[serial]=*i; //static_cast(*i); + found=true; + break; + } + } + if (found) return ResmedList[serial]; + + Machine *m=new CPAP(profile,0); + + ResmedList[serial]=m; + profile->AddMachine(m); + + m->properties["Serial"]=serial; + + return m; + +} + +bool ResmedLoader::Open(QString & path,Profile *profile) +{ + + QString newpath; + + QString dirtag="DATALOG"; + if (path.endsWith("/"+dirtag)) { + newpath=path; + } else { + newpath=path+"/"+dirtag; + } + + QDir dir(newpath); + + if ((!dir.exists() || !dir.isReadable())) + return 0; + + qDebug(("ResmedLoader::Open newpath="+newpath).toLatin1()); + dir.setFilter(QDir::NoDotAndDotDot | QDir::Dirs | QDir::Files | QDir::Hidden | QDir::NoSymLinks); + dir.setSorting(QDir::Name); + QFileInfoList flist=dir.entryInfoList(); + + + list SerialNumbers; + list::iterator sn; + + for (int i=0;i +License: GPL +*/ + +#ifndef RESMED_LOADER_H +#define RESMED_LOADER_H +//#include +//using namespace std; +#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=1; +// +//******************************************************************************************** + +const QString resmed_class_name="ResMed"; + +class ResmedLoader : public MachineLoader +{ +public: + ResmedLoader(); + virtual ~ResmedLoader(); + virtual bool Open(QString & path,Profile *profile); + + virtual int Version() { return resmed_data_version; }; + virtual const QString & ClassName() { return resmed_class_name; }; + Machine *CreateMachine(QString serial,Profile *profile); + + static void Register(); +protected: + map ResmedList; +}; + +#endif // RESMED_LOADER_H diff --git a/SleepyHeadQT.pro b/SleepyHeadQT.pro index a5f2ceaf..f9c3d394 100644 --- a/SleepyHeadQT.pro +++ b/SleepyHeadQT.pro @@ -56,7 +56,8 @@ SOURCES += main.cpp\ Graphs/glcommon.cpp \ Graphs/gTitle.cpp \ Graphs/gCandleStick.cpp \ - Graphs/gBarChart.cpp + Graphs/gBarChart.cpp \ + SleepLib/loader_plugins/resmed_loader.cpp HEADERS += \ SleepLib/binary_file.h \ @@ -90,7 +91,8 @@ HEADERS += \ Graphs/glcommon.h \ Graphs/gTitle.h \ Graphs/gCandleStick.h \ - Graphs/gBarChart.h + Graphs/gBarChart.h \ + SleepLib/loader_plugins/resmed_loader.h FORMS += \ daily.ui \ diff --git a/docs/index.html b/docs/index.html index e05a15d3..e3c56989 100644 --- a/docs/index.html +++ b/docs/index.html @@ -7,11 +7,10 @@ p,a,td,body { font-size: 14px } - +
-

Welcome to SleepyHead

-

Welcome to SleepyHead


This software assists you in reviewing data at home for your CPAP Machine, Oximeter, Sleep Stage monitors, as well as help you track general issues related to sleep health.

Currenly supports the following machines:

  • Philips Respironics System One
  • @@ -30,8 +29,8 @@ p,a,td,body { font-size: 14px }

    Copyright: ©2011 Mark Watkins (jedimark)

    License: This software is released freely under the GNU Public License.

    This software comes with absolutely no warranty, either express of implied. It comes with no guarantee of fitness for any particular purpose. -No guarantees are made to the accuracy or usefulness of any data displayed.

    -

    It would very unwise to rely soley on this software for making medical decisions. Talk to your doctor.

    +No guarantees are made to the accuracy or usefulness of any data displayed.

    +

    It would very unwise to rely soley on this software when making medical decisions. Talk to your doctor.

    diff --git a/main.cpp b/main.cpp index 0cffd92a..dc6cdbc4 100644 --- a/main.cpp +++ b/main.cpp @@ -14,7 +14,7 @@ #include "SleepLib/loader_plugins/prs1_loader.h" #include "SleepLib/loader_plugins/cms50_loader.h" #include "SleepLib/loader_plugins/zeo_loader.h" - +#include "SleepLib/loader_plugins/resmed_loader.h" int main(int argc, char *argv[]) @@ -33,6 +33,7 @@ int main(int argc, char *argv[]) PRS1Loader::Register(); CMS50Loader::Register(); ZEOLoader::Register(); + ResmedLoader::Register();