2011-11-26 04:00:31 +00:00
|
|
|
/*
|
2011-06-26 08:30:44 +00:00
|
|
|
SleepLib Machine Class Header
|
|
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
License: GPL
|
2011-11-26 04:00:31 +00:00
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
#ifndef MACHINE_H
|
|
|
|
#define MACHINE_H
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <QVariant>
|
|
|
|
#include <QDateTime>
|
2011-09-08 18:38:07 +00:00
|
|
|
#include <QThread>
|
|
|
|
#include <QMutex>
|
|
|
|
#include <QSemaphore>
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-07-31 20:24:43 +00:00
|
|
|
#include <QHash>
|
|
|
|
#include <QVector>
|
2011-06-26 08:30:44 +00:00
|
|
|
#include <list>
|
|
|
|
|
|
|
|
#include "SleepLib/preferences.h"
|
|
|
|
|
|
|
|
#include "SleepLib/machine_common.h"
|
|
|
|
#include "SleepLib/event.h"
|
|
|
|
#include "SleepLib/session.h"
|
|
|
|
|
|
|
|
#include "SleepLib/day.h"
|
|
|
|
|
|
|
|
class Day;
|
|
|
|
class Session;
|
|
|
|
class Profile;
|
|
|
|
class Machine;
|
|
|
|
|
2011-09-08 18:38:07 +00:00
|
|
|
class SaveThread:public QThread
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
SaveThread(Machine *m,QString p) { machine=m; path=p; }
|
2011-09-11 07:57:29 +00:00
|
|
|
static void msleep(unsigned long msecs) { QThread::msleep(msecs); }
|
2011-09-08 18:38:07 +00:00
|
|
|
virtual void run();
|
|
|
|
protected:
|
|
|
|
Machine *machine;
|
|
|
|
QString path;
|
|
|
|
signals:
|
|
|
|
void UpdateProgress(int i);
|
|
|
|
};
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
class Machine
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Machine(Profile *p,MachineID id=0);
|
|
|
|
virtual ~Machine();
|
|
|
|
// virtual bool Open(QString path){};
|
|
|
|
|
|
|
|
bool Load();
|
|
|
|
bool Save();
|
|
|
|
bool SaveSession(Session *sess);
|
|
|
|
bool Purge(int secret);
|
|
|
|
|
2011-07-31 20:24:43 +00:00
|
|
|
QMap<QDate,Day *> day;
|
|
|
|
QHash<SessionID,Session *> sessionlist;
|
|
|
|
QHash<QString,QString> properties;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-09-08 18:38:07 +00:00
|
|
|
Session *popSaveList();
|
|
|
|
QList<Session *> m_savelist;
|
|
|
|
volatile int savelistCnt;
|
|
|
|
int savelistSize;
|
|
|
|
QMutex savelistMutex;
|
|
|
|
QSemaphore *savelistSem;
|
2011-06-26 08:30:44 +00:00
|
|
|
Session * SessionExists(SessionID session);
|
|
|
|
Day *AddSession(Session *s,Profile *p);
|
|
|
|
|
|
|
|
void SetClass(QString t) {
|
|
|
|
m_class=t;
|
2011-07-31 20:24:43 +00:00
|
|
|
}
|
2011-06-26 08:30:44 +00:00
|
|
|
void SetType(MachineType t) {
|
|
|
|
m_type=t;
|
2011-07-31 20:24:43 +00:00
|
|
|
}
|
2011-06-26 08:30:44 +00:00
|
|
|
const QString & GetClass() {
|
|
|
|
return m_class;
|
2011-07-31 20:24:43 +00:00
|
|
|
}
|
2011-06-26 08:30:44 +00:00
|
|
|
const MachineType & GetType() {
|
|
|
|
return m_type;
|
2011-07-31 20:24:43 +00:00
|
|
|
}
|
2011-06-26 08:30:44 +00:00
|
|
|
const QString hexid() {
|
|
|
|
QString s;
|
|
|
|
s.sprintf("%08lx",m_id);
|
|
|
|
return s;
|
2011-07-31 20:24:43 +00:00
|
|
|
}
|
|
|
|
SessionID CreateSessionID() { return highest_sessionid+1; }
|
|
|
|
const MachineID & id() { return m_id; }
|
|
|
|
const QDate & FirstDay() { return firstday; }
|
|
|
|
const QDate & LastDay() { return lastday; }
|
2011-12-03 08:52:24 +00:00
|
|
|
//bool hasChannel(QString id) { return m_channels.contains(id) && m_channels[id]; }
|
|
|
|
//void registerChannel(QString id,bool b=true) { m_channels[id]=b; }
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
protected:
|
2011-07-03 06:47:23 +00:00
|
|
|
QDate firstday,lastday;
|
2011-06-26 08:30:44 +00:00
|
|
|
SessionID highest_sessionid;
|
|
|
|
MachineID m_id;
|
|
|
|
QString m_class;
|
|
|
|
MachineType m_type;
|
|
|
|
QString m_path;
|
|
|
|
Profile *profile;
|
|
|
|
bool changed;
|
|
|
|
bool firstsession;
|
2011-12-03 08:52:24 +00:00
|
|
|
//QHash<QString,bool> m_channels;
|
2011-06-26 08:30:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class CPAP:public Machine
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CPAP(Profile *p,MachineID id=0);
|
|
|
|
virtual ~CPAP();
|
|
|
|
};
|
|
|
|
|
|
|
|
class Oximeter:public Machine
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Oximeter(Profile *p,MachineID id=0);
|
|
|
|
virtual ~Oximeter();
|
|
|
|
protected:
|
|
|
|
};
|
|
|
|
|
|
|
|
class SleepStage:public Machine
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SleepStage(Profile *p,MachineID id=0);
|
|
|
|
virtual ~SleepStage();
|
|
|
|
protected:
|
|
|
|
};
|
|
|
|
|
2011-12-07 12:23:19 +00:00
|
|
|
qint64 timezoneOffset();
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
#endif // MACHINE_H
|
|
|
|
|