From 4790025697f1288b9c540da39ced8bd3f30c7e18 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Mon, 28 Apr 2014 14:01:55 +1000 Subject: [PATCH] Implemented ResmedLoader autoscanner Detect() code --- .../SleepLib/loader_plugins/resmed_loader.cpp | 35 +++++++++++++++---- 1 file changed, 29 insertions(+), 6 deletions(-) diff --git a/sleepyhead/SleepLib/loader_plugins/resmed_loader.cpp b/sleepyhead/SleepLib/loader_plugins/resmed_loader.cpp index a6ab7614..7f4cd648 100644 --- a/sleepyhead/SleepLib/loader_plugins/resmed_loader.cpp +++ b/sleepyhead/SleepLib/loader_plugins/resmed_loader.cpp @@ -368,6 +368,35 @@ const QString RMS9_STR_datalog = "DATALOG"; const QString RMS9_STR_idfile = "Identification."; const QString RMS9_STR_strfile = "STR."; +bool ResmedLoader::Detect(const QString & givenpath) +{ + QString path = givenpath; + + path.replace("\\", "/"); + + // Strip off end "/" if any + if (path.endsWith("/")) { + path = path.section("/", 0, -2); + } + + // Strip off DATALOG from path, and set newpath to the path contianing DATALOG + if (path.endsWith(RMS9_STR_datalog)) { + path = path.section("/", 0, -2); + } + + path += "/"; + + // Check DATALOG folder exists and is readable + if (!QDir().exists(path + RMS9_STR_datalog)) { + return false; + } + + QFile str(path+"STR.edf"); + if (!str.exists()) + return false; + + return true; +} int ResmedLoader::Open(QString &path, Profile *profile) { @@ -2367,12 +2396,6 @@ bool ResmedLoader::LoadPLD(Session *sess, EDFParser &edf) return true; } -bool ResmedLoader::Detect(const QString & path) -{ - return false; -} - - const QString RMS9_STR_Escape = "S9 Escape"; const QString RMS9_STR_EscapeAuto = "S9 Escape Auto"; const QString RMS9_STR_Elite = "S9 Elite";