/* SleepLib Machine Class Header Copyright (c)2011 Mark Watkins License: GPL */ #ifndef MACHINE_H #define MACHINE_H #include #include #include #include #include #include #include #include #include #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; class SaveThread:public QThread { Q_OBJECT public: SaveThread(Machine *m,QString p) { machine=m; path=p; } static void msleep(unsigned long msecs) { QThread::msleep(msecs); } virtual void run(); protected: Machine *machine; QString path; signals: void UpdateProgress(int i); }; 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); QMap day; QHash sessionlist; QHash properties; Session *popSaveList(); QList m_savelist; volatile int savelistCnt; int savelistSize; QMutex savelistMutex; QSemaphore *savelistSem; Session * SessionExists(SessionID session); Day *AddSession(Session *s,Profile *p); void SetClass(QString t) { m_class=t; } void SetType(MachineType t) { m_type=t; } const QString & GetClass() { return m_class; } const MachineType & GetType() { return m_type; } const QString hexid() { QString s; s.sprintf("%08lx",m_id); return s; } SessionID CreateSessionID() { return highest_sessionid+1; } const MachineID & id() { return m_id; } const QDate & FirstDay() { return firstday; } const QDate & LastDay() { return lastday; } //bool hasChannel(QString id) { return m_channels.contains(id) && m_channels[id]; } //void registerChannel(QString id,bool b=true) { m_channels[id]=b; } protected: QDate firstday,lastday; SessionID highest_sessionid; MachineID m_id; QString m_class; MachineType m_type; QString m_path; Profile *profile; bool changed; bool firstsession; //QHash m_channels; }; 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: }; #endif // MACHINE_H