Logical and of channel type with FLAG, to prevent extra messages

This commit is contained in:
Phil Olynyk 2021-07-31 23:30:24 -04:00
parent 6747324429
commit 569f5794c7
3 changed files with 22 additions and 3 deletions

View File

@ -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";

View File

@ -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

View File

@ -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();
} }