2018-04-27 04:29:03 +00:00
|
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
2014-04-09 21:01:57 +00:00
|
|
|
|
* vim: set ts=8 sts=4 et sw=4 tw=99:
|
|
|
|
|
*
|
|
|
|
|
* SleepLib RemStar M-Series Loader Header
|
|
|
|
|
*
|
2024-01-13 20:27:48 +00:00
|
|
|
|
* Copyright (c) 2019-2024 The OSCAR Team
|
2024-02-01 00:14:19 +00:00
|
|
|
|
* Copyright (C) 2011-2018 Mark Watkins
|
2014-04-09 21:01:57 +00:00
|
|
|
|
*
|
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
2018-06-04 20:48:38 +00:00
|
|
|
|
* License. See the file COPYING in the main directory of the source code
|
|
|
|
|
* for more details. */
|
2012-01-24 15:51:11 +00:00
|
|
|
|
|
|
|
|
|
#ifndef MSERIES_LOADER_H
|
|
|
|
|
#define MSERIES_LOADER_H
|
|
|
|
|
|
2023-02-18 23:42:41 +00:00
|
|
|
|
#include "SleepLib/appsettings.h"
|
|
|
|
|
#ifdef REMSTAR_M_SUPPORT
|
|
|
|
|
|
2012-01-24 15:51:11 +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-04-17 05:58:57 +00:00
|
|
|
|
const int mseries_data_version = 2;
|
2012-01-24 15:51:11 +00:00
|
|
|
|
//
|
|
|
|
|
//********************************************************************************************
|
|
|
|
|
|
|
|
|
|
/*! \class MSeries
|
2022-02-27 16:50:10 +00:00
|
|
|
|
\brief RemStar M-Series customized device object
|
2012-01-24 15:51:11 +00:00
|
|
|
|
*/
|
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:
|
2018-06-04 23:26:46 +00:00
|
|
|
|
MSeries(Profile *, 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
|
2018-04-27 04:29:03 +00:00
|
|
|
|
virtual int Open(const 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; }
|
|
|
|
|
|
2014-07-28 13:56:29 +00:00
|
|
|
|
//! \brief Return the loaderName, in this case "MSeries"
|
2018-04-27 04:29:03 +00:00
|
|
|
|
virtual const QString & loaderName() { return mseries_class_name; }
|
2012-01-24 15:51:11 +00:00
|
|
|
|
|
2022-02-27 16:50:10 +00:00
|
|
|
|
//! \brief Create a new PRS1 device record, indexed by Serial number.
|
2014-07-28 13:56:29 +00:00
|
|
|
|
// Machine *CreateMachine(QString serial);
|
|
|
|
|
|
|
|
|
|
virtual MachineInfo newInfo() {
|
2014-08-03 13:00:13 +00:00
|
|
|
|
return MachineInfo(MT_CPAP, 0, mseries_class_name, QObject::tr("Respironics"), QString(), QString(), QString(), QObject::tr("M-Series"), QDateTime::currentDateTime(), mseries_data_version);
|
2014-07-28 13:56:29 +00:00
|
|
|
|
}
|
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
|
|
|
|
};
|
|
|
|
|
|
2023-02-18 23:42:41 +00:00
|
|
|
|
#endif // REMSTAR_M_SUPPORT
|
2012-01-24 15:51:11 +00:00
|
|
|
|
#endif // MSERIES_LOADER_H
|