diff --git a/oscar/SleepLib/loader_plugins/prs1_loader.cpp b/oscar/SleepLib/loader_plugins/prs1_loader.cpp index a87598ec..23ab9a99 100644 --- a/oscar/SleepLib/loader_plugins/prs1_loader.cpp +++ b/oscar/SleepLib/loader_plugins/prs1_loader.cpp @@ -470,6 +470,54 @@ QString PRS1Loader::checkDir(const QString & path) return machpath; } + +QStringList PRS1Loader::FindMachinesOnCard(const QString & cardPath) +{ + QStringList machinePaths; + + // If it contains a P-Series folder, it's a PRS1 SD card + QDir pseries(cardPath + QDir::separator() + "P-Series"); + if (!pseries.exists()) { + // Check for the all-caps version in case this is on a case-sensitive filesystem. + pseries = QDir(cardPath + QDir::separator() + "P-SERIES"); + } + if (pseries.exists()) { + pseries.setFilter(QDir::NoDotAndDotDot | QDir::Dirs | QDir::Files | QDir::Hidden | QDir::NoSymLinks); + pseries.setSorting(QDir::Name); + QFileInfoList plist = pseries.entryInfoList(); + + // Look for machine directories (containing a PROP.TXT or properties.txt) + QFileInfoList propertyfiles; + for (auto & pfi : plist) { + if (pfi.isDir()) { + QString machinePath = pfi.canonicalFilePath(); + QDir machineDir(machinePath); + QFileInfoList mlist = machineDir.entryInfoList(); + for (auto & mfi : mlist) { + if (QDir::match("PROP*.TXT", mfi.fileName())) { + // Found a properties file, this is a machine folder + propertyfiles.append(mfi); + } + } + } + } + + // Sort machines from oldest to newest. + std::sort(propertyfiles.begin(), propertyfiles.end(), + [](const QFileInfo & a, const QFileInfo & b) + { + return a.lastModified() < b.lastModified(); + }); + + for (auto & propertyfile : propertyfiles) { + machinePaths.append(propertyfile.canonicalPath()); + } + } + + return machinePaths; +} + + void parseModel(MachineInfo & info, const QString & modelnum) { info.modelnumber = modelnum; diff --git a/oscar/SleepLib/loader_plugins/prs1_loader.h b/oscar/SleepLib/loader_plugins/prs1_loader.h index 6b634af7..27f08bac 100644 --- a/oscar/SleepLib/loader_plugins/prs1_loader.h +++ b/oscar/SleepLib/loader_plugins/prs1_loader.h @@ -444,6 +444,9 @@ class PRS1Loader : public CPAPLoader QString last; QHash PRS1List; + //! \brief Returns the path for each machine detected on an SD card, from oldest to newest + QStringList FindMachinesOnCard(const QString & cardPath); + //! \brief Opens the SD folder structure for this machine, scans for data files and imports any new sessions int OpenMachine(const QString & path); diff --git a/oscar/tests/prs1tests.cpp b/oscar/tests/prs1tests.cpp index 28cb6d71..806b16b0 100644 --- a/oscar/tests/prs1tests.cpp +++ b/oscar/tests/prs1tests.cpp @@ -397,44 +397,20 @@ void iterateTestCards(const QString & root, void (*action)(const QString &)) // Look through each folder in the given root for (auto & fi : flist) { if (fi.isDir()) { - // If it contains a P-Series folder, it's a PRS1 SD card - QDir pseries(fi.canonicalFilePath() + QDir::separator() + "P-Series"); - if (!pseries.exists()) { - // Check for the all-caps version in case this is on a case-sensitive filesystem. - pseries = QDir(fi.canonicalFilePath() + QDir::separator() + "P-SERIES"); - } - if (pseries.exists()) { - pseries.setFilter(QDir::NoDotAndDotDot | QDir::Dirs | QDir::Files | QDir::Hidden | QDir::NoSymLinks); - pseries.setSorting(QDir::Name); - QFileInfoList plist = pseries.entryInfoList(); + QStringList machinePaths = s_loader->FindMachinesOnCard(fi.canonicalFilePath()); - // Look for machine directories (containing a PROP.TXT or properties.txt) - QFileInfoList propertyfiles; - for (auto & pfi : plist) { - if (pfi.isDir()) { - QString machinePath = pfi.canonicalFilePath(); - QDir machineDir(machinePath); - QFileInfoList mlist = machineDir.entryInfoList(); - for (auto & mfi : mlist) { - if (QDir::match("PROP*.TXT", mfi.fileName())) { - // Found a properties file, this is a machine folder - propertyfiles.append(mfi); - } - } - } - } - - // Sort machines from oldest to newest. - std::sort(propertyfiles.begin(), propertyfiles.end(), - [](const QFileInfo & a, const QFileInfo & b) - { - return a.lastModified() < b.lastModified(); - }); - // Process machine. - for (auto & propertyfile : propertyfiles) { - QString machinePath = propertyfile.canonicalPath(); - action(machinePath); - } + // Tests should be run newest to oldest, since older sets tend to have more + // complete data. (These are usually previously cleared data in the Clear0/Cn + // directories.) The machines themselves will write out the summary data they + // remember when they see an empty folder, without event or waveform data. + // And since these tests (by design) overwrite existing output, we want the + // earlier (more complete) data to be what's written last. + // + // Since the loader itself keeps only the first set of data it sees for a session, + // we want to leave its earliest-to-latest ordering in place, and just reverse it + // here. + for (auto i = machinePaths.crbegin(); i != machinePaths.crend(); i++) { + action(*i); } } }