mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 03:00:43 +00:00
Move ImportContext and ImportUI signals out of PRS1Loader into MachineLoader.
This will allow any loader to make use of them.
This commit is contained in:
parent
e8aa42db98
commit
4c0677fca1
@ -51,13 +51,6 @@ QString ts(qint64 msecs)
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
// TODO: See the LogUnexpectedMessage TODO about generalizing this for other loaders.
|
|
||||||
void PRS1Loader::LogUnexpectedMessage(const QString & message)
|
|
||||||
{
|
|
||||||
m_ctx->LogUnexpectedMessage(message);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
ChannelID PRS1_Mode = 0;
|
ChannelID PRS1_Mode = 0;
|
||||||
ChannelID PRS1_TimedBreath = 0, PRS1_HumidMode = 0, PRS1_TubeTemp = 0;
|
ChannelID PRS1_TimedBreath = 0, PRS1_HumidMode = 0, PRS1_TubeTemp = 0;
|
||||||
ChannelID PRS1_FlexLock = 0, PRS1_TubeLock = 0, PRS1_RampType = 0;
|
ChannelID PRS1_FlexLock = 0, PRS1_TubeLock = 0, PRS1_RampType = 0;
|
||||||
@ -458,7 +451,6 @@ PRS1Loader::PRS1Loader()
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
m_type = MT_CPAP;
|
m_type = MT_CPAP;
|
||||||
m_ctx = nullptr;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
PRS1Loader::~PRS1Loader()
|
PRS1Loader::~PRS1Loader()
|
||||||
@ -751,9 +743,9 @@ int PRS1Loader::Open(const QString & selectedPath)
|
|||||||
ImportContext* ctx = new ProfileImportContext(p_profile);
|
ImportContext* ctx = new ProfileImportContext(p_profile);
|
||||||
SetContext(ctx);
|
SetContext(ctx);
|
||||||
connect(ctx, &ImportContext::importEncounteredUnexpectedData, &ui, &ImportUI::onUnexpectedData);
|
connect(ctx, &ImportContext::importEncounteredUnexpectedData, &ui, &ImportUI::onUnexpectedData);
|
||||||
connect(this, &PRS1Loader::deviceReportsUsageOnly, &ui, &ImportUI::onDeviceReportsUsageOnly);
|
connect(this, &MachineLoader::deviceReportsUsageOnly, &ui, &ImportUI::onDeviceReportsUsageOnly);
|
||||||
connect(this, &PRS1Loader::deviceIsUntested, &ui, &ImportUI::onDeviceIsUntested);
|
connect(this, &MachineLoader::deviceIsUntested, &ui, &ImportUI::onDeviceIsUntested);
|
||||||
connect(this, &PRS1Loader::deviceIsUnsupported, &ui, &ImportUI::onDeviceIsUnsupported);
|
connect(this, &MachineLoader::deviceIsUnsupported, &ui, &ImportUI::onDeviceIsUnsupported);
|
||||||
#endif
|
#endif
|
||||||
c += OpenMachine(machinePath);
|
c += OpenMachine(machinePath);
|
||||||
#if 1
|
#if 1
|
||||||
@ -928,6 +920,7 @@ static QString chunkComparison(const PRS1DataChunk* a, const PRS1DataChunk* b)
|
|||||||
|
|
||||||
void PRS1Loader::ScanFiles(const QStringList & paths, int sessionid_base, Machine * m)
|
void PRS1Loader::ScanFiles(const QStringList & paths, int sessionid_base, Machine * m)
|
||||||
{
|
{
|
||||||
|
Q_ASSERT(m_ctx);
|
||||||
SessionID sid;
|
SessionID sid;
|
||||||
long ext;
|
long ext;
|
||||||
|
|
||||||
@ -2718,7 +2711,7 @@ QList<PRS1DataChunk *> PRS1Loader::ParseFile(const QString & path)
|
|||||||
|| (lastchunk->htype != chunk->htype)) {
|
|| (lastchunk->htype != chunk->htype)) {
|
||||||
QString message = "*** unexpected change in header data";
|
QString message = "*** unexpected change in header data";
|
||||||
qWarning() << path << message;
|
qWarning() << path << message;
|
||||||
LogUnexpectedMessage(message);
|
m_ctx->LogUnexpectedMessage(message);
|
||||||
// There used to be error-recovery code here, written before we checked CRCs.
|
// There used to be error-recovery code here, written before we checked CRCs.
|
||||||
// If we ever encounter data with a valid CRC that triggers the above warnings,
|
// If we ever encounter data with a valid CRC that triggers the above warnings,
|
||||||
// we can then revisit how to handle it.
|
// we can then revisit how to handle it.
|
||||||
|
@ -57,8 +57,6 @@ struct PRS1Waveform {
|
|||||||
quint8 sample_format;
|
quint8 sample_format;
|
||||||
};
|
};
|
||||||
|
|
||||||
class ImportContext;
|
|
||||||
|
|
||||||
class PRS1DataChunk;
|
class PRS1DataChunk;
|
||||||
class PRS1ParsedEvent;
|
class PRS1ParsedEvent;
|
||||||
|
|
||||||
@ -180,9 +178,6 @@ class PRS1Loader : public CPAPLoader
|
|||||||
PRS1Loader();
|
PRS1Loader();
|
||||||
virtual ~PRS1Loader();
|
virtual ~PRS1Loader();
|
||||||
|
|
||||||
void SetContext(ImportContext* ctx) { m_ctx = ctx; }
|
|
||||||
inline ImportContext* context() { return m_ctx; }
|
|
||||||
|
|
||||||
//! \brief Peek into PROP.TXT or properties.txt at given path, and return it as a normalized key/value hash
|
//! \brief Peek into PROP.TXT or properties.txt at given path, and return it as a normalized key/value hash
|
||||||
bool PeekProperties(const QString & filename, QHash<QString,QString> & props);
|
bool PeekProperties(const QString & filename, QHash<QString,QString> & props);
|
||||||
|
|
||||||
@ -235,13 +230,7 @@ class PRS1Loader : public CPAPLoader
|
|||||||
|
|
||||||
QHash<SessionID, PRS1Import*> sesstasks;
|
QHash<SessionID, PRS1Import*> sesstasks;
|
||||||
|
|
||||||
signals:
|
|
||||||
void deviceReportsUsageOnly(MachineInfo & info);
|
|
||||||
void deviceIsUntested(MachineInfo & info);
|
|
||||||
void deviceIsUnsupported(MachineInfo & info);
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
ImportContext* m_ctx;
|
|
||||||
QString last;
|
QString last;
|
||||||
QHash<QString, Machine *> PRS1List;
|
QHash<QString, Machine *> PRS1List;
|
||||||
|
|
||||||
@ -278,9 +267,6 @@ class PRS1Loader : public CPAPLoader
|
|||||||
|
|
||||||
//! \brief PRS1 Data files can store multiple sessions, so store them in this list for later processing.
|
//! \brief PRS1 Data files can store multiple sessions, so store them in this list for later processing.
|
||||||
QHash<SessionID, Session *> new_sessions;
|
QHash<SessionID, Session *> new_sessions;
|
||||||
|
|
||||||
public:
|
|
||||||
void LogUnexpectedMessage(const QString & message);
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
|
@ -31,6 +31,7 @@ MachineLoader::MachineLoader() :QObject(nullptr)
|
|||||||
m_abort = false;
|
m_abort = false;
|
||||||
m_type = MT_UNKNOWN;
|
m_type = MT_UNKNOWN;
|
||||||
m_status = NEUTRAL;
|
m_status = NEUTRAL;
|
||||||
|
m_ctx = nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
MachineLoader::~MachineLoader()
|
MachineLoader::~MachineLoader()
|
||||||
|
@ -29,6 +29,7 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
class MachineLoader; // forward
|
class MachineLoader; // forward
|
||||||
|
class ImportContext;
|
||||||
|
|
||||||
enum DeviceStatus { NEUTRAL, IMPORTING, LIVE, DETECTING };
|
enum DeviceStatus { NEUTRAL, IMPORTING, LIVE, DETECTING };
|
||||||
|
|
||||||
@ -47,6 +48,9 @@ class MachineLoader: public QObject
|
|||||||
MachineLoader();
|
MachineLoader();
|
||||||
virtual ~MachineLoader();
|
virtual ~MachineLoader();
|
||||||
|
|
||||||
|
void SetContext(ImportContext* ctx) { m_ctx = ctx; }
|
||||||
|
inline ImportContext* context() { return m_ctx; }
|
||||||
|
|
||||||
//! \brief Detect if the given path contains a valid folder structure
|
//! \brief Detect if the given path contains a valid folder structure
|
||||||
virtual bool Detect(const QString & path) = 0;
|
virtual bool Detect(const QString & path) = 0;
|
||||||
|
|
||||||
@ -110,7 +114,12 @@ signals:
|
|||||||
void updateMessage(QString);
|
void updateMessage(QString);
|
||||||
void machineUnsupported(Machine *);
|
void machineUnsupported(Machine *);
|
||||||
|
|
||||||
|
void deviceReportsUsageOnly(MachineInfo & info);
|
||||||
|
void deviceIsUntested(MachineInfo & info);
|
||||||
|
void deviceIsUnsupported(MachineInfo & info);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
ImportContext* m_ctx;
|
||||||
void finishAddingSessions();
|
void finishAddingSessions();
|
||||||
|
|
||||||
static QPixmap * genericCPAPPixmap;
|
static QPixmap * genericCPAPPixmap;
|
||||||
|
Loading…
Reference in New Issue
Block a user