OSCAR-code/sleepyhead/SleepLib/machine.h

323 lines
8.4 KiB
C
Raw Normal View History

/* SleepLib Machine Class Header
*
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
*
* This file is subject to the terms and conditions of the GNU General Public
* License. See the file COPYING in the main directory of the source code
* for more details. */
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 <QPixmap>
2014-05-21 00:17:31 +00:00
#include <QRunnable>
#include <QThread>
#include <QMutex>
#include <QSemaphore>
#include <QProgressBar>
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/schema.h"
2011-06-26 08:30:44 +00:00
#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
2014-05-21 00:17:31 +00:00
class ImportTask:public QRunnable
{
public:
explicit ImportTask() {}
virtual ~ImportTask() {}
virtual void run() {}
};
class MachineLoader;
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
{
friend class SaveThread;
friend class MachineLaoder;
public:
2014-07-11 12:09:38 +00:00
/*! \fn Machine(MachineID id=0);
\brief Constructs a Machine object with MachineID id
2011-12-18 13:20:01 +00:00
If supplied MachineID is zero, it will generate a new unused random one.
*/
Machine(Profile * _profile, MachineID id = 0);
2011-06-26 08:30:44 +00:00
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();
2018-04-22 12:06:48 +00:00
bool LoadSummary(QProgressBar * progress);
2014-09-04 14:59:54 +00:00
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();
bool SaveSummaryCache();
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);
//! \brief Unlink a session from any Machine related indexes
bool unlinkSession(Session * sess);
bool unlinkDay(Day * day);
inline bool hasChannel(ChannelID code) {
return m_availableChannels.contains(code);
}
inline bool hasSetting(ChannelID code) {
return m_availableSettings.contains(code);
}
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
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)
2014-07-11 12:09:38 +00:00
bool AddSession(Session *s);
//! \brief Find the date this session belongs in, according to profile settings
QDate pickDate(qint64 start);
2011-06-26 08:30:44 +00:00
const QString getDataPath();
2014-09-04 14:59:54 +00:00
const QString getEventsPath();
2014-09-05 14:46:42 +00:00
const QString getSummariesPath();
const QString getBackupPath();
qint64 diskSpaceSummaries();
qint64 diskSpaceEvents();
qint64 diskSpaceBackups();
2011-12-18 13:20:01 +00:00
//! \brief Returns the machineID as a lower case hexadecimal string
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; }
void setId(MachineID id) { m_id = 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; }
//! \brief Add a new task to the multithreaded save code
void queSaveList(Session * sess);
2014-09-04 14:59:54 +00:00
bool hasModifiedSessions();
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 Start the save threads which handle indexing, file storage and waveform processing
void StartSaveThreads();
//! \brief Finish the save threads and safely close them
void FinishSaveThreads();
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
2014-05-21 00:17:31 +00:00
//yuck
QVector<SaveThread *>thread;
volatile int savelistCnt;
int savelistSize;
2014-05-21 00:17:31 +00:00
QMutex listMutex;
QSemaphore *savelistSem;
2011-06-26 08:30:44 +00:00
bool m_unsupported;
bool unsupported() { return m_unsupported; }
void setUnsupported(bool b) { m_unsupported = b; }
2014-05-21 00:17:31 +00:00
void lockSaveMutex() { listMutex.lock(); }
void unlockSaveMutex() { listMutex.unlock(); }
void skipSaveTask() { lockSaveMutex(); m_donetasks++; unlockSaveMutex(); }
void clearSkipped() { skipped_sessions = 0; }
int skippedSessions() { return skipped_sessions; }
inline int totalTasks() { return m_totaltasks; }
inline void setTotalTasks(int value) { m_totaltasks = value; }
inline int doneTasks() { return m_donetasks; }
2014-05-21 00:17:31 +00:00
inline MachineType type() const { return info.type; }
inline QString brand() const { return info.brand; }
inline QString loaderName() const { return info.loadername; }
inline QString model() const { return info.model; }
inline QString modelnumber() const { return info.modelnumber; }
inline QString serial() const { return info.serial; }
inline QString series() const { return info.series; }
inline quint32 cap() const { return info.cap; }
inline int version() const { return info.version; }
inline QDateTime lastImported() const { return info.lastimported; }
inline void setModel(QString value) { info.model = value; }
2014-08-21 17:37:38 +00:00
inline void setBrand(QString value) { info.brand = value; }
inline void setSerial(QString value) { info.serial = value; }
inline void setType(MachineType type) { info.type = type; }
inline void setCap(quint32 value) { info.cap = value; }
2014-09-04 14:59:54 +00:00
bool saveSessionInfo();
bool loadSessionInfo();
void setLoaderName(QString value);
QList<ChannelID> availableChannels(quint32 chantype);
MachineLoader * loader() { return m_loader; }
2014-05-21 00:17:31 +00:00
// much more simpler multithreading...
void queTask(ImportTask * task);
void runTasks();
QMutex saveMutex;
void setInfo(MachineInfo inf);
const MachineInfo getInfo() { return info; }
void updateChannels(Session * sess);
QString getPixmapPath();
QPixmap & getPixmap();
MachineInfo info;
2014-09-30 05:25:11 +00:00
protected:
QDate firstday, lastday;
2011-06-26 08:30:44 +00:00
SessionID highest_sessionid;
MachineID m_id;
MachineType m_type;
QString m_path;
2014-07-11 12:09:38 +00:00
MachineLoader * m_loader;
2011-06-26 08:30:44 +00:00
bool changed;
bool firstsession;
int m_totaltasks;
int m_donetasks;
int skipped_sessions;
volatile bool m_save_threads_running;
2014-05-21 00:17:31 +00:00
QList<ImportTask *> m_tasklist;
2014-09-04 14:59:54 +00:00
QHash<ChannelID, bool> m_availableChannels;
QHash<ChannelID, bool> m_availableSettings;
QString m_summaryPath;
QString m_eventsPath;
QString m_dataPath;
Profile * profile;
2011-06-26 08:30:44 +00:00
};
2011-12-18 13:20:01 +00:00
/*! \class CPAP
2011-12-19 08:17:19 +00:00
\brief A CPAP classed machine object..
2011-12-18 13:20:01 +00:00
*/
class CPAP: public Machine
2011-06-26 08:30:44 +00:00
{
public:
CPAP(Profile *, MachineID id = 0);
2011-06-26 08:30:44 +00:00
virtual ~CPAP();
2011-06-26 08:30:44 +00:00
};
2011-12-18 13:20:01 +00:00
/*! \class Oximeter
2011-12-19 08:17:19 +00:00
\brief An Oximeter classed machine object..
2011-12-18 13:20:01 +00:00
*/
class Oximeter: public Machine
2011-06-26 08:30:44 +00:00
{
public:
Oximeter(Profile *, MachineID id = 0);
2011-06-26 08:30:44 +00:00
virtual ~Oximeter();
protected:
2011-06-26 08:30:44 +00:00
};
2011-12-18 13:20:01 +00:00
/*! \class SleepStage
2011-12-19 08:17:19 +00:00
\brief A SleepStage classed machine object..
2011-12-18 13:20:01 +00:00
*/
class SleepStage: public Machine
2011-06-26 08:30:44 +00:00
{
public:
SleepStage(Profile *, MachineID id = 0);
2011-06-26 08:30:44 +00:00
virtual ~SleepStage();
protected:
2011-06-26 08:30:44 +00:00
};
/*! \class PositionSensor
\brief A PositionSensor classed machine object..
*/
class PositionSensor: public Machine
{
public:
PositionSensor(Profile *, MachineID id = 0);
virtual ~PositionSensor();
protected:
};
2011-06-26 08:30:44 +00:00
#endif // MACHINE_H