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:
|
|
|
|
*
|
|
|
|
* Intellipap Loader Header
|
|
|
|
*
|
|
|
|
* 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. */
|
2011-11-26 04:00:31 +00:00
|
|
|
|
2011-11-20 02:59:00 +00:00
|
|
|
#ifndef INTELLIPAP_LOADER_H
|
|
|
|
#define INTELLIPAP_LOADER_H
|
|
|
|
|
|
|
|
#include "SleepLib/machine.h" // Base class: MachineLoader
|
|
|
|
#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 intellipap_data_version = 3;
|
2011-11-20 02:59:00 +00:00
|
|
|
//
|
|
|
|
//********************************************************************************************
|
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
/*! \class Intellipap
|
|
|
|
\brief Intellipap customized machine object
|
|
|
|
*/
|
2014-04-17 05:58:57 +00:00
|
|
|
class Intellipap: public CPAP
|
2011-11-20 02:59:00 +00:00
|
|
|
{
|
2014-04-17 05:58:57 +00:00
|
|
|
public:
|
2014-07-11 12:09:38 +00:00
|
|
|
Intellipap(MachineID id = 0);
|
2011-11-20 02:59:00 +00:00
|
|
|
virtual ~Intellipap();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
const int intellipap_load_buffer_size = 1024 * 1024;
|
2011-11-20 02:59:00 +00:00
|
|
|
|
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
const QString intellipap_class_name = STR_MACH_Intellipap;
|
2011-11-20 02:59:00 +00:00
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
/*! \class IntellipapLoader
|
|
|
|
\brief Loader for DeVilbiss Intellipap Auto data
|
|
|
|
This is only relatively recent addition and still needs more work
|
|
|
|
*/
|
2011-11-20 02:59:00 +00:00
|
|
|
class IntellipapLoader : public MachineLoader
|
|
|
|
{
|
2014-04-17 05:58:57 +00:00
|
|
|
public:
|
2011-11-20 02:59:00 +00:00
|
|
|
IntellipapLoader();
|
|
|
|
virtual ~IntellipapLoader();
|
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);
|
|
|
|
|
2011-12-19 05:35:05 +00:00
|
|
|
//! \brief Scans path for Intellipap data signature, and Loads any new data
|
2014-07-11 12:09:38 +00:00
|
|
|
virtual int Open(QString path);
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief Returns SleepLib database version of this IntelliPap loader
|
2011-11-20 02:59:00 +00:00
|
|
|
virtual int Version() { return intellipap_data_version; }
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief Returns the machine class name of this IntelliPap, "Intellipap"
|
2014-04-17 05:58:57 +00:00
|
|
|
virtual const QString &ClassName() { return intellipap_class_name; }
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief Creates a machine object, indexed by serial number
|
2014-07-11 12:09:38 +00:00
|
|
|
Machine *CreateMachine(QString serial);
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
//! \brief Registers this MachineLoader with the master list, so Intellipap data can load
|
2011-11-20 02:59:00 +00:00
|
|
|
static void Register();
|
2014-04-17 05:58:57 +00:00
|
|
|
protected:
|
2011-11-20 02:59:00 +00:00
|
|
|
QString last;
|
2014-04-17 05:58:57 +00:00
|
|
|
QHash<QString, Machine *> MachList;
|
2011-11-20 02:59:00 +00:00
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
unsigned char *m_buffer;
|
2011-11-20 02:59:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif // INTELLIPAP_LOADER_H
|