OSCAR-code/SleepLib/machine.h

192 lines
5.0 KiB
C
Raw Normal View History

/*
2011-06-26 08:30:44 +00:00
SleepLib Machine Class Header
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
License: GPL
*/
2011-06-26 08:30:44 +00:00
#ifndef MACHINE_H
#define MACHINE_H
2011-06-26 08:30:44 +00:00
#include <QString>
#include <QVariant>
#include <QDateTime>
#include <QThread>
#include <QMutex>
#include <QSemaphore>
2011-06-26 08:30:44 +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"
2011-06-26 08:30:44 +00:00
class Day;
class Session;
class Profile;
class Machine;
2011-12-18 13:20:01 +00:00
/*! \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; }
//! \brief Static millisecond sleep function.. Can be used from anywhere
static void msleep(unsigned long msecs) { QThread::msleep(msecs); }
//! \brief Start Save processing thread running
virtual void run();
protected:
Machine *machine;
QString path;
signals:
//! \brief Signal sent to update the Progress Bar
void UpdateProgress(int i);
};
2011-06-26 08:30:44 +00:00
2011-12-18 13:20:01 +00:00
/*! \class Machine
\brief This Machine class is the Heart of SleepyLib, representing a single Machine and holding it's data
*/
2011-06-26 08:30:44 +00:00
class Machine
{
public:
2011-12-18 13:20:01 +00:00
/*! \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.
*/
2011-06-26 08:30:44 +00:00
Machine(Profile *p,MachineID id=0);
virtual ~Machine();
2011-12-18 13:20:01 +00:00
//! \brief Load all Machine summary data
2011-06-26 08:30:44 +00:00
bool Load();
2011-12-18 13:20:01 +00:00
//! \brief Save all Sessions where changed bit is set.
2011-06-26 08:30:44 +00:00
bool Save();
2011-12-18 13:20:01 +00:00
//! \brief Save individual session
2011-06-26 08:30:44 +00:00
bool SaveSession(Session *sess);
2011-12-18 13:20:01 +00:00
//! \brief Deletes the crud out of all machine data in the SleepLib database
2011-06-26 08:30:44 +00:00
bool Purge(int secret);
2011-12-18 13:20:01 +00:00
//! \brief Contains a secondary index of day data, containing just this machines sessions
QMap<QDate,Day *> day;
2011-12-18 13:20:01 +00:00
//! \brief Contains all sessions for this machine, indexed by SessionID
QHash<SessionID,Session *> sessionlist;
2011-12-18 13:20:01 +00:00
//! \brief List of text machine properties, like brand, model, etc...
QHash<QString,QString> properties;
2011-06-26 08:30:44 +00:00
2011-12-18 13:20:01 +00:00
//! \brief Returns a pointer to a valid Session object if SessionID exists
2011-06-26 08:30:44 +00:00
Session * SessionExists(SessionID session);
2011-12-18 13:20:01 +00:00
//! \brief Adds the session to this machine object, and the Master Profile list. (used during load)
2011-06-26 08:30:44 +00:00
Day *AddSession(Session *s,Profile *p);
2011-12-18 13:20:01 +00:00
//! \brief Sets the Class of machine (Used to reference the particular loader that created it)
void SetClass(QString t) { m_class=t; }
2011-12-18 13:20:01 +00:00
//! \brief Sets the type of machine, according to MachineType enum
void SetType(MachineType t) { m_type=t; }
2011-12-18 13:20:01 +00:00
//! \brief Returns the Class of machine (Used to reference the particular loader that created it)
const QString & GetClass() { return m_class; }
2011-12-18 13:20:01 +00:00
//! \brief Returns the type of machine, according to MachineType enum
const MachineType & GetType() { return m_type; }
2011-12-18 13:20:01 +00:00
//! \brief Returns the machineID as a lower case hexadecimal string
2011-12-08 13:41:43 +00:00
QString hexid() { return QString().sprintf("%08lx",m_id); }
2011-12-18 13:20:01 +00:00
//! \brief Unused, increments the most recent sessionID
SessionID CreateSessionID() { return highest_sessionid+1; }
2011-12-18 13:20:01 +00:00
//! \brief Returns this objects MachineID
const MachineID & id() { return m_id; }
2011-12-18 13:20:01 +00:00
//! \brief Returns the date of the first loaded Session
const QDate & FirstDay() { return firstday; }
2011-12-18 13:20:01 +00:00
//! \brief Returns the date of the most recent loaded Session
const QDate & LastDay() { return lastday; }
2011-12-18 13:20:01 +00:00
//! \brief Grab the next task in the multithreaded save code
Session *popSaveList();
2011-12-18 13:20:01 +00:00
//! \brief The list of sessions that need saving (for multithreaded save code)
QList<Session *> m_savelist;
2011-12-18 13:20:01 +00:00
volatile int savelistCnt;
int savelistSize;
QMutex savelistMutex;
QSemaphore *savelistSem;
2011-06-26 08:30:44 +00:00
protected:
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-18 13:20:01 +00:00
/*! \class CPAP
\brief A CPAP classed machine object.. These are only really for show
*/
2011-06-26 08:30:44 +00:00
class CPAP:public Machine
{
public:
CPAP(Profile *p,MachineID id=0);
virtual ~CPAP();
};
2011-12-18 13:20:01 +00:00
/*! \class Oximeter
\brief An Oximeter classed machine object.. These are only really for show
*/
2011-06-26 08:30:44 +00:00
class Oximeter:public Machine
{
public:
Oximeter(Profile *p,MachineID id=0);
virtual ~Oximeter();
protected:
};
2011-12-18 13:20:01 +00:00
/*! \class SleepStage
\brief A SleepStage classed machine object.. These are only really for show
*/
2011-06-26 08:30:44 +00:00
class SleepStage:public Machine
{
public:
SleepStage(Profile *p,MachineID id=0);
virtual ~SleepStage();
protected:
};
// This should probably move somewhere else
//! \fn timezoneOffset();
2011-12-18 13:20:01 +00:00
//! \brief Calculate the timezone Offset in milliseconds between system timezone and UTC
qint64 timezoneOffset();
2011-06-26 08:30:44 +00:00
#endif // MACHINE_H