2018-04-25 10:34:23 +00:00
|
|
|
|
/* SleepLib MachineLoader Base Class Header
|
2014-04-09 21:01:57 +00:00
|
|
|
|
*
|
2018-04-02 02:08:32 +00:00
|
|
|
|
* Copyright (c) 2018 Mark Watkins <mark@jedimark.net>
|
2014-04-09 21:01:57 +00:00
|
|
|
|
*
|
|
|
|
|
* 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 Linux
|
|
|
|
|
* distribution for more details. */
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
|
|
#ifndef MACHINE_LOADER_H
|
|
|
|
|
#define MACHINE_LOADER_H
|
2014-05-20 11:51:47 +00:00
|
|
|
|
|
|
|
|
|
#include <QMutex>
|
|
|
|
|
#include <QRunnable>
|
2014-09-17 17:20:01 +00:00
|
|
|
|
#include <QPixmap>
|
|
|
|
|
|
2014-05-20 11:51:47 +00:00
|
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
|
#include "profiles.h"
|
2011-07-10 14:23:07 +00:00
|
|
|
|
#include "machine.h"
|
2012-01-05 04:37:22 +00:00
|
|
|
|
#include "zlib.h"
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
2014-09-17 06:59:58 +00:00
|
|
|
|
|
2014-05-20 11:51:47 +00:00
|
|
|
|
class MachineLoader;
|
2014-08-17 23:29:30 +00:00
|
|
|
|
enum DeviceStatus { NEUTRAL, IMPORTING, LIVE, DETECTING };
|
2014-05-20 11:51:47 +00:00
|
|
|
|
|
2014-09-17 17:20:01 +00:00
|
|
|
|
const QString genericPixmapPath = ":/icons/mask.png";
|
2014-05-20 11:51:47 +00:00
|
|
|
|
|
2014-07-28 13:56:29 +00:00
|
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
|
/*! \class MachineLoader
|
|
|
|
|
\brief Base class to derive a new Machine importer from
|
|
|
|
|
*/
|
2014-05-20 11:51:47 +00:00
|
|
|
|
class MachineLoader: public QObject
|
2011-06-26 08:30:44 +00:00
|
|
|
|
{
|
2014-05-20 11:51:47 +00:00
|
|
|
|
Q_OBJECT
|
|
|
|
|
friend class ImportThread;
|
2014-07-28 13:56:29 +00:00
|
|
|
|
friend class Machine;
|
2014-04-17 05:58:57 +00:00
|
|
|
|
public:
|
2011-06-26 08:30:44 +00:00
|
|
|
|
MachineLoader();
|
|
|
|
|
virtual ~MachineLoader();
|
2011-07-10 14:23:07 +00:00
|
|
|
|
|
2014-04-26 09:54:08 +00:00
|
|
|
|
//! \brief Detect if the given path contains a valid folder structure
|
|
|
|
|
virtual bool Detect(const QString & path) = 0;
|
|
|
|
|
|
2014-07-28 13:56:29 +00:00
|
|
|
|
//! \brief Look up and return machine model information stored at path
|
|
|
|
|
virtual MachineInfo PeekInfo(const QString & path) { Q_UNUSED(path); return MachineInfo(); }
|
|
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
|
//! \brief Override this to scan path and detect new machine data
|
2018-04-27 04:29:03 +00:00
|
|
|
|
virtual int Open(const QString & path) = 0;
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
|
|
//! \brief Override to returns the Version number of this MachineLoader
|
2014-04-17 05:58:57 +00:00
|
|
|
|
virtual int Version() = 0;
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
2014-07-28 13:56:29 +00:00
|
|
|
|
// !\\brief Used internally by loaders, override to return base MachineInfo record
|
|
|
|
|
virtual MachineInfo newInfo() { return MachineInfo(); }
|
|
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
|
//! \brief Override to returns the class name of this MachineLoader
|
2014-07-28 13:56:29 +00:00
|
|
|
|
virtual const QString &loaderName() = 0;
|
2014-05-20 11:51:47 +00:00
|
|
|
|
inline MachineType type() { return m_type; }
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
2014-09-29 14:41:31 +00:00
|
|
|
|
void unsupported(Machine * m) {
|
2018-04-25 10:34:23 +00:00
|
|
|
|
if (m == nullptr) {
|
|
|
|
|
qCritical("MachineLoader::unsupported(Machine *) called with null machine object");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-29 14:41:31 +00:00
|
|
|
|
m->setUnsupported(true);
|
|
|
|
|
emit machineUnsupported(m);
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-20 11:51:47 +00:00
|
|
|
|
void queTask(ImportTask * task);
|
2011-07-10 14:23:07 +00:00
|
|
|
|
|
2014-07-30 20:25:06 +00:00
|
|
|
|
void addSession(Session * sess)
|
|
|
|
|
{
|
|
|
|
|
sessionMutex.lock();
|
|
|
|
|
new_sessions[sess->session()] = sess;
|
|
|
|
|
sessionMutex.unlock();
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-20 11:51:47 +00:00
|
|
|
|
//! \brief Process Task list using all available threads.
|
2014-05-31 21:25:07 +00:00
|
|
|
|
void runTasks(bool threaded=true);
|
2014-05-25 07:07:08 +00:00
|
|
|
|
|
2014-06-02 11:22:45 +00:00
|
|
|
|
int countTasks() { return m_tasklist.size(); }
|
|
|
|
|
|
2014-05-25 07:07:08 +00:00
|
|
|
|
inline bool isAborted() { return m_abort; }
|
|
|
|
|
void abort() { m_abort = true; }
|
|
|
|
|
|
|
|
|
|
virtual void process() {}
|
|
|
|
|
|
|
|
|
|
DeviceStatus status() { return m_status; }
|
|
|
|
|
void setStatus(DeviceStatus status) { m_status = status; }
|
|
|
|
|
|
2014-05-31 21:25:07 +00:00
|
|
|
|
QMutex sessionMutex;
|
|
|
|
|
QMutex saveMutex;
|
|
|
|
|
|
2014-08-06 14:06:44 +00:00
|
|
|
|
virtual void initChannels() {}
|
2014-09-17 17:20:01 +00:00
|
|
|
|
QPixmap & getPixmap(QString series) {
|
|
|
|
|
QHash<QString, QPixmap>::iterator it = m_pixmaps.find(series);
|
|
|
|
|
if (it != m_pixmaps.end()) {
|
|
|
|
|
return it.value();
|
|
|
|
|
}
|
|
|
|
|
return *genericCPAPPixmap;
|
|
|
|
|
}
|
|
|
|
|
QString getPixmapPath(QString series) {
|
|
|
|
|
QHash<QString, QString>::iterator it = m_pixmap_paths.find(series);
|
|
|
|
|
if (it != m_pixmap_paths.end()) {
|
|
|
|
|
return it.value();
|
|
|
|
|
}
|
|
|
|
|
return genericPixmapPath;
|
|
|
|
|
}
|
2014-08-06 14:06:44 +00:00
|
|
|
|
|
2014-05-25 07:07:08 +00:00
|
|
|
|
signals:
|
|
|
|
|
void updateProgress(int cnt, int total);
|
2018-05-07 00:37:22 +00:00
|
|
|
|
void updateMessage(QString);
|
2014-09-29 14:41:31 +00:00
|
|
|
|
void machineUnsupported(Machine *);
|
2014-05-25 07:07:08 +00:00
|
|
|
|
|
2014-09-29 14:41:31 +00:00
|
|
|
|
protected:
|
2014-05-20 11:51:47 +00:00
|
|
|
|
|
2014-09-17 17:20:01 +00:00
|
|
|
|
static QPixmap * genericCPAPPixmap;
|
|
|
|
|
|
2011-07-10 14:23:07 +00:00
|
|
|
|
MachineType m_type;
|
2014-05-20 11:51:47 +00:00
|
|
|
|
QString m_class;
|
|
|
|
|
|
|
|
|
|
int m_currenttask;
|
|
|
|
|
int m_totaltasks;
|
|
|
|
|
|
2014-05-25 07:07:08 +00:00
|
|
|
|
bool m_abort;
|
|
|
|
|
|
|
|
|
|
DeviceStatus m_status;
|
|
|
|
|
|
2014-07-30 20:25:06 +00:00
|
|
|
|
void finishAddingSessions();
|
|
|
|
|
QMap<SessionID, Session *> new_sessions;
|
2014-05-31 21:25:07 +00:00
|
|
|
|
|
2014-09-17 17:20:01 +00:00
|
|
|
|
QHash<QString, QPixmap> m_pixmaps;
|
|
|
|
|
QHash<QString, QString> m_pixmap_paths;
|
|
|
|
|
|
2014-05-20 11:51:47 +00:00
|
|
|
|
private:
|
|
|
|
|
QList<ImportTask *> m_tasklist;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
};
|
|
|
|
|
|
2014-08-03 13:00:13 +00:00
|
|
|
|
class CPAPLoader:public MachineLoader
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
CPAPLoader() : MachineLoader() {}
|
|
|
|
|
virtual ~CPAPLoader() {}
|
|
|
|
|
|
|
|
|
|
virtual QList<ChannelID> eventFlags(Day * day);
|
|
|
|
|
|
|
|
|
|
virtual QString PresReliefLabel() { return QString(""); }
|
|
|
|
|
virtual ChannelID PresReliefMode() { return NoChannel; }
|
|
|
|
|
virtual ChannelID PresReliefLevel() { return NoChannel; }
|
2014-08-04 16:12:49 +00:00
|
|
|
|
virtual ChannelID HumidifierConnected() { return NoChannel; }
|
|
|
|
|
virtual ChannelID HumidifierLevel() { return CPAP_HumidSetting; }
|
2014-09-01 04:49:05 +00:00
|
|
|
|
virtual ChannelID CPAPModeChannel() { return CPAP_Mode; }
|
2014-08-06 14:06:44 +00:00
|
|
|
|
virtual void initChannels() {}
|
2018-05-07 00:37:22 +00:00
|
|
|
|
|
2014-08-03 13:00:13 +00:00
|
|
|
|
};
|
|
|
|
|
|
2014-07-28 13:56:29 +00:00
|
|
|
|
struct ImportPath
|
|
|
|
|
{
|
|
|
|
|
ImportPath() {
|
|
|
|
|
loader = nullptr;
|
|
|
|
|
}
|
|
|
|
|
ImportPath(const ImportPath & copy) {
|
|
|
|
|
loader = copy.loader;
|
|
|
|
|
path = copy.path;
|
|
|
|
|
}
|
|
|
|
|
ImportPath(QString path, MachineLoader * loader) :
|
|
|
|
|
path(path), loader(loader) {}
|
|
|
|
|
|
|
|
|
|
QString path;
|
|
|
|
|
MachineLoader * loader;
|
|
|
|
|
};
|
|
|
|
|
|
2014-05-20 11:51:47 +00:00
|
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
|
// Put in machine loader class as static??
|
2011-06-26 08:30:44 +00:00
|
|
|
|
void RegisterLoader(MachineLoader *loader);
|
2014-07-28 13:56:29 +00:00
|
|
|
|
MachineLoader * lookupLoader(Machine * m);
|
2014-08-18 00:22:16 +00:00
|
|
|
|
MachineLoader * lookupLoader(QString loaderName);
|
|
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
|
void DestroyLoaders();
|
2014-07-28 13:56:29 +00:00
|
|
|
|
|
2014-05-20 11:51:47 +00:00
|
|
|
|
bool compressFile(QString inpath, QString outpath = "");
|
2018-05-03 05:08:45 +00:00
|
|
|
|
bool uncompressFile(QString infile, QString outfile);
|
2014-05-20 11:51:47 +00:00
|
|
|
|
|
|
|
|
|
QList<MachineLoader *> GetLoaders(MachineType mt = MT_UNKNOWN);
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
|
|
#endif //MACHINE_LOADER_H
|