mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Simplify ResmedLoader::Detect() by avoiding manual string manipulation.
Signed-off-by: Mark Watkins <jedimark@users.sourceforge.net>
This commit is contained in:
parent
945e72afe9
commit
a155efa878
@ -370,30 +370,21 @@ const QString RMS9_STR_strfile = "STR.";
|
||||
|
||||
bool ResmedLoader::Detect(const QString & givenpath)
|
||||
{
|
||||
QString path = givenpath;
|
||||
QDir dir(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)) {
|
||||
if (!dir.exists()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
QFile str(path+"STR.edf");
|
||||
if (!str.exists())
|
||||
// ResMed drives contain a folder named "DATALOG".
|
||||
if (!dir.exists(RMS9_STR_datalog)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// They also contain a file named "STR.edf".
|
||||
if (!dir.exists("STR.edf")) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user