mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
185 lines
4.7 KiB
C++
185 lines
4.7 KiB
C++
/*
|
|
SleepLib Machine Class Header
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
License: GPL
|
|
*/
|
|
|
|
#ifndef MACHINE_H
|
|
#define MACHINE_H
|
|
|
|
|
|
#include <QString>
|
|
#include <QVariant>
|
|
#include <QDateTime>
|
|
#include <QThread>
|
|
#include <QMutex>
|
|
#include <QSemaphore>
|
|
|
|
#include <QHash>
|
|
#include <QVector>
|
|
#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;
|
|
|
|
/*! \class SaveThread
|
|
\brief This class is used in the multithreaded save code.. It accelerates the indexing of summary data.
|
|
*/
|
|
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
|
|
\brief This Machine class is the Heart of SleepyLib, representing a single Machine and holding it's data
|
|
|
|
*/
|
|
class Machine
|
|
{
|
|
public:
|
|
/*! \fn Machine(Profile *p,MachineID id=0);
|
|
\brief Constructs a Machine object in Profile p, and with MachineID id
|
|
|
|
If supplied MachineID is zero, it will generate a new unused random one.
|
|
*/
|
|
Machine(Profile *p,MachineID id=0);
|
|
virtual ~Machine();
|
|
|
|
//! \brief Load all Machine summary data
|
|
bool Load();
|
|
//! \brief Save all Sessions where changed bit is set.
|
|
bool Save();
|
|
|
|
//! \brief Save individual session
|
|
bool SaveSession(Session *sess);
|
|
|
|
//! \brief Deletes the crud out of all machine data in the SleepLib database
|
|
bool Purge(int secret);
|
|
|
|
//! \brief Contains a secondary index of day data, containing just this machines sessions
|
|
QMap<QDate,Day *> day;
|
|
|
|
//! \brief Contains all sessions for this machine, indexed by SessionID
|
|
QHash<SessionID,Session *> sessionlist;
|
|
|
|
//! \brief List of text machine properties, like brand, model, etc...
|
|
QHash<QString,QString> properties;
|
|
|
|
//! \brief Returns a pointer to a valid Session object if SessionID exists
|
|
Session * SessionExists(SessionID session);
|
|
|
|
//! \brief Adds the session to this machine object, and the Master Profile list. (used during load)
|
|
Day *AddSession(Session *s,Profile *p);
|
|
|
|
//! \brief Sets the Class of machine (Used to reference the particular loader that created it)
|
|
void SetClass(QString t) { m_class=t; }
|
|
|
|
//! \brief Sets the type of machine, according to MachineType enum
|
|
void SetType(MachineType t) { m_type=t; }
|
|
|
|
//! \brief Returns the Class of machine (Used to reference the particular loader that created it)
|
|
const QString & GetClass() { return m_class; }
|
|
|
|
//! \brief Returns the type of machine, according to MachineType enum
|
|
const MachineType & GetType() { return m_type; }
|
|
|
|
//! \brief Returns the machineID as a lower case hexadecimal string
|
|
QString hexid() { return QString().sprintf("%08lx",m_id); }
|
|
|
|
|
|
//! \brief Unused, increments the most recent sessionID
|
|
SessionID CreateSessionID() { return highest_sessionid+1; }
|
|
|
|
//! \brief Returns this objects MachineID
|
|
const MachineID & id() { return m_id; }
|
|
|
|
//! \brief Returns the date of the first loaded Session
|
|
const QDate & FirstDay() { return firstday; }
|
|
|
|
//! \brief Returns the date of the most recent loaded Session
|
|
const QDate & LastDay() { return lastday; }
|
|
|
|
//! \brief Grab the next task in the multithreaded save code
|
|
Session *popSaveList();
|
|
|
|
//! \brief The list of sessions that need saving (for multithreaded save code)
|
|
QList<Session *> m_savelist;
|
|
|
|
volatile int savelistCnt;
|
|
int savelistSize;
|
|
QMutex savelistMutex;
|
|
QSemaphore *savelistSem;
|
|
|
|
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;
|
|
};
|
|
|
|
|
|
/*! \class CPAP
|
|
\brief A CPAP classed machine object.. These are only really for show
|
|
*/
|
|
class CPAP:public Machine
|
|
{
|
|
public:
|
|
CPAP(Profile *p,MachineID id=0);
|
|
virtual ~CPAP();
|
|
};
|
|
|
|
|
|
/*! \class Oximeter
|
|
\brief An Oximeter classed machine object.. These are only really for show
|
|
*/
|
|
class Oximeter:public Machine
|
|
{
|
|
public:
|
|
Oximeter(Profile *p,MachineID id=0);
|
|
virtual ~Oximeter();
|
|
protected:
|
|
};
|
|
|
|
/*! \class SleepStage
|
|
\brief A SleepStage classed machine object.. These are only really for show
|
|
*/
|
|
class SleepStage:public Machine
|
|
{
|
|
public:
|
|
SleepStage(Profile *p,MachineID id=0);
|
|
virtual ~SleepStage();
|
|
protected:
|
|
};
|
|
|
|
//! \brief Calculate the timezone Offset in milliseconds between system timezone and UTC
|
|
qint64 timezoneOffset();
|
|
|
|
#endif // MACHINE_H
|
|
|