mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-04 02:00:43 +00:00
82 lines
2.5 KiB
C++
82 lines
2.5 KiB
C++
/* -*- 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) 2019-2024 The OSCAR Team
|
|
* Copyright (C) 2011-2018 Mark Watkins
|
|
*
|
|
* 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 source code
|
|
* for more details. */
|
|
|
|
#ifndef MSERIES_LOADER_H
|
|
#define MSERIES_LOADER_H
|
|
|
|
#include "SleepLib/appsettings.h"
|
|
#ifdef REMSTAR_M_SUPPORT
|
|
|
|
#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.
|
|
//
|
|
const int mseries_data_version = 2;
|
|
//
|
|
//********************************************************************************************
|
|
|
|
/*! \class MSeries
|
|
\brief RemStar M-Series customized device object
|
|
*/
|
|
class MSeries: public CPAP
|
|
{
|
|
public:
|
|
MSeries(Profile *, MachineID id = 0);
|
|
virtual ~MSeries();
|
|
};
|
|
|
|
|
|
const int mseries_load_buffer_size = 1024 * 1024;
|
|
|
|
|
|
const QString mseries_class_name = STR_MACH_MSeries;
|
|
|
|
class MSeriesLoader : public MachineLoader
|
|
{
|
|
public:
|
|
MSeriesLoader();
|
|
virtual ~MSeriesLoader();
|
|
|
|
//! \brief Detect if the given path contains a valid Folder structure
|
|
virtual bool Detect(const QString & path) { Q_UNUSED(path); return false; }
|
|
|
|
//! \brief Opens M-Series block device
|
|
virtual int Open(const QString & file);
|
|
|
|
//! \brief Returns the database version of this loader
|
|
virtual int Version() { return mseries_data_version; }
|
|
|
|
//! \brief Return the loaderName, in this case "MSeries"
|
|
virtual const QString & loaderName() { return mseries_class_name; }
|
|
|
|
//! \brief Create a new PRS1 device record, indexed by Serial number.
|
|
// Machine *CreateMachine(QString serial);
|
|
|
|
virtual MachineInfo newInfo() {
|
|
return MachineInfo(MT_CPAP, 0, mseries_class_name, QObject::tr("Respironics"), QString(), QString(), QString(), QObject::tr("M-Series"), QDateTime::currentDateTime(), mseries_data_version);
|
|
}
|
|
|
|
//! \brief Register this Module to the list of Loaders, so it knows to search for PRS1 data.
|
|
static void Register();
|
|
protected:
|
|
QHash<QString, Machine *> MachList;
|
|
quint32 epoch;
|
|
};
|
|
|
|
#endif // REMSTAR_M_SUPPORT
|
|
#endif // MSERIES_LOADER_H
|