mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Implemented ResmedLoader autoscanner Detect() code
This commit is contained in:
parent
2fca186def
commit
4790025697
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user