Move Viatom filename pattern matching into loader.

This commit is contained in:
sawinglogz 2020-01-26 17:51:56 -05:00
parent c06057ef14
commit b6f7ebac6f
4 changed files with 13 additions and 10 deletions

View File

@ -172,6 +172,11 @@ void ViatomLoader::EndEventList(ChannelID channel, qint64 /*t*/)
}
}
QStringList ViatomLoader::getNameFilter()
{
return QStringList("20[0-5][0-9][01][0-9][0-3][0-9][012][0-9][0-5][0-9][0-5][0-9]");
}
static bool viatom_initialized = false;
void

View File

@ -40,6 +40,8 @@ class ViatomLoader : public MachineLoader
return MachineInfo(MT_OXIMETER, 0, viatom_class_name, QObject::tr("Viatom"), QString(), QString(), QString(), QObject::tr("Viatom Software"), QDateTime::currentDateTime(), viatom_data_version);
}
QStringList getNameFilter();
//Machine *CreateMachine();
protected:

View File

@ -2399,13 +2399,13 @@ void MainWindow::on_actionImport_Somnopose_Data_triggered()
void MainWindow::on_actionImport_Viatom_Data_triggered()
{
ViatomLoader viatom;
QFileDialog w;
w.setFileMode(QFileDialog::ExistingFiles);
w.setFileMode(QFileDialog::AnyFile);
w.setWindowFlags(this->windowFlags() & ~Qt::WindowContextHelpButtonHint);
w.setOption(QFileDialog::ShowDirsOnly, false);
w.setNameFilters(QStringList("Viatom Data File (20[0-5][0-9][01][0-9][0-3][0-9][012][0-9][0-5][0-9][0-5][0-9])"));
ViatomLoader viatom;
w.setNameFilters(viatom.getNameFilter());
if (w.exec() == QFileDialog::Accepted) {
QString filename = w.selectedFiles()[0];

View File

@ -8,7 +8,6 @@
#include "viatomtests.h"
#include "sessiontests.h"
#include <QRegularExpression>
#define TESTDATA_PATH "./testdata/"
@ -47,17 +46,14 @@ static void parseAndEmitSessionYaml(const QString & path)
void ViatomTests::testSessionsToYaml()
{
static const QString root = TESTDATA_PATH "viatom/input/";
static const QRegularExpression re("(20[0-5][0-9][01][0-9][0-3][0-9][012][0-9][0-5][0-9][0-5][0-9])");
QDir dir(root);
dir.setFilter(QDir::NoDotAndDotDot | QDir::Dirs | QDir::Files | QDir::Hidden | QDir::NoSymLinks);
dir.setNameFilters(s_loader->getNameFilter());
dir.setSorting(QDir::Name);
for (auto & fi : dir.entryInfoList()) {
QRegularExpressionMatch match = re.match(fi.fileName());
if (match.hasMatch()) {
parseAndEmitSessionYaml(fi.canonicalFilePath());
}
parseAndEmitSessionYaml(fi.canonicalFilePath());
}
}