Simplify ResmedLoader::Detect() by avoiding manual string manipulation.

Signed-off-by: Mark Watkins <jedimark@users.sourceforge.net>
This commit is contained in:
Sean Stangl 2014-04-28 11:45:33 -07:00 committed by Mark Watkins
parent 945e72afe9
commit a155efa878

View File

@ -370,30 +370,21 @@ const QString RMS9_STR_strfile = "STR.";
bool ResmedLoader::Detect(const QString & givenpath) bool ResmedLoader::Detect(const QString & givenpath)
{ {
QString path = givenpath; QDir dir(givenpath);
path.replace("\\", "/"); if (!dir.exists()) {
// 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; return false;
} }
QFile str(path+"STR.edf"); // ResMed drives contain a folder named "DATALOG".
if (!str.exists()) if (!dir.exists(RMS9_STR_datalog)) {
return false; return false;
}
// They also contain a file named "STR.edf".
if (!dir.exists("STR.edf")) {
return false;
}
return true; return true;
} }