mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 19:20:45 +00:00
Some SleepStyle machines were incorrectly identified as Icon machines.
This commit is contained in:
parent
dabfb26152
commit
3a12ae5c71
@ -15,6 +15,7 @@
|
|||||||
<br>Portions of OSCAR are © 2019-2022 by
|
<br>Portions of OSCAR are © 2019-2022 by
|
||||||
<i>The OSCAR Team</i></p>
|
<i>The OSCAR Team</i></p>
|
||||||
<ul>
|
<ul>
|
||||||
|
<li>[fix] Correct SleepStyle machines sometimes identified as Icon machines.</li>
|
||||||
<li>[fix] Update copyright notices in html files.</li>
|
<li>[fix] Update copyright notices in html files.</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p>
|
<p>
|
||||||
|
@ -35,8 +35,114 @@ FPIconLoader::~FPIconLoader()
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* getIconDir - returns the path to the ICON directory
|
||||||
|
*/
|
||||||
|
QString getIconDir2 (QString givenpath) {
|
||||||
|
|
||||||
|
QString path = givenpath;
|
||||||
|
|
||||||
|
path = path.replace("\\", "/");
|
||||||
|
|
||||||
|
if (path.endsWith("/")) {
|
||||||
|
path.chop(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (path.endsWith("/" + FPHCARE)) {
|
||||||
|
path = path.section("/",0,-2);
|
||||||
|
}
|
||||||
|
|
||||||
|
QDir dir(path);
|
||||||
|
|
||||||
|
if (!dir.exists()) {
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
// If this is a backup directory, higher level directories have been
|
||||||
|
// omitted.
|
||||||
|
if (path.endsWith("/Backup/", Qt::CaseInsensitive))
|
||||||
|
return path;
|
||||||
|
|
||||||
|
// F&P Icon have a folder called FPHCARE in the root directory
|
||||||
|
if (!dir.exists(FPHCARE)) {
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
// CHECKME: I can't access F&P ICON data right now
|
||||||
|
if (!dir.exists("FPHCARE/ICON")) {
|
||||||
|
return "";
|
||||||
|
}
|
||||||
|
|
||||||
|
return dir.filePath("FPHCARE/ICON");
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* getIconMachines returns a list of all Iocn machine folders in the ICON directory
|
||||||
|
*/
|
||||||
|
QStringList getIconMachines (QString iconPath) {
|
||||||
|
QStringList iconMachines;
|
||||||
|
|
||||||
|
QDir iconDir (iconPath);
|
||||||
|
|
||||||
|
iconDir.setFilter(QDir::NoDotAndDotDot | QDir::Dirs | QDir::Files | QDir::Hidden | QDir::NoSymLinks);
|
||||||
|
iconDir.setSorting(QDir::Name);
|
||||||
|
|
||||||
|
QFileInfoList flist = iconDir.entryInfoList(); // List of Icon subdirectories
|
||||||
|
|
||||||
|
// Walk though directory list and save those that appear to be for SleepStyle machins.
|
||||||
|
for (int i = 0; i < flist.size(); i++) {
|
||||||
|
QFileInfo fi = flist.at(i);
|
||||||
|
QString filename = fi.fileName();
|
||||||
|
|
||||||
|
// directory is serial number and must have a SUM*.FPH file within it to be an Icon or SleepStyle folder
|
||||||
|
|
||||||
|
QDir machineDir (iconPath + "/" + filename);
|
||||||
|
machineDir.setFilter(QDir::NoDotAndDotDot | QDir::Files | QDir::Hidden | QDir::NoSymLinks);
|
||||||
|
machineDir.setSorting(QDir::Name);
|
||||||
|
QStringList filters;
|
||||||
|
filters << "SUM*.fph";
|
||||||
|
machineDir.setNameFilters(filters);
|
||||||
|
QFileInfoList flist = machineDir.entryInfoList();
|
||||||
|
if (flist.size() <= 0) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Find out what machine model this is
|
||||||
|
QFile sumFile (flist.at(0).absoluteFilePath());
|
||||||
|
|
||||||
|
QString line;
|
||||||
|
|
||||||
|
sumFile.open(QIODevice::ReadOnly);
|
||||||
|
QTextStream instr(&sumFile);
|
||||||
|
for (int j = 0; j < 5; j++) {
|
||||||
|
line = "";
|
||||||
|
QString c = "";
|
||||||
|
while ((c = instr.read(1)) != "\r") {
|
||||||
|
line += c;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sumFile.close();
|
||||||
|
if (line.toUpper() == "ICON")
|
||||||
|
iconMachines.push_back(filename);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
return iconMachines;
|
||||||
|
}
|
||||||
|
|
||||||
bool FPIconLoader::Detect(const QString & givenpath)
|
bool FPIconLoader::Detect(const QString & givenpath)
|
||||||
{
|
{
|
||||||
|
QString iconPath = getIconDir2(givenpath);
|
||||||
|
if (iconPath.isEmpty())
|
||||||
|
return false;
|
||||||
|
|
||||||
|
QStringList machines = getIconMachines(iconPath);
|
||||||
|
if (machines.length() <= 0)
|
||||||
|
// Did not find any SleepStyle machine directories
|
||||||
|
return false;
|
||||||
|
|
||||||
|
return true;
|
||||||
|
/****
|
||||||
QString path = givenpath;
|
QString path = givenpath;
|
||||||
|
|
||||||
path = path.replace("\\", "/");
|
path = path.replace("\\", "/");
|
||||||
@ -87,66 +193,32 @@ bool FPIconLoader::Detect(const QString & givenpath)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
|
****/
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
int FPIconLoader::Open(const QString & path)
|
int FPIconLoader::Open(const QString & path)
|
||||||
{
|
{
|
||||||
QString tmp = path;
|
QString iconPath = getIconDir2(path);
|
||||||
|
if (iconPath.isEmpty())
|
||||||
|
return false;
|
||||||
|
|
||||||
tmp = tmp.replace("\\", "/");
|
QStringList serialNumbers = getIconMachines(iconPath);
|
||||||
if (tmp.endsWith("/")) {
|
if (serialNumbers.length() <= 0)
|
||||||
tmp.chop(1);
|
// Did not find any SleepStyle machine directories
|
||||||
}
|
return false;
|
||||||
|
|
||||||
QString newpath;
|
|
||||||
|
|
||||||
if (tmp.endsWith("/" + FPHCARE)) {
|
|
||||||
newpath = tmp;
|
|
||||||
} else {
|
|
||||||
newpath = tmp + "/" + FPHCARE;
|
|
||||||
}
|
|
||||||
|
|
||||||
newpath += "/ICON/";
|
|
||||||
|
|
||||||
QString filename;
|
|
||||||
|
|
||||||
QDir dir(newpath);
|
|
||||||
|
|
||||||
if ((!dir.exists() || !dir.isReadable())) {
|
|
||||||
return -1;
|
|
||||||
}
|
|
||||||
|
|
||||||
dir.setFilter(QDir::NoDotAndDotDot | QDir::Dirs | QDir::Files | QDir::Hidden | QDir::NoSymLinks);
|
|
||||||
dir.setSorting(QDir::Name);
|
|
||||||
QFileInfoList flist = dir.entryInfoList();
|
|
||||||
|
|
||||||
QStringList SerialNumbers;
|
|
||||||
|
|
||||||
bool ok;
|
|
||||||
|
|
||||||
for (int i = 0; i < flist.size(); i++) {
|
|
||||||
QFileInfo fi = flist.at(i);
|
|
||||||
QString filename = fi.fileName();
|
|
||||||
|
|
||||||
filename.toInt(&ok);
|
|
||||||
|
|
||||||
if (ok) {
|
|
||||||
SerialNumbers.push_back(filename);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Machine *m;
|
Machine *m;
|
||||||
|
|
||||||
QString npath;
|
QString npath;
|
||||||
|
|
||||||
int c = 0;
|
int c = 0;
|
||||||
for (int i = 0; i < SerialNumbers.size(); i++) {
|
for (int i = 0; i < serialNumbers.size(); i++) {
|
||||||
MachineInfo info = newInfo();
|
MachineInfo info = newInfo();
|
||||||
info.serial = SerialNumbers[i];
|
info.serial = serialNumbers[i];
|
||||||
m = p_profile->CreateMachine(info);
|
m = p_profile->CreateMachine(info);
|
||||||
|
|
||||||
npath = newpath + "/" + info.serial;
|
npath = iconPath + "/" + info.serial;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (m) {
|
if (m) {
|
||||||
|
@ -95,38 +95,47 @@ QStringList getSleepStyleMachines (QString iconPath) {
|
|||||||
|
|
||||||
QDir iconDir (iconPath);
|
QDir iconDir (iconPath);
|
||||||
|
|
||||||
// SleepStyle are mixed alpha and numeric; ICON serial numbers (directory names) are all digits
|
|
||||||
iconDir.setFilter(QDir::NoDotAndDotDot | QDir::Dirs | QDir::Files | QDir::Hidden | QDir::NoSymLinks);
|
iconDir.setFilter(QDir::NoDotAndDotDot | QDir::Dirs | QDir::Files | QDir::Hidden | QDir::NoSymLinks);
|
||||||
iconDir.setSorting(QDir::Name);
|
iconDir.setSorting(QDir::Name);
|
||||||
|
|
||||||
QFileInfoList flist = iconDir.entryInfoList(); // List of Icon subdirectories
|
QFileInfoList flist = iconDir.entryInfoList(); // List of Icon subdirectories
|
||||||
|
|
||||||
bool isIconFilename;
|
|
||||||
|
|
||||||
// Walk though directory list and save those that appear to be for SleepStyle machins.
|
// Walk though directory list and save those that appear to be for SleepStyle machins.
|
||||||
for (int i = 0; i < flist.size(); i++) {
|
for (int i = 0; i < flist.size(); i++) {
|
||||||
QFileInfo fi = flist.at(i);
|
QFileInfo fi = flist.at(i);
|
||||||
QString filename = fi.fileName();
|
QString filename = fi.fileName();
|
||||||
filename.toInt(&isIconFilename);
|
|
||||||
if (isIconFilename) // Ignore this directory if named as used for older F&P Icon machine
|
|
||||||
continue;
|
|
||||||
if (filename.length() < 8) // F&P machine names are 8 characters long, but we allow more just in case...
|
|
||||||
continue;
|
|
||||||
|
|
||||||
// directory is serial number and must not be all digits (which would make it an ICON directory)
|
// directory is serial number and must have a SUM*.FPH file within it to be an Icon or SleepStyle folder
|
||||||
// and it must have *.FPH files within it to be a SleepStyle folder
|
|
||||||
|
|
||||||
QDir machineDir (iconPath + "/" + filename);
|
QDir machineDir (iconPath + "/" + filename);
|
||||||
machineDir.setFilter(QDir::NoDotAndDotDot | QDir::Files | QDir::Hidden | QDir::NoSymLinks);
|
machineDir.setFilter(QDir::NoDotAndDotDot | QDir::Files | QDir::Hidden | QDir::NoSymLinks);
|
||||||
machineDir.setSorting(QDir::Name);
|
machineDir.setSorting(QDir::Name);
|
||||||
QStringList filters;
|
QStringList filters;
|
||||||
filters << "*.fph";
|
filters << "SUM*.fph";
|
||||||
machineDir.setNameFilters(filters);
|
machineDir.setNameFilters(filters);
|
||||||
QFileInfoList flist = machineDir.entryInfoList();
|
QFileInfoList flist = machineDir.entryInfoList();
|
||||||
if (flist.size() <= 0) {
|
if (flist.size() <= 0) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
ssMachines.push_back(filename);
|
|
||||||
|
// Find out what machine model this is
|
||||||
|
QFile sumFile (flist.at(0).absoluteFilePath());
|
||||||
|
|
||||||
|
QString line;
|
||||||
|
|
||||||
|
sumFile.open(QIODevice::ReadOnly);
|
||||||
|
QTextStream instr(&sumFile);
|
||||||
|
for (int j = 0; j < 5; j++) {
|
||||||
|
line = "";
|
||||||
|
QString c = "";
|
||||||
|
while ((c = instr.read(1)) != "\r") {
|
||||||
|
line += c;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sumFile.close();
|
||||||
|
if (line.toUpper() == "SLEEPSTYLE")
|
||||||
|
ssMachines.push_back(filename);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
return ssMachines;
|
return ssMachines;
|
||||||
|
@ -666,8 +666,8 @@ int main(int argc, char *argv[]) {
|
|||||||
PRS1Loader::Register();
|
PRS1Loader::Register();
|
||||||
ResmedLoader::Register();
|
ResmedLoader::Register();
|
||||||
IntellipapLoader::Register();
|
IntellipapLoader::Register();
|
||||||
FPIconLoader::Register();
|
|
||||||
SleepStyleLoader::Register();
|
SleepStyleLoader::Register();
|
||||||
|
FPIconLoader::Register();
|
||||||
WeinmannLoader::Register();
|
WeinmannLoader::Register();
|
||||||
CMS50Loader::Register();
|
CMS50Loader::Register();
|
||||||
CMS50F37Loader::Register();
|
CMS50F37Loader::Register();
|
||||||
|
Loading…
Reference in New Issue
Block a user