From ec52b8b43677702e206257c9d83430db75e65d08 Mon Sep 17 00:00:00 2001 From: sawinglogz <3787776-sawinglogz@users.noreply.gitlab.com> Date: Mon, 29 Nov 2021 10:25:52 -0500 Subject: [PATCH] Add GUID from DreamStation 2 files to machine properties. --- oscar/SleepLib/loader_plugins/prs1_loader.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/oscar/SleepLib/loader_plugins/prs1_loader.cpp b/oscar/SleepLib/loader_plugins/prs1_loader.cpp index 5d8aadf2..69843324 100644 --- a/oscar/SleepLib/loader_plugins/prs1_loader.cpp +++ b/oscar/SleepLib/loader_plugins/prs1_loader.cpp @@ -258,6 +258,7 @@ class PRDS2File : public RawDataFile PRDS2File(class QFile & file); virtual ~PRDS2File() {}; bool isValid() const; + QString guid() const; private: bool parseDS2Header(); int read16(); @@ -300,6 +301,11 @@ bool PRDS2File::isValid() const { return m_valid; } +QString PRDS2File::guid() const { + QString guid(m_guid); + return guid; +} + bool PRDS2File::seek(qint64 pos) { if (!m_valid) { @@ -667,6 +673,7 @@ bool PRS1Loader::PeekProperties(const QString & filename, QHash return false; } src = ds2; + props["GUID"] = ds2->guid(); } else { // Otherwise just use the file as input. src = new RawDataFile(f);