Clairfy code for checking for str.edf or str.edf.gz depending on compression settings

This commit is contained in:
Guy Scharf 2020-10-06 09:37:29 -07:00
parent a9cd1ed0d1
commit bf458fa1d5

View File

@ -315,25 +315,26 @@ int ResmedLoader::Open(const QString & dirpath)
bool compress_backups = p_profile->session->compressBackupData(); bool compress_backups = p_profile->session->compressBackupData();
// Early check for STR.edf file, so we can early exit before creating faulty machine record. // Early check for STR.edf file, so we can early exit before creating faulty machine record.
QString strpath = importPath + "STR.edf"; // STR.edf file // str.edf is the first (primary) file to check, str.edf.gz is the secondary
QFile f(strpath); QString pripath = importPath + "STR.edf"; // STR.edf file
QString secpath = pripath + STR_ext_gz; // STR.edf.gz file
QString strpath;
// If compression is enabled, swap primary and secondary paths
if (compress_backups) { if (compress_backups) {
QString gzstrpath = strpath + STR_ext_gz; strpath = pripath;
f.setFileName(gzstrpath); pripath = secpath;
if (f.exists()) secpath = strpath;
strpath += STR_ext_gz;
else
f.setFileName(strpath);
if (!f.exists()) {
qDebug() << "Missing STR.edf file";
return -1;
}
} }
else if (!f.exists()) { // No STR.edf.. Do we have a STR.edf.gz?
strpath += STR_ext_gz;
f.setFileName(strpath);
// Check if primary path exists
QFile f(pripath);
if (f.exists()) {
strpath = pripath;
// If no primary file, check for secondary
} else {
f.setFileName(secpath);
strpath = secpath;
if (!f.exists()) { if (!f.exists()) {
qDebug() << "Missing STR.edf file"; qDebug() << "Missing STR.edf file";
return -1; return -1;