2011-06-26 08:30:44 +00:00
|
|
|
/*
|
|
|
|
|
|
|
|
SleepLib PRS1 Loader Header
|
|
|
|
|
|
|
|
Author: Mark Watkins <jedimark64@users.sourceforge.net>
|
|
|
|
License: GPL
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PRS1LOADER_H
|
|
|
|
#define PRS1LOADER_H
|
|
|
|
//#include <map>
|
|
|
|
//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.
|
|
|
|
//
|
2011-11-30 12:32:16 +00:00
|
|
|
const int prs1_data_version=7;
|
2011-06-26 08:30:44 +00:00
|
|
|
//
|
|
|
|
//********************************************************************************************
|
|
|
|
|
|
|
|
class PRS1:public CPAP
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PRS1(Profile *p,MachineID id=0);
|
|
|
|
virtual ~PRS1();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-07-10 14:23:07 +00:00
|
|
|
const int max_load_buffer_size=1024*1024;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
const QString prs1_class_name="PRS1";
|
|
|
|
|
|
|
|
class PRS1Loader : public MachineLoader
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
PRS1Loader();
|
|
|
|
virtual ~PRS1Loader();
|
2011-07-15 13:30:41 +00:00
|
|
|
virtual int Open(QString & path,Profile *profile);
|
|
|
|
virtual int Version() { return prs1_data_version; }
|
|
|
|
virtual const QString & ClassName() { return prs1_class_name; }
|
2011-06-26 08:30:44 +00:00
|
|
|
Machine *CreateMachine(QString serial,Profile *profile);
|
|
|
|
|
|
|
|
static void Register();
|
|
|
|
protected:
|
|
|
|
QString last;
|
2011-07-31 20:24:43 +00:00
|
|
|
QHash<QString,Machine *> PRS1List;
|
2011-06-26 08:30:44 +00:00
|
|
|
int OpenMachine(Machine *m,QString path,Profile *profile);
|
|
|
|
bool ParseProperties(Machine *m,QString filename);
|
|
|
|
bool OpenSummary(Session *session,QString filename);
|
|
|
|
bool OpenEvents(Session *session,QString filename);
|
|
|
|
bool OpenWaveforms(Session *session,QString filename);
|
2011-07-18 02:33:25 +00:00
|
|
|
bool Parse002(Session *session,unsigned char *buffer,int size,qint64 timestamp);
|
|
|
|
bool Parse002ASV(Session *session,unsigned char *buffer,int size,qint64 timestamp);
|
2011-11-27 04:50:22 +00:00
|
|
|
void CalcRespiratoryRate(Session *);
|
|
|
|
void filterFlow(EventList *in, EventList *out);
|
2011-06-26 08:30:44 +00:00
|
|
|
unsigned char * m_buffer;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PRS1LOADER_H
|