Move Viatom unexpected data warning to Open() instead of each file.

This commit is contained in:
sawinglogz 2020-01-26 18:28:10 -05:00
parent 8951068895
commit 3548b083fe
2 changed files with 38 additions and 36 deletions

View File

@ -26,17 +26,19 @@ static QSet<QString> s_unexpectedMessages;
bool bool
ViatomLoader::Detect(const QString & path) ViatomLoader::Detect(const QString & path)
{ {
// I don't know under what circumstances this is called... // This is only used for CPAP machines, when detecting CPAP cards.
qDebug() << "ViatomLoader::Detect(" << path << ")"; qDebug() << "ViatomLoader::Detect(" << path << ")";
return true; return false;
} }
int int
ViatomLoader::Open(const QString & dirpath) ViatomLoader::Open(const QString & dirpath)
{ {
qDebug() << "ViatomLoader::Open(" << dirpath << ")"; qDebug() << "ViatomLoader::Open(" << dirpath << ")";
Machine* mach = nullptr;
int imported = 0; int imported = 0;
int found = 0; int found = 0;
s_unexpectedMessages.clear();
if (QFileInfo(dirpath).isDir()) { if (QFileInfo(dirpath).isDir()) {
QDir dir(dirpath); QDir dir(dirpath);
@ -45,54 +47,53 @@ ViatomLoader::Open(const QString & dirpath)
dir.setSorting(QDir::Name); dir.setSorting(QDir::Name);
for (auto & fi : dir.entryInfoList()) { for (auto & fi : dir.entryInfoList()) {
imported += OpenFile(fi.canonicalFilePath()); mach = OpenFile(fi.canonicalFilePath());
if (mach) imported++;
found++; found++;
} }
} }
else { else {
// This filename has already been filtered by QFileDialog. // This filename has already been filtered by QFileDialog.
imported = OpenFile(dirpath); mach = OpenFile(dirpath);
if (mach) imported++;
found++; found++;
} }
if (!found) { if (!found) {
return -1; return -1;
} }
return imported; if (mach && s_unexpectedMessages.count() > 0 && p_profile->session->warnOnUnexpectedData()) {
} // Compare this to the list of messages previously seen for this machine
// and only alert if there are new ones.
int QSet<QString> newMessages = s_unexpectedMessages - mach->previouslySeenUnexpectedData();
ViatomLoader::OpenFile(const QString & filename) if (newMessages.count() > 0) {
{ // TODO: Rework the importer call structure so that this can become an
int imported = 0; // emit statement to the appropriate import job.
s_unexpectedMessages.clear(); QMessageBox::information(QApplication::activeWindow(),
QObject::tr("Untested Data"),
Session* sess = ParseFile(filename); QObject::tr("Your Viatom device generated data that OSCAR has never seen before.") +"\n\n"+
if (sess) { QObject::tr("The imported data may not be entirely accurate, so the developers would like a copy of this file to make sure OSCAR is handling the data correctly.")
SaveSessionToDatabase(sess); ,QMessageBox::Ok);
imported = 1; mach->previouslySeenUnexpectedData() += newMessages;
// TODO: Move this to Open()
if (s_unexpectedMessages.count() > 0 && p_profile->session->warnOnUnexpectedData()) {
// Compare this to the list of messages previously seen for this machine
// and only alert if there are new ones.
QSet<QString> newMessages = s_unexpectedMessages - sess->machine()->previouslySeenUnexpectedData();
if (newMessages.count() > 0) {
// TODO: Rework the importer call structure so that this can become an
// emit statement to the appropriate import job.
QMessageBox::information(QApplication::activeWindow(),
QObject::tr("Untested Data"),
QObject::tr("Your Viatom device generated data that OSCAR has never seen before.") +"\n\n"+
QObject::tr("The imported data may not be entirely accurate, so the developers would like a copy of this file to make sure OSCAR is handling the data correctly.")
,QMessageBox::Ok);
sess->machine()->previouslySeenUnexpectedData() += newMessages;
}
} }
} }
return imported; return imported;
} }
Machine* ViatomLoader::OpenFile(const QString & filename)
{
Machine* mach = nullptr;
Session* sess = ParseFile(filename);
if (sess) {
SaveSessionToDatabase(sess);
mach = sess->machine();
}
return mach;
}
Session* ViatomLoader::ParseFile(const QString & filename) Session* ViatomLoader::ParseFile(const QString & filename)
{ {
QFile file(filename); QFile file(filename);

View File

@ -12,7 +12,7 @@
#include "SleepLib/machine_loader.h" #include "SleepLib/machine_loader.h"
const QString viatom_class_name = "Viatom"; const QString viatom_class_name = "Viatom";
const int viatom_data_version = 1; const int viatom_data_version = 2;
/*! \class ViatomLoader /*! \class ViatomLoader
@ -27,9 +27,7 @@ class ViatomLoader : public MachineLoader
virtual bool Detect(const QString & path); virtual bool Detect(const QString & path);
virtual int Open(const QString & path); virtual int Open(const QString & path);
virtual int OpenFile(const QString & filename);
Session* ParseFile(const QString & filename); Session* ParseFile(const QString & filename);
void SaveSessionToDatabase(Session* session);
static void Register(); static void Register();
@ -45,6 +43,9 @@ class ViatomLoader : public MachineLoader
//Machine *CreateMachine(); //Machine *CreateMachine();
protected: protected:
Machine* OpenFile(const QString & filename);
void SaveSessionToDatabase(Session* session);
void AddEvent(ChannelID channel, qint64 t, EventDataType value); void AddEvent(ChannelID channel, qint64 t, EventDataType value);
void EndEventList(ChannelID channel, qint64 t); void EndEventList(ChannelID channel, qint64 t);