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 CMS50X 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-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
#ifndef CMS50LOADER_H
|
|
|
|
#define CMS50LOADER_H
|
|
|
|
|
2014-05-25 07:07:08 +00:00
|
|
|
#include <QtSerialPort/QSerialPort>
|
|
|
|
#include <QTimer>
|
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
#include "SleepLib/machine_loader.h"
|
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
const QString cms50_class_name = "CMS50";
|
|
|
|
const int cms50_data_version = 4;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2014-05-25 07:07:08 +00:00
|
|
|
struct OxiRecord
|
|
|
|
{
|
|
|
|
quint8 pulse;
|
|
|
|
quint8 spo2;
|
|
|
|
OxiRecord():pulse(0), spo2(0) {}
|
|
|
|
OxiRecord(quint8 p, quint8 s): pulse(p), spo2(s) {}
|
|
|
|
OxiRecord(const OxiRecord & copy) { pulse = copy.pulse; spo2= copy.spo2; }
|
|
|
|
};
|
|
|
|
|
|
|
|
class SerialLoader : public MachineLoader
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
SerialLoader() : MachineLoader() {}
|
|
|
|
virtual ~SerialLoader() {};
|
|
|
|
|
|
|
|
virtual bool Detect(const QString &path)=0;
|
|
|
|
virtual int Open(QString path, Profile *profile)=0;
|
|
|
|
|
|
|
|
static void Register() {}
|
|
|
|
|
|
|
|
virtual int Version()=0;
|
|
|
|
virtual const QString &ClassName()=0;
|
|
|
|
|
|
|
|
|
|
|
|
// Serial Stuff
|
|
|
|
virtual bool scanDevice(QString keyword="",quint16 vendor_id=0, quint16 product_id=0);
|
|
|
|
virtual bool openDevice();
|
|
|
|
virtual void closeDevice();
|
|
|
|
|
|
|
|
virtual void process() {}
|
|
|
|
|
|
|
|
signals:
|
|
|
|
void noDeviceFound();
|
|
|
|
void deviceDetected();
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
virtual void dataAvailable();
|
|
|
|
virtual void resetImportTimeout() {}
|
|
|
|
virtual void startImportTimeout() {}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual void processBytes(QByteArray buffer) { Q_UNUSED(buffer) }
|
|
|
|
|
|
|
|
virtual void killTimers() {}
|
|
|
|
virtual void resetDevice() {}
|
|
|
|
virtual void requestData() {}
|
|
|
|
|
|
|
|
QString port;
|
|
|
|
QSerialPort serial;
|
|
|
|
|
|
|
|
QTimer startTimer;
|
|
|
|
QTimer resetTimer;
|
|
|
|
|
|
|
|
quint16 m_productID;
|
|
|
|
quint16 m_vendorID;
|
|
|
|
};
|
2011-12-19 05:35:05 +00:00
|
|
|
|
|
|
|
/*! \class CMS50Loader
|
|
|
|
\brief Bulk Importer for CMS50 SPO2Review format.. Deprecated, as the Oximetry module does a better job
|
|
|
|
*/
|
2014-05-25 07:07:08 +00:00
|
|
|
class CMS50Loader : public SerialLoader
|
2011-06-26 08:30:44 +00:00
|
|
|
{
|
2014-05-25 07:07:08 +00:00
|
|
|
Q_OBJECT
|
2014-04-17 05:58:57 +00:00
|
|
|
public:
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
CMS50Loader();
|
|
|
|
virtual ~CMS50Loader();
|
2014-04-26 09:54:08 +00:00
|
|
|
|
2014-05-20 11:51:47 +00:00
|
|
|
virtual bool Detect(const QString &path);
|
2014-05-25 07:07:08 +00:00
|
|
|
virtual int Open(QString path, Profile *profile);
|
2014-05-20 11:51:47 +00:00
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
static void Register();
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
virtual int Version() { return cms50_data_version; }
|
|
|
|
virtual const QString &ClassName() { return cms50_class_name; }
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
Machine *CreateMachine(Profile *profile);
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2014-05-25 07:07:08 +00:00
|
|
|
virtual void process();
|
|
|
|
|
|
|
|
protected slots:
|
|
|
|
// virtual void dataAvailable();
|
|
|
|
virtual void resetImportTimeout();
|
|
|
|
virtual void startImportTimeout();
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
bool readSpoRFile(QString path);
|
|
|
|
virtual void processBytes(QByteArray bytes);
|
|
|
|
|
|
|
|
int doImportMode();
|
|
|
|
int doLiveMode();
|
|
|
|
|
|
|
|
QVector<OxiRecord> oxirec;
|
|
|
|
|
|
|
|
virtual void killTimers();
|
|
|
|
|
|
|
|
// Switch CMS50D+ device to live streaming mode
|
|
|
|
virtual void resetDevice();
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2014-05-25 07:07:08 +00:00
|
|
|
// Switch CMS50D+ device to record transmission mode
|
|
|
|
void requestData();
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2014-04-17 05:58:57 +00:00
|
|
|
private:
|
2014-05-25 07:07:08 +00:00
|
|
|
EventList *PULSE;
|
|
|
|
EventList *SPO2;
|
|
|
|
|
|
|
|
QTime m_time;
|
|
|
|
|
|
|
|
QByteArray buffer;
|
|
|
|
|
|
|
|
bool started_import;
|
|
|
|
bool finished_import;
|
|
|
|
bool started_reading;
|
|
|
|
bool cms50dplus;
|
|
|
|
QDateTime oxitime;
|
|
|
|
|
|
|
|
int cb_reset,imp_callbacks;
|
|
|
|
|
|
|
|
int received_bytes;
|
|
|
|
|
|
|
|
int m_itemCnt;
|
|
|
|
int m_itemTotal;
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#include <QTimeEdit>
|
|
|
|
#include <QCalendarWidget>
|
|
|
|
#include <QHBoxLayout>
|
|
|
|
#include <QTextCharFormat>
|
|
|
|
#include <QFont>
|
|
|
|
#include <QShortcut>
|
|
|
|
#include <QLineEdit>
|
|
|
|
|
|
|
|
class MyTimeEdit: public QDateTimeEdit
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
MyTimeEdit(QWidget *parent):QDateTimeEdit(parent) {
|
|
|
|
setKeyboardTracking(true);
|
|
|
|
this->setDisplayFormat("hh:mm:ssap");
|
|
|
|
|
|
|
|
editor()->setAlignment(Qt::AlignCenter);
|
|
|
|
}
|
|
|
|
QLineEdit * editor() const {
|
|
|
|
return this->lineEdit();
|
|
|
|
}
|
2011-06-26 08:30:44 +00:00
|
|
|
};
|
|
|
|
|
2014-05-25 07:07:08 +00:00
|
|
|
#include <QLabel>
|
|
|
|
#include <QDialog>
|
|
|
|
|
|
|
|
#include "sessionbar.h"
|
|
|
|
|
|
|
|
class DateTimeDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
DateTimeDialog(QString message, QWidget * parent = nullptr, Qt::WindowFlags flags = Qt::Dialog);
|
|
|
|
~DateTimeDialog();
|
|
|
|
|
|
|
|
QDateTime execute(QDateTime datetime);
|
|
|
|
void setMessage(QString msg) { m_msglabel->setText(msg); }
|
|
|
|
void setBottomMessage(QString msg) { m_bottomlabel->setText(msg); m_bottomlabel->setVisible(true);}
|
|
|
|
|
|
|
|
QCalendarWidget * cal() { return m_cal; }
|
|
|
|
signals:
|
|
|
|
public slots:
|
|
|
|
void reject();
|
|
|
|
void onDateSelected(QDate date);
|
|
|
|
void onSelectionChanged();
|
|
|
|
void onCurrentPageChanged(int year, int month);
|
|
|
|
void onSessionSelected(Session *);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
QVBoxLayout * layout;
|
|
|
|
QHBoxLayout * layout2;
|
|
|
|
|
|
|
|
QPushButton *acceptbutton;
|
|
|
|
QPushButton *resetbutton;
|
|
|
|
|
|
|
|
QLabel * m_msglabel;
|
|
|
|
QLabel * m_bottomlabel;
|
|
|
|
|
|
|
|
QCalendarWidget * m_cal;
|
|
|
|
MyTimeEdit * m_timeedit;
|
|
|
|
SessionBar * sessbar;
|
|
|
|
QFont font;
|
|
|
|
QShortcut * shortcutQuit;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2011-06-26 08:30:44 +00:00
|
|
|
#endif // CMS50LOADER_H
|