mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Logical and of channel type with FLAG, to prevent extra messages
This commit is contained in:
parent
6747324429
commit
569f5794c7
@ -42,6 +42,16 @@ const QString STR_ResMed_AirCurve11 = "AirCurve 11";
|
|||||||
const QString STR_ResMed_S9 = "S9";
|
const QString STR_ResMed_S9 = "S9";
|
||||||
const QString STR_UnknownModel = "Resmed ???";
|
const QString STR_UnknownModel = "Resmed ???";
|
||||||
|
|
||||||
|
// TODO: See the PRSLoader::LogUnexpectedMessage TODO about generalizing this for other loaders.
|
||||||
|
void ResmedLoader::LogUnexpectedMessage(const QString & message)
|
||||||
|
{
|
||||||
|
m_importMutex.lock();
|
||||||
|
m_unexpectedMessages += message;
|
||||||
|
m_importMutex.unlock();
|
||||||
|
}
|
||||||
|
|
||||||
|
static const QVector<int> AS11TestedModels {39420, 0};
|
||||||
|
|
||||||
ResmedLoader::ResmedLoader() {
|
ResmedLoader::ResmedLoader() {
|
||||||
#ifndef UNITTEST_MODE
|
#ifndef UNITTEST_MODE
|
||||||
const QString RMS9_ICON = ":/icons/rms9.png";
|
const QString RMS9_ICON = ":/icons/rms9.png";
|
||||||
|
@ -136,6 +136,8 @@ class ResmedLoader : public CPAPLoader
|
|||||||
ResDaySaveCallback saveCallback;
|
ResDaySaveCallback saveCallback;
|
||||||
int OpenWithCallback(const QString & dirpath, ResDaySaveCallback s);
|
int OpenWithCallback(const QString & dirpath, ResDaySaveCallback s);
|
||||||
|
|
||||||
|
void LogUnexpectedMessage(const QString & message);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
//! \brief The STR.edf file is a unique edf file with many signals
|
//! \brief The STR.edf file is a unique edf file with many signals
|
||||||
bool ProcessSTRfiles(Machine *, QMap<QDate, STRFile> &, QDate);
|
bool ProcessSTRfiles(Machine *, QMap<QDate, STRFile> &, QDate);
|
||||||
@ -166,9 +168,16 @@ protected:
|
|||||||
volatile qint64 timeInAddWaveform;
|
volatile qint64 timeInAddWaveform;
|
||||||
volatile qint64 timeInTimeDelta;
|
volatile qint64 timeInTimeDelta;
|
||||||
QMutex timeMutex;
|
QMutex timeMutex;
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
// TODO: This really belongs in a generic location that all loaders can use.
|
||||||
|
// But that will require retooling the overall call structure so that there's
|
||||||
|
// a top-level import job that's managing a specific import. Right now it's
|
||||||
|
// essentially managed by the importCPAP method rather than an object instance
|
||||||
|
// with state.
|
||||||
|
QMutex m_importMutex;
|
||||||
|
QSet<QString> m_unexpectedMessages;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // RESMED_LOADER_H
|
#endif // RESMED_LOADER_H
|
||||||
|
@ -1143,7 +1143,7 @@ void Session::updateCountSummary(ChannelID code)
|
|||||||
using namespace schema;
|
using namespace schema;
|
||||||
Channel *ch_p = channel.channels[code];
|
Channel *ch_p = channel.channels[code];
|
||||||
if ( ! ch_p->isNull() ) {
|
if ( ! ch_p->isNull() ) {
|
||||||
if ( ch_p->type() == FLAG )
|
if ( (ch_p->type() & FLAG) == FLAG )
|
||||||
return;
|
return;
|
||||||
qDebug() << "No valuesummary for channel " << ch_p->label();
|
qDebug() << "No valuesummary for channel " << ch_p->label();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user