mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
81 lines
2.7 KiB
C++
81 lines
2.7 KiB
C++
/*
|
|
|
|
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.
|
|
//
|
|
const int prs1_data_version=8;
|
|
//
|
|
//********************************************************************************************
|
|
|
|
class PRS1:public CPAP
|
|
{
|
|
public:
|
|
PRS1(Profile *p,MachineID id=0);
|
|
virtual ~PRS1();
|
|
};
|
|
|
|
|
|
const int max_load_buffer_size=1024*1024;
|
|
|
|
|
|
const QString prs1_class_name="PRS1";
|
|
|
|
class PRS1Loader : public MachineLoader
|
|
{
|
|
public:
|
|
PRS1Loader();
|
|
virtual ~PRS1Loader();
|
|
virtual int Open(QString & path,Profile *profile);
|
|
virtual int Version() { return prs1_data_version; }
|
|
virtual const QString & ClassName() { return prs1_class_name; }
|
|
Machine *CreateMachine(QString serial,Profile *profile);
|
|
|
|
static void Register();
|
|
protected:
|
|
QString last;
|
|
QHash<QString,Machine *> PRS1List;
|
|
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(SessionID sid, QString filename);
|
|
bool ParseWaveform(qint32 sequence, quint32 timestamp, unsigned char *data, quint16 size, quint16 duration, quint16 num_signals, quint16 interleave, quint8 sample_format);
|
|
bool ParseSummary(Machine *mach, qint32 sequence, quint32 timestamp, unsigned char *data, quint16 size, char version);
|
|
bool Parse002(qint32 sequence, quint32 timestamp, unsigned char *data, quint16 size);
|
|
bool Parse002v5(qint32 sequence, quint32 timestamp, unsigned char *data, quint16 size);
|
|
|
|
bool OpenFile(Machine *mach, QString filename);
|
|
//bool Parse002(Session *session,unsigned char *buffer,int size,qint64 timestamp,long fpos);
|
|
//bool Parse002ASV(Session *session,unsigned char *buffer,int size,qint64 timestamp,long fpos);
|
|
unsigned char * m_buffer;
|
|
QHash<SessionID, Session *> extra_session;
|
|
QHash<SessionID, Session *> new_sessions;
|
|
qint32 summary_duration;
|
|
};
|
|
|
|
struct WaveHeaderList {
|
|
quint16 interleave;
|
|
quint8 sample_format;
|
|
WaveHeaderList(quint16 i,quint8 f){ interleave=i; sample_format=f; }
|
|
};
|
|
|
|
#endif // PRS1LOADER_H
|