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 RemStar M-Series 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. */
|
2012-01-24 15:51:11 +00:00
|
|
|
|
|
|
|
#ifndef MSERIES_LOADER_H
|
|
|
|
#define MSERIES_LOADER_H
|
|
|
|
|
|
|
|
#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-04-17 05:58:57 +00:00
|
|
|
const int mseries_data_version = 2;
|
2012-01-24 15:51:11 +00:00
|
|
|
//
|
|
|
|
//********************************************************************************************
|
|
|
|
|
|
|
|
/*! \class MSeries
|
|
|
|
\brief RemStar M-Series customized machine object
|
|
|
|
*/
|
2014-04-17 05:58:57 +00:00
|
|
|
class MSeries: public CPAP
|
2012-01-24 15:51:11 +00:00
|
|
|
{
|
2014-04-17 05:58:57 +00:00
|
|
|
public:
|
2014-07-11 12:09:38 +00:00
|
|
|
MSeries(MachineID id = 0);
|
2012-01-24 15:51:11 +00:00
|
|
|
virtual ~MSeries();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
const int mseries_load_buffer_size = 1024 * 1024;
|
2012-01-24 15:51:11 +00:00
|
|
|
|
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
const QString mseries_class_name = STR_MACH_MSeries;
|
2012-01-24 15:51:11 +00:00
|
|
|
|
|
|
|
class MSeriesLoader : public MachineLoader
|
|
|
|
{
|
2014-04-17 05:58:57 +00:00
|
|
|
public:
|
2012-01-24 15:51:11 +00:00
|
|
|
MSeriesLoader();
|
|
|
|
virtual ~MSeriesLoader();
|
|
|
|
|
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) { Q_UNUSED(path); return false; }
|
|
|
|
|
2012-01-24 15:51:11 +00:00
|
|
|
//! \brief Opens M-Series block device
|
2014-07-11 12:09:38 +00:00
|
|
|
virtual int Open(QString file);
|
2012-01-24 15:51:11 +00:00
|
|
|
|
|
|
|
//! \brief Returns the database version of this loader
|
|
|
|
virtual int Version() { return mseries_data_version; }
|
|
|
|
|
|
|
|
//! \brief Return the ClassName, in this case "MSeries"
|
2014-04-17 05:58:57 +00:00
|
|
|
virtual const QString &ClassName() { return mseries_class_name; }
|
2012-01-24 15:51:11 +00:00
|
|
|
|
|
|
|
//! \brief Create a new PRS1 machine record, indexed by Serial number.
|
2014-07-11 12:09:38 +00:00
|
|
|
Machine *CreateMachine(QString serial);
|
2012-01-24 15:51:11 +00:00
|
|
|
|
|
|
|
//! \brief Register this Module to the list of Loaders, so it knows to search for PRS1 data.
|
|
|
|
static void Register();
|
2014-04-17 05:58:57 +00:00
|
|
|
protected:
|
|
|
|
QHash<QString, Machine *> MachList;
|
2012-02-03 13:52:07 +00:00
|
|
|
quint32 epoch;
|
2012-01-24 15:51:11 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MSERIES_LOADER_H
|