2022-02-27 16:01:46 +00:00
|
|
|
/* SleepLib Device Loader Class Implementation
|
2014-05-25 16:20:33 +00:00
|
|
|
*
|
2024-02-01 00:14:19 +00:00
|
|
|
* Copyright (c) 2011-2018 Mark Watkins
|
2024-01-13 20:27:48 +00:00
|
|
|
* Copyright (c) 2019-2024 The OSCAR Team
|
2014-05-25 16:20:33 +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. */
|
2014-05-25 16:20:33 +00:00
|
|
|
|
|
|
|
#include "serialoximeter.h"
|
|
|
|
|
|
|
|
// Possibly need to replan this to include oximetry
|
|
|
|
|
|
|
|
QList<SerialOximeter *> GetOxiLoaders()
|
|
|
|
{
|
|
|
|
QList<SerialOximeter *> oxiloaders;
|
|
|
|
|
|
|
|
QList<MachineLoader *> loaders = GetLoaders(MT_OXIMETER);
|
|
|
|
|
|
|
|
Q_FOREACH(MachineLoader * loader, loaders) {
|
|
|
|
SerialOximeter * oxi = qobject_cast<SerialOximeter *>(loader);
|
|
|
|
oxiloaders.push_back(oxi);
|
|
|
|
}
|
|
|
|
|
|
|
|
return oxiloaders;
|
|
|
|
}
|
2014-09-19 03:19:11 +00:00
|
|
|
bool SerialOximeter::scanDevice(QString keyword, quint16 vendor_id, quint16 product_id)
|
2014-05-25 16:20:33 +00:00
|
|
|
{
|
2014-09-19 02:18:19 +00:00
|
|
|
static bool dumponce = true;
|
2014-05-25 16:20:33 +00:00
|
|
|
QStringList ports;
|
|
|
|
|
2019-06-11 14:30:51 +00:00
|
|
|
qDebug() << "seroxi - Scanning for USB Serial devices";
|
2020-06-04 18:32:03 +00:00
|
|
|
QList<SerialPortInfo> list=SerialPortInfo::availablePorts();
|
2014-05-25 16:20:33 +00:00
|
|
|
|
|
|
|
// How does the mac detect this as a SPO2 device?
|
|
|
|
for (int i=0;i<list.size();i++) {
|
2020-06-04 18:32:03 +00:00
|
|
|
const SerialPortInfo * info = &list.at(i);
|
2014-09-19 02:07:28 +00:00
|
|
|
QString name = info->portName();
|
|
|
|
QString desc = info->description();
|
2014-05-25 16:20:33 +00:00
|
|
|
|
2014-09-19 03:03:34 +00:00
|
|
|
if ((!keyword.isEmpty() && (desc.contains(keyword, Qt::CaseInsensitive) || name.contains(keyword, Qt::CaseInsensitive))) ||
|
2014-09-19 02:07:28 +00:00
|
|
|
((info->hasVendorIdentifier() && (info->vendorIdentifier() == vendor_id))
|
|
|
|
&& (info->hasProductIdentifier() && (info->productIdentifier() == product_id))))
|
2014-05-25 16:20:33 +00:00
|
|
|
{
|
|
|
|
ports.push_back(name);
|
2014-09-19 02:52:20 +00:00
|
|
|
QString dbg=QString("Found Serial Port: Name: %1 Desc: %2 Manufacturer: %3 Location: %4").arg(name).arg(desc).arg(info->manufacturer()).arg(info->systemLocation());
|
2014-05-25 16:20:33 +00:00
|
|
|
|
|
|
|
if (info->hasProductIdentifier()) //60000
|
2014-09-19 02:07:28 +00:00
|
|
|
dbg += QString(" PID: %1").arg(info->productIdentifier());
|
2014-05-25 16:20:33 +00:00
|
|
|
if (info->hasVendorIdentifier()) // 4292
|
2014-09-19 02:07:28 +00:00
|
|
|
dbg += QString(" VID: %1").arg(info->vendorIdentifier());
|
2014-05-25 16:20:33 +00:00
|
|
|
|
2019-06-11 14:30:51 +00:00
|
|
|
qDebug() << "seroxi - " << dbg.toLocal8Bit().data();
|
2014-05-25 16:20:33 +00:00
|
|
|
break;
|
2014-09-19 02:18:19 +00:00
|
|
|
} else if (dumponce) {
|
2014-09-19 03:03:34 +00:00
|
|
|
QString dbg=QString("Other Serial Port: Name: %1 Desc: %2 Manufacturer: %3 Location: %4").arg(name).arg(desc).arg(info->manufacturer()).arg(info->systemLocation());
|
2014-09-19 02:07:28 +00:00
|
|
|
|
|
|
|
if (info->hasProductIdentifier()) //60000
|
|
|
|
dbg += QString(" PID: %1").arg(info->productIdentifier());
|
|
|
|
if (info->hasVendorIdentifier()) // 4292
|
|
|
|
dbg += QString(" VID: %1").arg(info->vendorIdentifier());
|
|
|
|
|
2019-06-11 14:30:51 +00:00
|
|
|
qDebug() << "seroxi - " << dbg.toLocal8Bit().data();
|
2014-05-25 16:20:33 +00:00
|
|
|
}
|
|
|
|
}
|
2014-09-19 02:18:19 +00:00
|
|
|
dumponce = false;
|
2014-05-25 16:20:33 +00:00
|
|
|
if (ports.isEmpty()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (ports.size()>1) {
|
2019-06-11 14:30:51 +00:00
|
|
|
qDebug() << "seroxi - More than one serial device matching these parameters was found, choosing the first by default";
|
2014-05-25 16:20:33 +00:00
|
|
|
}
|
|
|
|
port=ports.at(0);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SerialOximeter::closeDevice()
|
|
|
|
{
|
|
|
|
killTimers();
|
|
|
|
disconnect(&serial,SIGNAL(readyRead()), this, SLOT(dataAvailable()));
|
|
|
|
serial.close();
|
|
|
|
m_streaming = false;
|
2019-06-11 14:30:51 +00:00
|
|
|
qDebug() << "seroxi - Port" << port << "closed";
|
2014-05-25 16:20:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool SerialOximeter::openDevice()
|
|
|
|
{
|
|
|
|
if (port.isEmpty()) {
|
|
|
|
if (!scanDevice("",m_vendorID, m_productID))
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
serial.setPortName(port);
|
|
|
|
if (!serial.open(QSerialPort::ReadWrite))
|
|
|
|
return false;
|
|
|
|
|
|
|
|
// forward this stuff
|
|
|
|
|
|
|
|
// Set up serial port attributes
|
|
|
|
serial.setBaudRate(QSerialPort::Baud19200);
|
|
|
|
serial.setParity(QSerialPort::OddParity);
|
|
|
|
serial.setStopBits(QSerialPort::OneStop);
|
|
|
|
serial.setDataBits(QSerialPort::Data8);
|
|
|
|
serial.setFlowControl(QSerialPort::NoFlowControl);
|
|
|
|
|
|
|
|
m_streaming = true;
|
|
|
|
m_abort = false;
|
|
|
|
m_importing = false;
|
|
|
|
|
|
|
|
// connect relevant signals
|
|
|
|
connect(&serial,SIGNAL(readyRead()), this, SLOT(dataAvailable()));
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void SerialOximeter::dataAvailable()
|
|
|
|
{
|
|
|
|
QByteArray bytes;
|
|
|
|
|
|
|
|
int available = serial.bytesAvailable();
|
|
|
|
bytes.resize(available);
|
|
|
|
|
|
|
|
int bytesread = serial.read(bytes.data(), available);
|
|
|
|
if (bytesread == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (m_abort) {
|
|
|
|
closeDevice();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
processBytes(bytes);
|
|
|
|
}
|
|
|
|
|
2014-05-26 07:37:28 +00:00
|
|
|
void SerialOximeter::stopRecording()
|
|
|
|
{
|
|
|
|
closeDevice();
|
|
|
|
m_status = NEUTRAL;
|
|
|
|
emit importComplete(this);
|
|
|
|
}
|
2014-05-28 09:35:21 +00:00
|
|
|
|
|
|
|
void SerialOximeter::trashRecords()
|
|
|
|
{
|
|
|
|
QMap<QDateTime, QVector<OxiRecord> *>::iterator it;
|
|
|
|
for (it = oxisessions.begin(); it != oxisessions.end(); ++it) {
|
|
|
|
delete it.value();
|
|
|
|
}
|
|
|
|
oxisessions.clear();
|
|
|
|
oxirec = nullptr;
|
|
|
|
}
|