2014-04-09 21:01:57 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
* vim: set ts=8 sts=4 et sw=4 tw=99:
|
|
|
|
*
|
|
|
|
* SleepLib Fisher & Paykel Icon Loader Implementation
|
|
|
|
*
|
|
|
|
* Copyright (c) 2011-2014 Mark Watkins <jedimark@users.sourceforge.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 Linux
|
|
|
|
* distribution for more details. */
|
2012-01-22 14:39:20 +00:00
|
|
|
|
|
|
|
#ifndef ICON_LOADER_H
|
|
|
|
#define ICON_LOADER_H
|
|
|
|
|
2012-01-29 04:17:02 +00:00
|
|
|
#include <QMultiMap>
|
2012-01-22 14:39:20 +00:00
|
|
|
#include "SleepLib/machine.h"
|
|
|
|
#include "SleepLib/machine_loader.h"
|
|
|
|
#include "SleepLib/profiles.h"
|
|
|
|
|
|
|
|
|
|
|
|
//********************************************************************************************
|
|
|
|
/// IMPORTANT!!!
|
|
|
|
//********************************************************************************************
|
|
|
|
// Please INCREMENT the following value when making changes to this loaders implementation.
|
|
|
|
//
|
2014-06-22 15:40:52 +00:00
|
|
|
const int fpicon_data_version = 3;
|
2012-01-22 14:39:20 +00:00
|
|
|
//
|
|
|
|
//********************************************************************************************
|
|
|
|
|
|
|
|
/*! \class FPIcon
|
|
|
|
\brief F&P Icon customized machine object
|
|
|
|
*/
|
2014-04-17 05:58:57 +00:00
|
|
|
class FPIcon: public CPAP
|
2012-01-22 14:39:20 +00:00
|
|
|
{
|
2014-04-17 05:58:57 +00:00
|
|
|
public:
|
2014-07-11 12:09:38 +00:00
|
|
|
FPIcon(MachineID id = 0);
|
2012-01-22 14:39:20 +00:00
|
|
|
virtual ~FPIcon();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
const int fpicon_load_buffer_size = 1024 * 1024;
|
2012-01-22 14:39:20 +00:00
|
|
|
|
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
const QString fpicon_class_name = STR_MACH_FPIcon;
|
2012-01-22 14:39:20 +00:00
|
|
|
|
|
|
|
/*! \class FPIconLoader
|
|
|
|
\brief Loader for Fisher & Paykel Icon data
|
|
|
|
This is only relatively recent addition and still needs more work
|
|
|
|
*/
|
|
|
|
|
|
|
|
class FPIconLoader : public MachineLoader
|
|
|
|
{
|
2014-04-17 05:58:57 +00:00
|
|
|
public:
|
2012-01-22 14:39:20 +00:00
|
|
|
FPIconLoader();
|
|
|
|
virtual ~FPIconLoader();
|
|
|
|
|
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);
|
|
|
|
|
2012-01-22 14:39:20 +00:00
|
|
|
//! \brief Scans path for F&P Icon data signature, and Loads any new data
|
2014-07-11 12:09:38 +00:00
|
|
|
virtual int Open(QString path);
|
2012-01-22 14:39:20 +00:00
|
|
|
|
2014-07-11 12:09:38 +00:00
|
|
|
int OpenMachine(Machine *mach, QString &path);
|
2012-01-22 14:39:20 +00:00
|
|
|
|
2014-07-11 12:09:38 +00:00
|
|
|
bool OpenSummary(Machine *mach, QString path);
|
|
|
|
bool OpenDetail(Machine *mach, QString path);
|
|
|
|
bool OpenFLW(Machine *mach, QString filename);
|
2012-01-22 14:39:20 +00:00
|
|
|
|
|
|
|
//! \brief Returns SleepLib database version of this F&P Icon loader
|
|
|
|
virtual int Version() { return fpicon_data_version; }
|
|
|
|
|
|
|
|
//! \brief Returns the machine class name of this CPAP machine, "FPIcon"
|
2014-04-17 05:58:57 +00:00
|
|
|
virtual const QString &ClassName() { return fpicon_class_name; }
|
2012-01-22 14:39:20 +00:00
|
|
|
|
|
|
|
//! \brief Creates a machine object, indexed by serial number
|
2014-07-11 12:09:38 +00:00
|
|
|
Machine *CreateMachine(QString serial);
|
2012-01-22 14:39:20 +00:00
|
|
|
|
|
|
|
//! \brief Registers this MachineLoader with the master list, so F&P Icon data can load
|
|
|
|
static void Register();
|
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
protected:
|
|
|
|
QDateTime readFPDateTime(quint8 *data);
|
2013-10-16 02:52:25 +00:00
|
|
|
|
2012-01-22 14:39:20 +00:00
|
|
|
QString last;
|
2014-04-17 05:58:57 +00:00
|
|
|
QHash<QString, Machine *> MachList;
|
2012-02-01 14:53:31 +00:00
|
|
|
QMap<SessionID, Session *> Sessions;
|
2014-04-17 05:58:57 +00:00
|
|
|
QMultiMap<QDate, Session *> SessDate;
|
2013-10-16 02:52:25 +00:00
|
|
|
//QMap<int,QList<EventList *> > FLWMapFlow;
|
|
|
|
//QMap<int,QList<EventList *> > FLWMapLeak;
|
|
|
|
//QMap<int,QList<EventList *> > FLWMapPres;
|
|
|
|
//QMap<int,QList<qint64> > FLWDuration;
|
|
|
|
//QMap<int,QList<qint64> > FLWTS;
|
|
|
|
//QMap<int,QDate> FLWDate;
|
2012-01-22 14:39:20 +00:00
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
unsigned char *m_buffer;
|
2012-01-22 14:39:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // ICON_LOADER_H
|