Move Machine properties into MachineInfo.

This will help loaders be less tied to the Machine data structure.
Since Machine contains a MachineInfo, this changes no functionality.
This commit is contained in:
sawinglogz 2021-10-26 14:59:41 -04:00
parent 2281209a20
commit a4fdb03c49
7 changed files with 9 additions and 11 deletions

View File

@ -1,4 +1,4 @@
/* SleepLib (DeVilbiss) Intellipap Loader Implementation
/* SleepLib (DeVilbiss) Intellipap Loader Implementation
*
* Notes: Intellipap DV54 requires the SmartLink attachment to access this data.
*
@ -260,7 +260,7 @@ int IntellipapLoader::OpenDV5(const QString & path)
// Refresh properties data..
for (QHash<QString, QString>::iterator i = set1.begin(); i != set1.end(); i++) {
mach->properties[i.key()] = i.value();
mach->info.properties[i.key()] = i.value();
}
f.close();

View File

@ -676,7 +676,7 @@ bool PRS1Loader::PeekProperties(MachineInfo & info, const QString & filename, Ma
}
if (!mach || skip) continue;
mach->properties[key] = props[key];
mach->info.properties[key] = props[key];
};
if (!modelnum.isEmpty()) {

View File

@ -136,8 +136,6 @@ protected:
// State that needs to persist between individual events:
EventDataType m_currentPressure;
bool m_calcPSfromSet;
bool m_calcLeaks;
EventDataType m_lpm4, m_ppm;
//! \brief Advance the current mask-on slice if needed and update import data structures accordingly.
bool UpdateCurrentSlice(PRS1DataChunk* chunk, qint64 t);

View File

@ -466,7 +466,7 @@ int ResmedLoader::Open(const QString & dirpath)
// Copy the idmap into machine objects properties, (overwriting any old values)
///////////////////////////////////////////////////////////////////////////////////
for (auto i=idmap.begin(), idend=idmap.end(); i != idend; i++) {
mach->properties[i.key()] = i.value();
mach->info.properties[i.key()] = i.value();
}
///////////////////////////////////////////////////////////////////////////////////

View File

@ -259,9 +259,6 @@ class Machine
//! \brief Contains all sessions for this machine, indexed by SessionID
QHash<SessionID, Session *> sessionlist;
//! \brief List of text machine properties, like brand, model, etc...
QHash<QString, QString> properties;
//! \brief The list of sessions that need saving (for multithreaded save code)
// QList<Session *> m_savelist;

View File

@ -126,6 +126,9 @@ struct MachineInfo {
QDateTime lastimported;
int version;
QDate purgeDate;
//! \brief List of text machine properties, like brand, model, etc...
QHash<QString, QString> properties;
};

View File

@ -257,7 +257,7 @@ bool Profile::OpenMachines()
m = CreateMachine(info, m_id);
if (m) m->properties = prop;
if (m) m->info.properties = prop;
elem = elem.nextSiblingElement();
}
@ -282,7 +282,7 @@ bool Profile::StoreMachines()
QDomElement pe = doc.createElement("properties");
me.appendChild(pe);
for (QHash<QString, QString>::iterator j = m->properties.begin(); j != m->properties.end(); j++) {
for (QHash<QString, QString>::iterator j = m->info.properties.begin(); j != m->info.properties.end(); j++) {
QDomElement pp = doc.createElement(j.key());
pp.appendChild(doc.createTextNode(j.value()));
pe.appendChild(pp);