/* SleepLib PRS1 Loader Implementation * * Copyright (c) 2019-2021 The OSCAR Team * Copyright (c) 2011-2018 Mark Watkins * * This file is subject to the terms and conditions of the GNU General Public * License. See the file COPYING in the main directory of the source code * for more details. */ #include #include #include #include #include #include #include #include #include #include "SleepLib/schema.h" #include "prs1_loader.h" #include "prs1_parser.h" #include "SleepLib/session.h" #include "SleepLib/calcs.h" #include "rawdata.h" // Disable this to cut excess debug messages #define DEBUG_SUMMARY //const int PRS1_MAGIC_NUMBER = 2; //const int PRS1_SUMMARY_FILE=1; //const int PRS1_EVENT_FILE=2; //const int PRS1_WAVEFORM_FILE=5; //******************************************************************************************** /// IMPORTANT!!! //******************************************************************************************** // Please INCREMENT the prs1_data_version in prs1_loader.h when making changes to this loader // that change loader behaviour or modify channels. //******************************************************************************************** // CRC-16/KERMIT, polynomial: 0x11021, bit reverse algorithm // Table generated by crcmod (crc-kermit) typedef quint16 crc16_t; static crc16_t CRC16(unsigned char * data, size_t data_len, crc16_t crc=0) { static const crc16_t table[256] = { 0x0000U, 0x1189U, 0x2312U, 0x329bU, 0x4624U, 0x57adU, 0x6536U, 0x74bfU, 0x8c48U, 0x9dc1U, 0xaf5aU, 0xbed3U, 0xca6cU, 0xdbe5U, 0xe97eU, 0xf8f7U, 0x1081U, 0x0108U, 0x3393U, 0x221aU, 0x56a5U, 0x472cU, 0x75b7U, 0x643eU, 0x9cc9U, 0x8d40U, 0xbfdbU, 0xae52U, 0xdaedU, 0xcb64U, 0xf9ffU, 0xe876U, 0x2102U, 0x308bU, 0x0210U, 0x1399U, 0x6726U, 0x76afU, 0x4434U, 0x55bdU, 0xad4aU, 0xbcc3U, 0x8e58U, 0x9fd1U, 0xeb6eU, 0xfae7U, 0xc87cU, 0xd9f5U, 0x3183U, 0x200aU, 0x1291U, 0x0318U, 0x77a7U, 0x662eU, 0x54b5U, 0x453cU, 0xbdcbU, 0xac42U, 0x9ed9U, 0x8f50U, 0xfbefU, 0xea66U, 0xd8fdU, 0xc974U, 0x4204U, 0x538dU, 0x6116U, 0x709fU, 0x0420U, 0x15a9U, 0x2732U, 0x36bbU, 0xce4cU, 0xdfc5U, 0xed5eU, 0xfcd7U, 0x8868U, 0x99e1U, 0xab7aU, 0xbaf3U, 0x5285U, 0x430cU, 0x7197U, 0x601eU, 0x14a1U, 0x0528U, 0x37b3U, 0x263aU, 0xdecdU, 0xcf44U, 0xfddfU, 0xec56U, 0x98e9U, 0x8960U, 0xbbfbU, 0xaa72U, 0x6306U, 0x728fU, 0x4014U, 0x519dU, 0x2522U, 0x34abU, 0x0630U, 0x17b9U, 0xef4eU, 0xfec7U, 0xcc5cU, 0xddd5U, 0xa96aU, 0xb8e3U, 0x8a78U, 0x9bf1U, 0x7387U, 0x620eU, 0x5095U, 0x411cU, 0x35a3U, 0x242aU, 0x16b1U, 0x0738U, 0xffcfU, 0xee46U, 0xdcddU, 0xcd54U, 0xb9ebU, 0xa862U, 0x9af9U, 0x8b70U, 0x8408U, 0x9581U, 0xa71aU, 0xb693U, 0xc22cU, 0xd3a5U, 0xe13eU, 0xf0b7U, 0x0840U, 0x19c9U, 0x2b52U, 0x3adbU, 0x4e64U, 0x5fedU, 0x6d76U, 0x7cffU, 0x9489U, 0x8500U, 0xb79bU, 0xa612U, 0xd2adU, 0xc324U, 0xf1bfU, 0xe036U, 0x18c1U, 0x0948U, 0x3bd3U, 0x2a5aU, 0x5ee5U, 0x4f6cU, 0x7df7U, 0x6c7eU, 0xa50aU, 0xb483U, 0x8618U, 0x9791U, 0xe32eU, 0xf2a7U, 0xc03cU, 0xd1b5U, 0x2942U, 0x38cbU, 0x0a50U, 0x1bd9U, 0x6f66U, 0x7eefU, 0x4c74U, 0x5dfdU, 0xb58bU, 0xa402U, 0x9699U, 0x8710U, 0xf3afU, 0xe226U, 0xd0bdU, 0xc134U, 0x39c3U, 0x284aU, 0x1ad1U, 0x0b58U, 0x7fe7U, 0x6e6eU, 0x5cf5U, 0x4d7cU, 0xc60cU, 0xd785U, 0xe51eU, 0xf497U, 0x8028U, 0x91a1U, 0xa33aU, 0xb2b3U, 0x4a44U, 0x5bcdU, 0x6956U, 0x78dfU, 0x0c60U, 0x1de9U, 0x2f72U, 0x3efbU, 0xd68dU, 0xc704U, 0xf59fU, 0xe416U, 0x90a9U, 0x8120U, 0xb3bbU, 0xa232U, 0x5ac5U, 0x4b4cU, 0x79d7U, 0x685eU, 0x1ce1U, 0x0d68U, 0x3ff3U, 0x2e7aU, 0xe70eU, 0xf687U, 0xc41cU, 0xd595U, 0xa12aU, 0xb0a3U, 0x8238U, 0x93b1U, 0x6b46U, 0x7acfU, 0x4854U, 0x59ddU, 0x2d62U, 0x3cebU, 0x0e70U, 0x1ff9U, 0xf78fU, 0xe606U, 0xd49dU, 0xc514U, 0xb1abU, 0xa022U, 0x92b9U, 0x8330U, 0x7bc7U, 0x6a4eU, 0x58d5U, 0x495cU, 0x3de3U, 0x2c6aU, 0x1ef1U, 0x0f78U, }; for (size_t i=0; i < data_len; i++) { crc = table[(*data ^ (unsigned char)crc) & 0xFF] ^ (crc >> 8); data++; } return crc; } // CRC-32/MPEG-2, polynomial: 0x104C11DB7 // Table generated by crcmod (crc-32-mpeg) typedef quint32 crc32_t; static crc32_t CRC32(const unsigned char *data, size_t data_len, crc32_t crc=0xffffffffU) { static const crc32_t table[256] = { 0x00000000U, 0x04c11db7U, 0x09823b6eU, 0x0d4326d9U, 0x130476dcU, 0x17c56b6bU, 0x1a864db2U, 0x1e475005U, 0x2608edb8U, 0x22c9f00fU, 0x2f8ad6d6U, 0x2b4bcb61U, 0x350c9b64U, 0x31cd86d3U, 0x3c8ea00aU, 0x384fbdbdU, 0x4c11db70U, 0x48d0c6c7U, 0x4593e01eU, 0x4152fda9U, 0x5f15adacU, 0x5bd4b01bU, 0x569796c2U, 0x52568b75U, 0x6a1936c8U, 0x6ed82b7fU, 0x639b0da6U, 0x675a1011U, 0x791d4014U, 0x7ddc5da3U, 0x709f7b7aU, 0x745e66cdU, 0x9823b6e0U, 0x9ce2ab57U, 0x91a18d8eU, 0x95609039U, 0x8b27c03cU, 0x8fe6dd8bU, 0x82a5fb52U, 0x8664e6e5U, 0xbe2b5b58U, 0xbaea46efU, 0xb7a96036U, 0xb3687d81U, 0xad2f2d84U, 0xa9ee3033U, 0xa4ad16eaU, 0xa06c0b5dU, 0xd4326d90U, 0xd0f37027U, 0xddb056feU, 0xd9714b49U, 0xc7361b4cU, 0xc3f706fbU, 0xceb42022U, 0xca753d95U, 0xf23a8028U, 0xf6fb9d9fU, 0xfbb8bb46U, 0xff79a6f1U, 0xe13ef6f4U, 0xe5ffeb43U, 0xe8bccd9aU, 0xec7dd02dU, 0x34867077U, 0x30476dc0U, 0x3d044b19U, 0x39c556aeU, 0x278206abU, 0x23431b1cU, 0x2e003dc5U, 0x2ac12072U, 0x128e9dcfU, 0x164f8078U, 0x1b0ca6a1U, 0x1fcdbb16U, 0x018aeb13U, 0x054bf6a4U, 0x0808d07dU, 0x0cc9cdcaU, 0x7897ab07U, 0x7c56b6b0U, 0x71159069U, 0x75d48ddeU, 0x6b93dddbU, 0x6f52c06cU, 0x6211e6b5U, 0x66d0fb02U, 0x5e9f46bfU, 0x5a5e5b08U, 0x571d7dd1U, 0x53dc6066U, 0x4d9b3063U, 0x495a2dd4U, 0x44190b0dU, 0x40d816baU, 0xaca5c697U, 0xa864db20U, 0xa527fdf9U, 0xa1e6e04eU, 0xbfa1b04bU, 0xbb60adfcU, 0xb6238b25U, 0xb2e29692U, 0x8aad2b2fU, 0x8e6c3698U, 0x832f1041U, 0x87ee0df6U, 0x99a95df3U, 0x9d684044U, 0x902b669dU, 0x94ea7b2aU, 0xe0b41de7U, 0xe4750050U, 0xe9362689U, 0xedf73b3eU, 0xf3b06b3bU, 0xf771768cU, 0xfa325055U, 0xfef34de2U, 0xc6bcf05fU, 0xc27dede8U, 0xcf3ecb31U, 0xcbffd686U, 0xd5b88683U, 0xd1799b34U, 0xdc3abdedU, 0xd8fba05aU, 0x690ce0eeU, 0x6dcdfd59U, 0x608edb80U, 0x644fc637U, 0x7a089632U, 0x7ec98b85U, 0x738aad5cU, 0x774bb0ebU, 0x4f040d56U, 0x4bc510e1U, 0x46863638U, 0x42472b8fU, 0x5c007b8aU, 0x58c1663dU, 0x558240e4U, 0x51435d53U, 0x251d3b9eU, 0x21dc2629U, 0x2c9f00f0U, 0x285e1d47U, 0x36194d42U, 0x32d850f5U, 0x3f9b762cU, 0x3b5a6b9bU, 0x0315d626U, 0x07d4cb91U, 0x0a97ed48U, 0x0e56f0ffU, 0x1011a0faU, 0x14d0bd4dU, 0x19939b94U, 0x1d528623U, 0xf12f560eU, 0xf5ee4bb9U, 0xf8ad6d60U, 0xfc6c70d7U, 0xe22b20d2U, 0xe6ea3d65U, 0xeba91bbcU, 0xef68060bU, 0xd727bbb6U, 0xd3e6a601U, 0xdea580d8U, 0xda649d6fU, 0xc423cd6aU, 0xc0e2d0ddU, 0xcda1f604U, 0xc960ebb3U, 0xbd3e8d7eU, 0xb9ff90c9U, 0xb4bcb610U, 0xb07daba7U, 0xae3afba2U, 0xaafbe615U, 0xa7b8c0ccU, 0xa379dd7bU, 0x9b3660c6U, 0x9ff77d71U, 0x92b45ba8U, 0x9675461fU, 0x8832161aU, 0x8cf30badU, 0x81b02d74U, 0x857130c3U, 0x5d8a9099U, 0x594b8d2eU, 0x5408abf7U, 0x50c9b640U, 0x4e8ee645U, 0x4a4ffbf2U, 0x470cdd2bU, 0x43cdc09cU, 0x7b827d21U, 0x7f436096U, 0x7200464fU, 0x76c15bf8U, 0x68860bfdU, 0x6c47164aU, 0x61043093U, 0x65c52d24U, 0x119b4be9U, 0x155a565eU, 0x18197087U, 0x1cd86d30U, 0x029f3d35U, 0x065e2082U, 0x0b1d065bU, 0x0fdc1becU, 0x3793a651U, 0x3352bbe6U, 0x3e119d3fU, 0x3ad08088U, 0x2497d08dU, 0x2056cd3aU, 0x2d15ebe3U, 0x29d4f654U, 0xc5a92679U, 0xc1683bceU, 0xcc2b1d17U, 0xc8ea00a0U, 0xd6ad50a5U, 0xd26c4d12U, 0xdf2f6bcbU, 0xdbee767cU, 0xe3a1cbc1U, 0xe760d676U, 0xea23f0afU, 0xeee2ed18U, 0xf0a5bd1dU, 0xf464a0aaU, 0xf9278673U, 0xfde69bc4U, 0x89b8fd09U, 0x8d79e0beU, 0x803ac667U, 0x84fbdbd0U, 0x9abc8bd5U, 0x9e7d9662U, 0x933eb0bbU, 0x97ffad0cU, 0xafb010b1U, 0xab710d06U, 0xa6322bdfU, 0xa2f33668U, 0xbcb4666dU, 0xb8757bdaU, 0xb5365d03U, 0xb1f740b4U, }; for (size_t i=0; i < data_len; i++) { crc = table[(*data ^ (unsigned char)(crc >> 24)) & 0xFF] ^ (crc << 8); data++; } return crc; } // Strangely, the PRS1 CRC32 appears to consider every byte a 32-bit wchar_t. // Nothing like trying a bunch of encodings and CRC32 variants on PROP.TXT files // until you find a winner. static crc32_t CRC32wchar(const unsigned char *data, size_t data_len, crc32_t crc=0xffffffffU) { for (size_t i=0; i < data_len; i++) { static unsigned char wch[4] = { 0, 0, 0, 0 }; wch[3] = *data++; crc = CRC32(wch, 4, crc); } return crc; } QString ts(qint64 msecs) { // TODO: make this UTC so that tests don't vary by where they're run return QDateTime::fromMSecsSinceEpoch(msecs).toString(Qt::ISODate); } // TODO: See the LogUnexpectedMessage TODO about generalizing this for other loaders. void PRS1Loader::LogUnexpectedMessage(const QString & message) { m_importMutex.lock(); m_unexpectedMessages += message; m_importMutex.unlock(); } ChannelID PRS1_Mode = 0; ChannelID PRS1_TimedBreath = 0, PRS1_HumidMode = 0, PRS1_TubeTemp = 0; ChannelID PRS1_FlexLock = 0, PRS1_TubeLock = 0, PRS1_RampType = 0; ChannelID PRS1_BackupBreathMode = 0, PRS1_BackupBreathRate = 0, PRS1_BackupBreathTi = 0; ChannelID PRS1_AutoTrial = 0, PRS1_EZStart = 0, PRS1_RiseTime = 0, PRS1_RiseTimeLock = 0; ChannelID PRS1_PeakFlow = 0; ChannelID PRS1_VariableBreathing = 0; // TODO: UNCONFIRMED, but seems to match sample data QString PRS1Loader::PresReliefLabel() { return QObject::tr(""); } ChannelID PRS1Loader::PresReliefMode() { return PRS1_FlexMode; } ChannelID PRS1Loader::PresReliefLevel() { return PRS1_FlexLevel; } ChannelID PRS1Loader::CPAPModeChannel() { return PRS1_Mode; } ChannelID PRS1Loader::HumidifierConnected() { return PRS1_HumidStatus; } ChannelID PRS1Loader::HumidifierLevel() { return PRS1_HumidLevel; } struct PRS1TestedModel { QString model; int family; int familyVersion; const char* name; }; static const PRS1TestedModel s_PRS1TestedModels[] = { // This first set says "(Philips Respironics)" intead of "(System One)" on official reports. { "251P", 0, 2, "REMstar Plus (System One)" }, // (brick) { "450P", 0, 2, "REMstar Pro (System One)" }, { "450P", 0, 3, "REMstar Pro (System One)" }, { "451P", 0, 2, "REMstar Pro (System One)" }, { "451P", 0, 3, "REMstar Pro (System One)" }, { "452P", 0, 3, "REMstar Pro (System One)" }, { "550P", 0, 2, "REMstar Auto (System One)" }, { "550P", 0, 3, "REMstar Auto (System One)" }, { "551P", 0, 2, "REMstar Auto (System One)" }, { "650P", 0, 2, "BiPAP Pro (System One)" }, { "750P", 0, 2, "BiPAP Auto (System One)" }, { "261CA", 0, 4, "REMstar Plus (System One 60 Series)" }, // (brick) { "460P", 0, 4, "REMstar Pro (System One 60 Series)" }, { "461P", 0, 4, "REMstar Pro (System One 60 Series)" }, { "462P", 0, 4, "REMstar Pro (System One 60 Series)" }, { "461CA", 0, 4, "REMstar Pro (System One 60 Series)" }, { "560P", 0, 4, "REMstar Auto (System One 60 Series)" }, { "560PBT", 0, 4, "REMstar Auto (System One 60 Series)" }, { "561P", 0, 4, "REMstar Auto (System One 60 Series)" }, { "562P", 0, 4, "REMstar Auto (System One 60 Series)" }, { "660P", 0, 4, "BiPAP Pro (System One 60 Series)" }, { "760P", 0, 4, "BiPAP Auto (System One 60 Series)" }, { "501V", 0, 5, "Dorma 500 Auto (System One 60 Series)" }, // (brick) { "200X110", 0, 6, "DreamStation CPAP" }, // (brick) { "400G110", 0, 6, "DreamStation Go" }, { "400X110", 0, 6, "DreamStation CPAP Pro" }, { "400X120", 0, 6, "DreamStation CPAP Pro" }, { "400X130", 0, 6, "DreamStation CPAP Pro" }, { "400X150", 0, 6, "DreamStation CPAP Pro" }, { "500X110", 0, 6, "DreamStation Auto CPAP" }, { "500X120", 0, 6, "DreamStation Auto CPAP" }, { "500X130", 0, 6, "DreamStation Auto CPAP" }, { "500X140", 0, 6, "DreamStation Auto CPAP with A-Flex" }, { "500X150", 0, 6, "DreamStation Auto CPAP" }, { "500X180", 0, 6, "DreamStation Auto CPAP" }, { "501X120", 0, 6, "DreamStation Auto CPAP with P-Flex" }, { "500G110", 0, 6, "DreamStation Go Auto" }, { "500G120", 0, 6, "DreamStation Go Auto" }, { "502G150", 0, 6, "DreamStation Go Auto" }, { "600X110", 0, 6, "DreamStation BiPAP Pro" }, { "600X150", 0, 6, "DreamStation BiPAP Pro" }, { "700X110", 0, 6, "DreamStation Auto BiPAP" }, { "700X120", 0, 6, "DreamStation Auto BiPAP" }, { "700X130", 0, 6, "DreamStation Auto BiPAP" }, { "700X150", 0, 6, "DreamStation Auto BiPAP" }, { "950P", 5, 0, "BiPAP AutoSV Advanced System One" }, { "951P", 5, 0, "BiPAP AutoSV Advanced System One" }, { "960P", 5, 1, "BiPAP autoSV Advanced (System One 60 Series)" }, { "961P", 5, 1, "BiPAP autoSV Advanced (System One 60 Series)" }, { "960T", 5, 2, "BiPAP autoSV Advanced 30 (System One 60 Series)" }, // omits "(System One 60 Series)" on official reports { "900X110", 5, 3, "DreamStation BiPAP autoSV" }, { "900X120", 5, 3, "DreamStation BiPAP autoSV" }, { "900X150", 5, 3, "DreamStation BiPAP autoSV" }, { "1061401", 3, 0, "BiPAP S/T (C Series)" }, { "1061T", 3, 3, "BiPAP S/T 30 (System One 60 Series)" }, { "1160P", 3, 3, "BiPAP AVAPS 30 (System One 60 Series)" }, { "1030X110", 3, 6, "DreamStation BiPAP S/T 30" }, { "1030X150", 3, 6, "DreamStation BiPAP S/T 30 with AAM" }, { "1130X110", 3, 6, "DreamStation BiPAP AVAPS 30" }, { "1131X150", 3, 6, "DreamStation BiPAP AVAPS 30 AE" }, { "1130X200", 3, 6, "DreamStation BiPAP AVAPS 30" }, { "", 0, 0, "" }, }; PRS1ModelInfo s_PRS1ModelInfo; PRS1ModelInfo::PRS1ModelInfo() { for (int i = 0; !s_PRS1TestedModels[i].model.isEmpty(); i++) { const PRS1TestedModel & model = s_PRS1TestedModels[i]; m_testedModels[model.family][model.familyVersion].append(model.model); m_modelNames[model.model] = model.name; } m_bricks = { "251P", "261CA", "200X110", "501V" }; } bool PRS1ModelInfo::IsSupported(int family, int familyVersion) const { if (m_testedModels.value(family).contains(familyVersion)) { return true; } return false; } bool PRS1ModelInfo::IsTested(const QString & model, int family, int familyVersion) const { if (m_testedModels.value(family).value(familyVersion).contains(model)) { return true; } // Some 500X150 C0/C1 folders have contained this bogus model number in their PROP.TXT file, // with the same serial number seen in the main PROP.TXT file that shows the real model number. if (model == "100X100") { #ifndef UNITTEST_MODE qDebug() << "Ignoring 100X100 for untested alert"; #endif return true; } return false; }; static bool getVersionFromProps(const QHash & props, int & family, int & familyVersion) { bool ok; family = props["Family"].toInt(&ok, 10); if (ok) { familyVersion = props["FamilyVersion"].toInt(&ok, 10); } return ok; } bool PRS1ModelInfo::IsSupported(const QHash & props) const { int family, familyVersion; bool ok = getVersionFromProps(props, family, familyVersion); if (ok) { ok = IsSupported(family, familyVersion); } return ok; } bool PRS1ModelInfo::IsTested(const QHash & props) const { int family, familyVersion; bool ok = getVersionFromProps(props, family, familyVersion); if (ok) { ok = IsTested(props["ModelNumber"], family, familyVersion); } return ok; }; bool PRS1ModelInfo::IsBrick(const QString & model) const { bool is_brick = false; if (m_modelNames.contains(model)) { is_brick = m_bricks.contains(model); } else if (model.length() > 0) { // If we haven't seen it before, assume any 2xx is a brick. is_brick = (model.at(0) == QChar('2')); } return is_brick; }; const char* PRS1ModelInfo::Name(const QString & model) const { const char* name; if (m_modelNames.contains(model)) { name = m_modelNames[model]; } else { name = "Unknown Model"; } return name; }; //******************************************************************************************** // Decoder for DreamStation 2 files, which encrypt the actual data after a header with the key. // The public read/seek/pos/etc. functions are all in terms of the decoded stream. class PRDS2File : public RawDataFile { public: PRDS2File(class QFile & file); virtual ~PRDS2File() {}; private: void parseDS2Header(); int read16(); QByteArray readBytes(); void initializeKey(); QByteArray d, e, j, k; QByteArray m_key; protected: virtual qint64 readData(char *data, qint64 maxSize); virtual bool seek(qint64 pos); virtual qint64 pos() const; virtual qint64 size() const; QByteArray m_guid; static const int m_header_size = 0xCA; }; PRDS2File::PRDS2File(class QFile & file) : RawDataFile(file) { parseDS2Header(); initializeKey(); } bool PRDS2File::seek(qint64 pos) { QIODevice::seek(pos); return RawDataFile::seek(pos + m_header_size); } qint64 PRDS2File::pos() const { return RawDataFile::pos() - m_header_size; } qint64 PRDS2File::size() const { return RawDataFile::size() - m_header_size; } qint64 PRDS2File::readData(char *data, qint64 maxSize) { qint64 pos = this->pos(); if (pos < 0) { qWarning() << "unexpected PRDS2 header read at real offset" << (m_header_size + pos) << "pos =" << pos; return -1; } int result = RawDataFile::readData(data, maxSize); if (result > 0) { qint64 bytesRead = result; // TODO: Find and implement the actual algorithm. // For now just use the known key stream fragment when appropriate. qint64 key_size = m_key.size(); if (pos < key_size) { qint64 limit = key_size - pos; if (limit > bytesRead) limit = bytesRead; for (qint64 i = 0; i < limit; i++) { data[i] ^= m_key.at(pos+i); } } } return result; } void PRDS2File::initializeKey() { // TODO: Find and implement the actual algorithm and keying method. // It may be that the algorithm is obfuscating h,i,j,k,l before reaching the data, // but since we don't yet know what those represent, for now just start with a known // key stream for the following known values. // // These test values show up on multiple machines, sometimes multiple times. static const unsigned char knownD[] = { 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1 }; static const unsigned char knownE[] = { 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1 }; static const unsigned char knownJ[] = { 0x9a, 0x93, 0x15, 0xc8, 0xd4, 0x24, 0xef, 0x7f, 0xa6, 0xa7, 0x9f, 0xce, 0x82, 0xdd, 0x5d, 0xfe, 0xde, 0x8d, 0x4f, 0x9f, 0x15, 0x32, 0x4d, 0x2e, 0x6d, 0x1d, 0x6e, 0xc4, 0xcb, 0x5f, 0xce, 0x64 }; static const unsigned char knownK[] = { 0xc1, 0x70, 0x9e, 0xe9, 0xf0, 0xdf, 0x0a, 0xd4, 0x79, 0xd5, 0xaa, 0x07, 0x97, 0xd4, 0x5c, 0x33 }; if (d == QByteArray((const char*) knownD, sizeof(knownD)) && e == QByteArray((const char*) knownE, sizeof(knownE))) { if (j == QByteArray((const char*) knownJ, sizeof(knownJ)) && k == QByteArray((const char*) knownK, sizeof(knownK))) { static const unsigned char knownStream[] = { 0x07, 0x47, 0xc3, 0x34, 0x70, 0x65, 0xac, 0x7c, 0xc6, 0x0b, 0x56, 0x53, 0xe9, 0x57, 0xbe, 0x1a, 0xcb, 0xd8, 0x71, 0x66, 0x08, 0x86, 0xa6, 0xd8 }; m_key = QByteArray((const char*) knownStream, sizeof(knownStream)); } else { qWarning() << "*** Unexpected j,k for key?"; } } } void PRDS2File::parseDS2Header() { int a = read16(); int b = read16(); int c = read16(); if (a != 0x0D || b != 1 || c != 1) { qWarning() << "DS2 unexpected first bytes =" << a << b << c; return; } m_guid = readBytes(); if (m_guid.size() != 36) { qWarning() << "DS2 guid unexpected length" << m_guid.size(); } else { qDebug() << "DS2 guid {" << m_guid << "}"; } d = readBytes(); // 96 bits, probably IV or key e = readBytes(); // 128 bits, probably key or IV if (d.size() != 12 || e.size() != 16) { qWarning() << "DS2 d,e sizes =" << d.size() << e.size(); } else { qDebug() << "DS2 key? =" << d.toHex() << e.toHex(); } int f = read16(); int g = read16(); if (f != 0 || g != 1) { qWarning() << "DS2 unexpected middle bytes =" << f << g; } QByteArray h = readBytes(); // same per d,e pair, varies per machine QByteArray i = readBytes(); // same per d,e pair, varies per machine if (h.size() != 32 || i.size() != 16) { qWarning() << "DS2 h,i sizes =" << h.size() << i.size(); } else { qDebug() << "DS2 h,i =" << h.toHex() << i.toHex(); } j = readBytes(); // same per d,e pair, does NOT vary per machine; possibly key or IV k = readBytes(); // same per d,e pair, does NOT vary per machine; possibly key or IV if (j.size() != 32 || k.size() != 16) { qWarning() << "DS2 j,k sizes =" << j.size() << k.size(); } else { qDebug() << "DS2 j,k =" << j.toHex() << k.toHex(); } QByteArray l = readBytes(); // differs for EVERY file, and machine, even with same values above if (l.size() != 16) { qWarning() << "DS2 l size =" << l.size(); } else { qDebug() << "DS2 l =" << l.toHex(); } if (m_device.pos() != m_header_size) { qWarning() << "DS2 header size !=" << m_header_size; } seek(0); // update internal position } int PRDS2File::read16() { unsigned char data[2]; int result; result = m_device.read((char*) data, sizeof(data)); // access the underlying data for the header if (result == sizeof(data)) { result = data[0] | (data[1] << 8); } else { result = 0; } return result; } QByteArray PRDS2File::readBytes() { int length = read16(); QByteArray result = m_device.read(length); // access the underlying data for the header if (result.size() < length) { result.clear(); } return result; } //******************************************************************************************** QMap s_PRS1Series = { { "System One 60 Series", ":/icons/prs1_60s.png" }, // needs to come before following substring { "System One", ":/icons/prs1.png" }, { "C Series", ":/icons/prs1vent.png" }, { "DreamStation", ":/icons/dreamstation.png" }, }; PRS1Loader::PRS1Loader() { #ifndef UNITTEST_MODE // no QPixmap without a QGuiApplication for (auto & series : s_PRS1Series.keys()) { QString path = s_PRS1Series[series]; m_pixmap_paths[series] = path; m_pixmaps[series] = QPixmap(path); } #endif m_type = MT_CPAP; } PRS1Loader::~PRS1Loader() { } bool isdigit(QChar c) { if ((c >= '0') && (c <= '9')) { return true; } return false; } // Tests path to see if it has (what looks like) a valid PRS1 folder structure // This is used both to detect newly inserted media and to decide which loader // to use after the user selects a folder. // // TODO: Ideally there should be a way to handle the two scenarios slightly // differently. In the latter case, it should clean up the selection and // return the canonical path if it detects one, allowing us to remove the // notification about selecting the root of the card. That kind of cleanup // wouldn't be appropriate when scanning devices. bool PRS1Loader::Detect(const QString & selectedPath) { QString path = selectedPath; if (GetPSeriesPath(path).isEmpty()) { // Try up one level in case the user selected the P-Series folder within the SD card. path = QFileInfo(path).canonicalPath(); } QStringList machines = FindMachinesOnCard(path); return !machines.isEmpty(); } QString PRS1Loader::GetPSeriesPath(const QString & path) { QString outpath = ""; QDir root(path); QStringList dirs = root.entryList(QDir::NoDotAndDotDot | QDir::Dirs | QDir::Hidden | QDir::NoSymLinks); for (auto & dir : dirs) { // We've seen P-Series, P-SERIES, and p-series, so we need to search for the directory // in a way that won't break on a case-sensitive filesystem. if (dir.toUpper() == "P-SERIES") { outpath = path + QDir::separator() + dir; break; } } return outpath; } QStringList PRS1Loader::FindMachinesOnCard(const QString & cardPath) { QStringList machinePaths; QString pseriesPath = this->GetPSeriesPath(cardPath); QDir pseries(pseriesPath); // If it contains a P-Series folder, it's a PRS1 SD card if (!pseriesPath.isEmpty() && pseries.exists()) { pseries.setFilter(QDir::NoDotAndDotDot | QDir::Dirs | QDir::Files | QDir::Hidden | QDir::NoSymLinks); pseries.setSorting(QDir::Name); QFileInfoList plist = pseries.entryInfoList(); // Look for machine directories (containing a PROP.TXT or properties.txt) QFileInfoList propertyfiles; for (auto & pfi : plist) { if (pfi.isDir()) { QString machinePath = pfi.canonicalFilePath(); QDir machineDir(machinePath); QFileInfoList mlist = machineDir.entryInfoList(); for (auto & mfi : mlist) { if (QDir::match("PROP*.TXT", mfi.fileName())) { // Found a properties file, this is a machine folder propertyfiles.append(mfi); } if (QDir::match("PROP.BIN", mfi.fileName())) { // Found a DreamStation 2 properties file, this is a machine folder propertyfiles.append(mfi); } } } } // Sort machines from oldest to newest. std::sort(propertyfiles.begin(), propertyfiles.end(), [](const QFileInfo & a, const QFileInfo & b) { return a.lastModified() < b.lastModified(); }); for (auto & propertyfile : propertyfiles) { machinePaths.append(propertyfile.canonicalPath()); } } return machinePaths; } void parseModel(MachineInfo & info, const QString & modelnum) { info.modelnumber = modelnum; const char* name = s_PRS1ModelInfo.Name(modelnum); const char* series = nullptr; for (auto & s : s_PRS1Series.keys()) { if (QString(name).contains(s)) { series = s; break; } } if (series == nullptr) { if (modelnum != "100X100") { // Bogus model number seen in empty C0/Clear0 directories. qWarning() << "unknown series for" << name << modelnum; } series = "unknown"; } info.model = QObject::tr(name); info.series = series; } bool PRS1Loader::PeekProperties(const QString & filename, QHash & props) { const static QMap s_longFieldNames = { // CF? { "SN", "SerialNumber" }, { "MN", "ModelNumber" }, { "PT", "ProductType" }, { "DF", "DataFormat" }, { "DFV", "DataFormatVersion" }, { "F", "Family" }, { "FV", "FamilyVersion" }, { "SV", "SoftwareVersion" }, { "FD", "FirstDate" }, { "LD", "LastDate" }, // SID? // SK? { "BK", "BasicKey" }, { "DK", "DetailsKey" }, { "EK", "ErrorKey" }, { "FN", "PatientFolderNum" }, // most recent Pn directory { "PFN", "PatientFileNum" }, // number of files in the most recent Pn directory { "EFN", "EquipFileNum" }, // number of .004 files in the E directory { "DFN", "DFileNum" }, // number of .003 files in the D directory { "VC", "ValidCheck" }, }; QFile f(filename); if (!f.open(QFile::ReadOnly)) { return false; } RawDataFile* src; if (QFileInfo(f).suffix().toUpper() == "BIN") { // If it's a DS2 file, insert the DS2 wrapper to decode the chunk stream. src = new PRDS2File(f); } else { // Otherwise just use the file as input. src = new RawDataFile(f); } { QTextStream in(src); // Scope this here so that it's torn down before we delete src below. do { QString line = in.readLine(); QStringList pair = line.split("="); if (pair.size() != 2) { qWarning() << src->name() << "malformed line:" << line; QHashIterator i(props); while (i.hasNext()) { i.next(); qDebug() << i.key() << ":" << i.value(); } break; } if (s_longFieldNames.contains(pair[0])) { pair[0] = s_longFieldNames[pair[0]]; } if (pair[0] == "Family") { if (pair[1] == "xPAP") { pair[1] = "0"; } else if (pair[1] == "Ventilator") { pair[1] = "3"; } } props[pair[0]] = pair[1]; } while (!in.atEnd()); } delete src; return props.size() > 0; } bool PRS1Loader::PeekProperties(MachineInfo & info, const QString & filename, Machine * mach) { QHash props; if (!PeekProperties(filename, props)) { return false; } QString modelnum; for (auto & key : props.keys()) { bool skip = false; if (key == "ModelNumber") { modelnum = props[key]; skip = true; } if (key == "SerialNumber") { info.serial = props[key]; skip = true; } if (key == "ProductType") { bool ok; props[key].toInt(&ok, 16); if (!ok) qWarning() << "ProductType" << props[key]; skip = true; } if (!mach || skip) continue; mach->properties[key] = props[key]; }; if (!modelnum.isEmpty()) { parseModel(info, modelnum); } else { qWarning() << "missing model number" << filename; } return true; } MachineInfo PRS1Loader::PeekInfo(const QString & path) { QStringList machines = FindMachinesOnCard(path); if (machines.isEmpty()) { return MachineInfo(); } // Present information about the newest machine on the card. QString newpath = machines.last(); MachineInfo info = newInfo(); if (!PeekProperties(info, newpath+"/properties.txt")) { if (!PeekProperties(info, newpath+"/PROP.TXT")) { // Detect (unsupported) DreamStation 2 QString filepath(newpath + "/PROP.BIN"); if (!PeekProperties(info, filepath)) { qWarning() << "No properties file found in" << newpath; } } } return info; } int PRS1Loader::Open(const QString & selectedPath) { QString path = selectedPath; if (GetPSeriesPath(path).isEmpty()) { // Try up one level in case the user selected the P-Series folder within the SD card. path = QFileInfo(path).canonicalPath(); } QStringList machines = FindMachinesOnCard(path); // Return an error if no machines were found. if (machines.isEmpty()) { qDebug() << "No PRS1 machines found at" << path; return -1; } // Import each machine, from oldest to newest. int c = 0; for (auto & machinePath : machines) { c += OpenMachine(machinePath); } return c; } int PRS1Loader::OpenMachine(const QString & path) { if (p_profile == nullptr) { qWarning() << "PRS1Loader::OpenMachine() called without a valid p_profile object present"; return 0; } qDebug() << "Opening PRS1 " << path; QDir dir(path); if (!dir.exists() || (!dir.isReadable())) { return 0; } m_abort = false; emit updateMessage(QObject::tr("Getting Ready...")); QCoreApplication::processEvents(); emit setProgressValue(0); QStringList paths; QString propertyfile; int sessionid_base; sessionid_base = FindSessionDirsAndProperties(path, paths, propertyfile); Machine *m = CreateMachineFromProperties(propertyfile); if (m == nullptr) { return -1; } emit updateMessage(QObject::tr("Backing Up Files...")); QCoreApplication::processEvents(); QString backupPath = m->getBackupPath() + path.section("/", -2); if (QDir::cleanPath(path).compare(QDir::cleanPath(backupPath)) != 0) { copyPath(path, backupPath); } emit updateMessage(QObject::tr("Scanning Files...")); QCoreApplication::processEvents(); // Walk through the files and create an import task for each logical session. ScanFiles(paths, sessionid_base, m); int tasks = countTasks(); emit updateMessage(QObject::tr("Importing Sessions...")); QCoreApplication::processEvents(); runTasks(AppSetting->multithreading()); emit updateMessage(QObject::tr("Finishing up...")); QCoreApplication::processEvents(); finishAddingSessions(); if (m_unexpectedMessages.count() > 0 && p_profile->session->warnOnUnexpectedData()) { // Compare this to the list of messages previously seen for this machine // and only alert if there are new ones. QSet newMessages = m_unexpectedMessages - m->previouslySeenUnexpectedData(); if (newMessages.count() > 0) { // TODO: Rework the importer call structure so that this can become an // emit statement to the appropriate import job. QMessageBox::information(QApplication::activeWindow(), QObject::tr("Untested Data"), QObject::tr("Your Philips Respironics %1 (%2) generated data that OSCAR has never seen before.").arg(m->getInfo().model).arg(m->getInfo().modelnumber) +"\n\n"+ QObject::tr("The imported data may not be entirely accurate, so the developers would like a .zip copy of this machine's SD card and matching Encore .pdf reports to make sure OSCAR is handling the data correctly.") ,QMessageBox::Ok); m->previouslySeenUnexpectedData() += newMessages; } } return m->unsupported() ? -1 : tasks; } int PRS1Loader::FindSessionDirsAndProperties(const QString & path, QStringList & paths, QString & propertyfile) { QDir dir(path); dir.setFilter(QDir::NoDotAndDotDot | QDir::Dirs | QDir::Files | QDir::Hidden | QDir::NoSymLinks); dir.setSorting(QDir::Name); QFileInfoList flist = dir.entryInfoList(); QString filename; int sessionid_base = 10; for (int i = 0; i < flist.size(); i++) { QFileInfo fi = flist.at(i); filename = fi.fileName(); if (fi.isDir()) { if ((filename[0].toLower() == 'p') && (isdigit(filename[1]))) { // p0, p1, p2.. etc.. folders contain the session data paths.push_back(fi.canonicalFilePath()); } else if (filename.toLower() == "e") { // Error files.. // Reminder: I have been given some info about these. should check it over. } } else if (filename.compare("properties.txt",Qt::CaseInsensitive) == 0) { propertyfile = fi.canonicalFilePath(); } else if (filename.compare("PROP.TXT",Qt::CaseInsensitive) == 0) { sessionid_base = 16; propertyfile = fi.canonicalFilePath(); } else if (filename.compare("PROP.BIN", Qt::CaseInsensitive) == 0) { sessionid_base = 16; propertyfile = fi.canonicalFilePath(); } } return sessionid_base; } Machine* PRS1Loader::CreateMachineFromProperties(QString propertyfile) { QHash props; if (!PeekProperties(propertyfile, props) || !s_PRS1ModelInfo.IsSupported(props)) { QString name; if (props.contains("ModelNumber")) { int family, familyVersion; getVersionFromProps(props, family, familyVersion); QString model_number = props["ModelNumber"]; qWarning().noquote() << "Model" << model_number << QString("(F%1V%2)").arg(family).arg(familyVersion) << "unsupported."; name = QObject::tr("model %1").arg(model_number); } else if (propertyfile.endsWith("PROP.BIN")) { // TODO: Remove this once DS2 is supported. qWarning() << "DreamStation 2 not supported:" << propertyfile; name = QObject::tr("DreamStation 2"); } else { qWarning() << "Unable to identify model or series!"; name = QObject::tr("unknown model"); } #ifndef UNITTEST_MODE QMessageBox::information(QApplication::activeWindow(), QObject::tr("Machine Unsupported"), QObject::tr("Sorry, your Philips Respironics CPAP machine (%1) is not supported yet.").arg(name) +"\n\n"+ QObject::tr("The developers needs a .zip copy of this machine's SD card and matching Encore or Care Orchestrator .pdf reports to make it work with OSCAR.") ,QMessageBox::Ok); #endif return nullptr; } MachineInfo info = newInfo(); // Have a peek first to get the model number. PeekProperties(info, propertyfile); if (true) { if (s_PRS1ModelInfo.IsBrick(info.modelnumber) && p_profile->cpap->brickWarning()) { #ifndef UNITTEST_MODE QApplication::processEvents(); QMessageBox::information(QApplication::activeWindow(), QObject::tr("Non Data Capable Machine"), QString(QObject::tr("Your Philips Respironics CPAP machine (Model %1) is unfortunately not a data capable model.")+"\n\n"+ QObject::tr("I'm sorry to report that OSCAR can only track hours of use and very basic settings for this machine.")). arg(info.modelnumber),QMessageBox::Ok); #endif p_profile->cpap->setBrickWarning(false); } } // Which is needed to get the right machine record.. Machine *m = p_profile->CreateMachine(info); // This time supply the machine object so it can populate machine properties.. PeekProperties(m->info, propertyfile, m); if (!s_PRS1ModelInfo.IsTested(props)) { qDebug() << info.modelnumber << "untested"; if (p_profile->session->warnOnUntestedMachine() && m->warnOnUntested()) { m->suppressWarnOnUntested(); // don't warn the user more than once #ifndef UNITTEST_MODE // TODO: Rework the importer call structure so that this can become an // emit statement to the appropriate import job. QMessageBox::information(QApplication::activeWindow(), QObject::tr("Machine Untested"), QObject::tr("Your Philips Respironics CPAP machine (Model %1) has not been tested yet.").arg(info.modelnumber) +"\n\n"+ QObject::tr("It seems similar enough to other machines that it might work, but the developers would like a .zip copy of this machine's SD card and matching Encore .pdf reports to make sure it works with OSCAR.") ,QMessageBox::Ok); #endif } } // Mark the machine in the profile as unsupported. if (!s_PRS1ModelInfo.IsSupported(props)) { if (!m->unsupported()) { unsupported(m); } } return m; } static QString relativePath(const QString & inpath) { QStringList pathlist = QDir::toNativeSeparators(inpath).split(QDir::separator(), QString::SkipEmptyParts); QString relative = pathlist.mid(pathlist.size()-3).join(QDir::separator()); return relative; } static bool chunksIdentical(const PRS1DataChunk* a, const PRS1DataChunk* b) { return (a->hash() == b->hash()); } static QString chunkComparison(const PRS1DataChunk* a, const PRS1DataChunk* b) { return QString("Session %1 in %2 @ %3 %4 %5 @ %6, skipping") .arg(a->sessionid) .arg(relativePath(a->m_path)).arg(a->m_filepos) .arg(chunksIdentical(a, b) ? "is identical to" : "differs from") .arg(relativePath(b->m_path)).arg(b->m_filepos); } void PRS1Loader::ScanFiles(const QStringList & paths, int sessionid_base, Machine * m) { SessionID sid; long ext; QDir dir; dir.setFilter(QDir::NoDotAndDotDot | QDir::Dirs | QDir::Files | QDir::Hidden | QDir::NoSymLinks); dir.setSorting(QDir::Name); int size = paths.size(); sesstasks.clear(); new_sessions.clear(); // this hash is used by OpenFile m_unexpectedMessages.clear(); PRS1Import * task = nullptr; // Note, I have observed p0/p1/etc folders containing duplicates session files (in Robin Sanders data.) QDateTime datetime; qint64 ignoreBefore = p_profile->session->ignoreOlderSessionsDate().toMSecsSinceEpoch()/1000; bool ignoreOldSessions = p_profile->session->ignoreOlderSessions(); QSet skipped; // for each p0/p1/p2/etc... folder for (int p=0; p < size; ++p) { dir.setPath(paths.at(p)); if (!dir.exists() || !dir.isReadable()) { qWarning() << dir.canonicalPath() << "can't read directory"; continue; } QFileInfoList flist = dir.entryInfoList(); // Scan for individual session files for (int i = 0; i < flist.size(); i++) { #ifndef UNITTEST_MODE QCoreApplication::processEvents(); #endif if (isAborted()) { qDebug() << "received abort signal"; break; } QFileInfo fi = flist.at(i); QString path = fi.canonicalFilePath(); bool ok; if (fi.fileName() == ".DS_Store") { continue; } QString ext_s = fi.fileName().section(".", -1); ext = ext_s.toInt(&ok); if (!ok) { // not a numerical extension qInfo() << path << "unexpected filename"; continue; } QString session_s = fi.fileName().section(".", 0, -2); sid = session_s.toInt(&ok, sessionid_base); if (!ok) { // not a numerical session ID qInfo() << path << "unexpected filename"; continue; } // TODO: BUG: This isn't right, since files can have multiple session // chunks, which might not correspond to the filename. But before we can // fix this we need to come up with a reasonably fast way to filter previously // imported files without re-reading all of them. if (m->SessionExists(sid)) { // Skip already imported session qDebug() << path << "session already exists, skipping" << sid; continue; } if ((ext == 5) || (ext == 6)) { if (skipped.contains(sid)) { // We don't know the timestamp until the file is parsed, which we only do for // waveform data at import (after scanning) since it's so large. If we relied // solely on the chunks' timestamps at that point, we'd get half of an otherwise // skipped session (the half after midnight). // // So we skip the entire file here based on the session's other data. continue; } // Waveform files aren't grouped... so we just want to add the filename for later QHash::iterator it = sesstasks.find(sid); if (it != sesstasks.end()) { task = it.value(); } else { // Should probably check if session already imported has this data missing.. // Create the group if we see it first.. task = new PRS1Import(this, sid, m, sessionid_base); sesstasks[sid] = task; queTask(task); } if (ext == 5) { // Occasionally waveforms in a session can be split into multiple files. // // This seems to happen when the machine begins writing the waveform file // before realizing that it will hit its 500-file-per-directory limit // for the remaining session files, at which point it appears to write // the rest of the waveform data along with the summary and event files // in the next directory. // // All samples exhibiting this behavior are DreamStations. task->m_wavefiles.append(fi.canonicalFilePath()); } else if (ext == 6) { // Oximetry data can also be split into multiple files, see waveform // comment above. task->m_oxifiles.append(fi.canonicalFilePath()); } continue; } // Parse the data chunks and read the files.. QList Chunks = ParseFile(fi.canonicalFilePath()); for (int i=0; i < Chunks.size(); ++i) { if (isAborted()) { qDebug() << "received abort signal 2"; break; } PRS1DataChunk * chunk = Chunks.at(i); SessionID chunk_sid = chunk->sessionid; if (i == 0 && chunk_sid != sid) { // log session ID mismatches // This appears to be benign, probably when a card is out of the machine one night and // then inserted in the morning. It writes out all of the still-in-memory summaries and // events up through the last night (and no waveform data). // // This differs from the first time a card is inserted, because in that case the filename // *is* equal to the first session contained within it, and then filenames for the // remaining sessions contained in that file are skipped. // // Because the card was present and previous sessions were written with their filenames, // the first available filename isn't the first session contained in the file. //qDebug() << fi.canonicalFilePath() << "first session is" << chunk_sid << "instead of" << sid; } if (m->SessionExists(chunk_sid)) { qDebug() << path << "session already imported, skipping" << sid << chunk_sid; delete chunk; continue; } if (ignoreOldSessions && chunk->timestamp < ignoreBefore) { qDebug().noquote() << relativePath(path) << "skipping session" << chunk_sid << ":" << QDateTime::fromMSecsSinceEpoch(chunk->timestamp*1000).toString() << "older than" << QDateTime::fromMSecsSinceEpoch(ignoreBefore*1000).toString(); skipped += chunk_sid; delete chunk; continue; } task = nullptr; QHash::iterator it = sesstasks.find(chunk_sid); if (it != sesstasks.end()) { task = it.value(); } else { task = new PRS1Import(this, chunk_sid, m, sessionid_base); sesstasks[chunk_sid] = task; // save a loop an que this now queTask(task); } switch (ext) { case 0: if (task->compliance) { if (chunksIdentical(chunk, task->summary)) { // Never seen identical compliance chunks, so keep logging this for now. qDebug() << chunkComparison(chunk, task->summary); } else { qWarning() << chunkComparison(chunk, task->summary); } delete chunk; continue; // (skipping to avoid duplicates) } task->compliance = chunk; break; case 1: if (task->summary) { if (chunksIdentical(chunk, task->summary)) { // This seems to be benign. It happens most often when a single file contains // a bunch of chunks and subsequent files each contain a single chunk that was // already covered by the first file. It also sometimes happens with entirely // duplicate files between e.g. a P1 and P0 directory. // // It's common enough that we don't emit a message about it by default. //qDebug() << chunkComparison(chunk, task->summary); } else { // Warn about any non-identical duplicate session IDs. // // This seems to happen with F5V1 slice 8, which is the only slice in a session, // and which doesn't update the session ID, so the following slice 7 session // (which can be hours later) has the same session ID. Neither affects import. qWarning() << chunkComparison(chunk, task->summary); } delete chunk; continue; } task->summary = chunk; break; case 2: if (task->m_event_chunks.count() > 0) { PRS1DataChunk* previous; if (chunk->family == 3 && chunk->familyVersion <= 3) { // F3V0 and F3V3 events are formatted as waveforms, with one chunk per mask-on slice, // and thus multiple chunks per session. previous = task->m_event_chunks[chunk->timestamp]; if (previous != nullptr) { // Skip any chunks with identical timestamps. qWarning() << chunkComparison(chunk, previous); delete chunk; continue; } // fall through to add the new chunk } else { // Nothing else should have multiple event chunks per session. previous = task->m_event_chunks.first(); if (chunksIdentical(chunk, previous)) { // See comment above regarding identical summary chunks. //qDebug() << chunkComparison(chunk, previous); } else { qWarning() << chunkComparison(chunk, previous); } delete chunk; continue; } } task->m_event_chunks[chunk->timestamp] = chunk; break; default: qWarning() << path << "unexpected file"; break; } } } if (isAborted()) { qDebug() << "received abort signal 3"; break; } } } // The set of PRS1 "on-demand" channels that only get created on import if the session // contains events of that type. Any channels not on this list always get created if // they're reported/supported by the parser. static const QVector PRS1OnDemandChannels = { PRS1TimedBreathEvent::TYPE, PRS1PressurePulseEvent::TYPE, // Pressure initialized on-demand for F0 due to the possibility of bilevel vs. single pressure. PRS1PressureSetEvent::TYPE, PRS1IPAPSetEvent::TYPE, PRS1EPAPSetEvent::TYPE, // Pressure average initialized on-demand for F0 due to the different semantics of bilevel vs. single pressure. PRS1PressureAverageEvent::TYPE, PRS1FlexPressureAverageEvent::TYPE, }; // The set of "non-slice" channels are independent of mask-on slices, i.e. they // are continuously reported and charted regardless of whether the mask is on. static const QSet PRS1NonSliceChannels = { PRS1PressureSetEvent::TYPE, PRS1IPAPSetEvent::TYPE, PRS1EPAPSetEvent::TYPE, PRS1SnoresAtPressureEvent::TYPE, }; // The channel ID (referenced by pointer because their values aren't initialized // prior to runtime) to which a given PRS1 event should be added. Events with // no channel IDs are silently dropped, and events with more than one channel ID // must be handled specially. static const QHash> PRS1ImportChannelMap = { { PRS1ClearAirwayEvent::TYPE, { &CPAP_ClearAirway } }, { PRS1ObstructiveApneaEvent::TYPE, { &CPAP_Obstructive } }, { PRS1HypopneaEvent::TYPE, { &CPAP_Hypopnea } }, { PRS1FlowLimitationEvent::TYPE, { &CPAP_FlowLimit } }, { PRS1SnoreEvent::TYPE, { &CPAP_Snore, &CPAP_VSnore2 } }, // VSnore2 is calculated from snore count, used to flag nonzero intervals on overview { PRS1VibratorySnoreEvent::TYPE, { &CPAP_VSnore } }, { PRS1RERAEvent::TYPE, { &CPAP_RERA } }, { PRS1PeriodicBreathingEvent::TYPE, { &CPAP_PB } }, { PRS1LargeLeakEvent::TYPE, { &CPAP_LargeLeak } }, { PRS1TotalLeakEvent::TYPE, { &CPAP_LeakTotal, &CPAP_Leak } }, // TODO: Remove CPAP_Leak if we get rid of unintentional leak calculation in the importer. { PRS1LeakEvent::TYPE, { &CPAP_Leak } }, { PRS1RespiratoryRateEvent::TYPE, { &CPAP_RespRate } }, { PRS1TidalVolumeEvent::TYPE, { &CPAP_TidalVolume } }, { PRS1MinuteVentilationEvent::TYPE, { &CPAP_MinuteVent } }, { PRS1PatientTriggeredBreathsEvent::TYPE, { &CPAP_PTB } }, { PRS1TimedBreathEvent::TYPE, { &PRS1_TimedBreath } }, { PRS1FlowRateEvent::TYPE, { &PRS1_PeakFlow } }, // Only reported by F3V0 and F3V3 // TODO: should this stat be calculated from flow waveforms on other models? { PRS1PressureSetEvent::TYPE, { &CPAP_PressureSet } }, { PRS1IPAPSetEvent::TYPE, { &CPAP_IPAPSet, &CPAP_PS } }, // PS is calculated from IPAPset and EPAPset when both are supported (F0) TODO: Should this be a separate channel since it's not a 2-minute average? { PRS1EPAPSetEvent::TYPE, { &CPAP_EPAPSet } }, // EPAPset is supported on F5 without any corresponding IPAPset, so it shouldn't always create a PS channel { PRS1PressureAverageEvent::TYPE, { &CPAP_Pressure } }, // This is the time-weighted average pressure in bilevel modes. { PRS1FlexPressureAverageEvent::TYPE, { &CPAP_EPAP } }, // This is effectively EPAP due to Flex reduced pressure in single-pressure modes. { PRS1IPAPAverageEvent::TYPE, { &CPAP_IPAP } }, { PRS1EPAPAverageEvent::TYPE, { &CPAP_EPAP, &CPAP_PS } }, // PS is calculated from IPAP and EPAP averages (F3 and F5) { PRS1IPAPLowEvent::TYPE, { &CPAP_IPAPLo } }, { PRS1IPAPHighEvent::TYPE, { &CPAP_IPAPHi } }, { PRS1Test1Event::TYPE, { &CPAP_Test1 } }, // ??? F3V6 { PRS1Test2Event::TYPE, { &CPAP_Test2 } }, // ??? F3V6 { PRS1PressurePulseEvent::TYPE, { &CPAP_PressurePulse } }, { PRS1ApneaAlarmEvent::TYPE, { /* Not imported */ } }, { PRS1SnoresAtPressureEvent::TYPE, { /* Not imported */ } }, { PRS1AutoPressureSetEvent::TYPE, { /* Not imported */ } }, { PRS1VariableBreathingEvent::TYPE, { &PRS1_VariableBreathing } }, // UNCONFIRMED { PRS1HypopneaCount::TYPE, { &CPAP_Hypopnea } }, // F3V3 only, generates individual events on import { PRS1ObstructiveApneaCount::TYPE, { &CPAP_Obstructive } }, // F3V3 only, generates individual events on import { PRS1ClearAirwayCount::TYPE, { &CPAP_ClearAirway } }, // F3V3 only, generates individual events on import }; //******************************************************************************************** PRS1Import::~PRS1Import() { delete compliance; delete summary; for (auto & e : m_event_chunks.values()) { delete e; } for (int i=0;i < waveforms.size(); ++i) { delete waveforms.at(i); } for (auto & c : oximetry) { delete c; } } void PRS1Import::CreateEventChannels(const PRS1DataChunk* chunk) { const QVector & supported = GetSupportedEvents(chunk); // Generate the list of channels created by non-slice events for this machine. // We can't just use the full list of non-slice events, since on some machines // PS is generated by slice events (EPAP/IPAP average). // TODO: convert supported to QSet and clean this up. QSet supportedNonSliceEvents = QSet::fromList(QList::fromVector(supported)); supportedNonSliceEvents.intersect(PRS1NonSliceChannels); QSet supportedNonSliceChannels; for (auto & e : supportedNonSliceEvents) { for (auto & pChannelID : PRS1ImportChannelMap[e]) { supportedNonSliceChannels += *pChannelID; } } // Clear channels to prepare for a new slice, except for channels created by // non-slice events. for (auto & c : m_importChannels.keys()) { if (supportedNonSliceChannels.contains(c) == false) { m_importChannels.remove(c); } } // Create all supported channels (except for on-demand ones that only get created if an event appears) for (auto & e : supported) { if (!PRS1OnDemandChannels.contains(e)) { for (auto & pChannelID : PRS1ImportChannelMap[e]) { GetImportChannel(*pChannelID); } } } } EventList* PRS1Import::GetImportChannel(ChannelID channel) { if (!channel) { qCritical() << this->sessionid << "channel in import table has not been added to schema!"; } EventList* C = m_importChannels[channel]; if (C == nullptr) { C = session->AddEventList(channel, EVL_Event); Q_ASSERT(C); // Once upon a time AddEventList could return nullptr, but not any more. m_importChannels[channel] = C; } return C; } void PRS1Import::AddEvent(ChannelID channel, qint64 t, float value, float gain) { EventList* C = GetImportChannel(channel); Q_ASSERT(C); if (C->count() == 0) { // Initialize the gain (here, since required channels are created with default gain). C->setGain(gain); } else { // Any change in gain is a programming error. if (gain != C->gain()) { qWarning() << "gain mismatch for channel" << channel << "at" << ts(t); } } // Add the event C->AddEvent(t, value, gain); } bool PRS1Import::UpdateCurrentSlice(PRS1DataChunk* chunk, qint64 t) { bool updated = false; if (!m_currentSliceInitialized) { m_currentSliceInitialized = true; m_currentSlice = m_slices.constBegin(); m_lastIntervalEvents.clear(); // there was no previous slice, so there are no pending end-of-slice events m_lastIntervalEnd = 0; updated = true; } // Update the slice iterator to point to the mask-on slice encompassing time t. while ((*m_currentSlice).status != MaskOn || t > (*m_currentSlice).end) { m_currentSlice++; updated = true; if (m_currentSlice == m_slices.constEnd()) { qWarning() << sessionid << "Events after last mask-on slice?"; m_currentSlice--; break; } } if (updated) { // Write out any pending end-of-slice events. FinishSlice(); } if (updated && (*m_currentSlice).status == MaskOn) { // Set the interval start times based on the new slice's start time. m_statIntervalStart = 0; StartNewInterval((*m_currentSlice).start); // Create a new eventlist for this new slice, to allow for a gap in the data between slices. CreateEventChannels(chunk); } return updated; } void PRS1Import::FinishSlice() { qint64 t = m_lastIntervalEnd; // end of the slice (at least of its interval data) // If the most recently recorded interval stats aren't at the end of the slice, // import additional events marking the end of the data. if (t != m_prevIntervalStart) { // Make sure to use the same pressure used to import the original events, // otherwise calculated channels (such as PS or LEAK) will be wrong. EventDataType orig_pressure = m_currentPressure; m_currentPressure = m_intervalPressure; // Import duplicates of each event with the end-of-slice timestamp. for (auto & e : m_lastIntervalEvents) { ImportEvent(t, e); } // Restore the current pressure. m_currentPressure = orig_pressure; } m_lastIntervalEvents.clear(); } void PRS1Import::StartNewInterval(qint64 t) { if (t == m_prevIntervalStart) { qWarning() << sessionid << "Multiple zero-length intervals at end of slice?"; } m_prevIntervalStart = m_statIntervalStart; m_statIntervalStart = t; } bool PRS1Import::IsIntervalEvent(PRS1ParsedEvent* e) { bool intervalEvent = false; // Statistical timestamps are reported at the end of a (generally) 2-minute // interval, rather than the start time that OSCAR expects for its imported // events. (When a session or slice ends, there will be a shorter interval, // the previous statistics to the end of the session/slice.) switch (e->m_type) { case PRS1PressureAverageEvent::TYPE: case PRS1FlexPressureAverageEvent::TYPE: case PRS1IPAPAverageEvent::TYPE: case PRS1IPAPLowEvent::TYPE: case PRS1IPAPHighEvent::TYPE: case PRS1EPAPAverageEvent::TYPE: case PRS1TotalLeakEvent::TYPE: case PRS1LeakEvent::TYPE: case PRS1RespiratoryRateEvent::TYPE: case PRS1PatientTriggeredBreathsEvent::TYPE: case PRS1MinuteVentilationEvent::TYPE: case PRS1TidalVolumeEvent::TYPE: case PRS1FlowRateEvent::TYPE: case PRS1Test1Event::TYPE: case PRS1Test2Event::TYPE: case PRS1SnoreEvent::TYPE: case PRS1HypopneaCount::TYPE: case PRS1ClearAirwayCount::TYPE: case PRS1ObstructiveApneaCount::TYPE: intervalEvent = true; break; default: break; } return intervalEvent; } bool PRS1Import::ImportEventChunk(PRS1DataChunk* event) { m_currentPressure=0; const QVector & supported = GetSupportedEvents(event); // Calculate PS from IPAP/EPAP set events only when both are supported. This includes F0, but excludes // F5, which only reports EPAP set events, but both IPAP/EPAP average, from which PS will be calculated. m_calcPSfromSet = supported.contains(PRS1IPAPSetEvent::TYPE) && supported.contains(PRS1EPAPSetEvent::TYPE); // Unintentional leak calculation, see zMaskProfile:calcLeak in calcs.cpp for explanation m_calcLeaks = p_profile->cpap->calculateUnintentionalLeaks(); if (m_calcLeaks) { // Only needed for machines that don't support it directly. m_calcLeaks = (supported.contains(PRS1LeakEvent::TYPE) == false); } m_lpm4 = p_profile->cpap->custom4cmH2OLeaks(); EventDataType lpm20 = p_profile->cpap->custom20cmH2OLeaks(); EventDataType lpm = lpm20 - m_lpm4; m_ppm = lpm / 16.0; qint64 t = qint64(event->timestamp) * 1000L; if (session->first() == 0) { qWarning() << sessionid << "Start time not set by summary?"; } else if (t < session->first()) { qWarning() << sessionid << "Events start before summary?"; } bool ok; ok = event->ParseEvents(); // Set up the (possibly initial) slice based on the chunk's starting timestamp. UpdateCurrentSlice(event, t); for (int i=0; i < event->m_parsedData.count(); i++) { PRS1ParsedEvent* e = event->m_parsedData.at(i); t = qint64(event->timestamp + e->m_start) * 1000L; // Skip unknown events with no timestamp if (e->m_type == PRS1UnknownDataEvent::TYPE) { continue; } // Skip zero-length PB or LL or VB events if ((e->m_type == PRS1PeriodicBreathingEvent::TYPE || e->m_type == PRS1LargeLeakEvent::TYPE || e->m_type == PRS1VariableBreathingEvent::TYPE) && (e->m_duration == 0)) { // LL occasionally appear about a minute before a new mask-on slice // begins, when the previous mask-on slice ended with a large leak. // This probably indicates the end of LL and beginning // of breath detection, but we don't get any real data until mask-on. // // It has also happened once in a similar scenario for PB and VB, even when // the two mask-on slices are in different sessions! continue; } if (e->m_type == PRS1IntervalBoundaryEvent::TYPE) { StartNewInterval(t); continue; // these internal pseudo-events don't get imported } bool intervalEvent = IsIntervalEvent(e); qint64 interval_end_t = 0; if (intervalEvent) { // Deal with statistics that are reported at the end of an interval, but which need to be imported // at the start of the interval. if (event->family == 3 && event->familyVersion <= 3) { // In F3V0 and F3V3, each slice has its own chunk, so the initial call to UpdateCurrentSlice() // for this chunk is all that's needed. // // We can't just call it again here for simplicity, since the timestamps of F3V3 stat events // can go past the end of the slice. } else { // For all other machines, the event's time stamp will be within bounds of its slice, so // we can use it to find the current slice. UpdateCurrentSlice(event, t); } // Clamp this interval's end time to the end of the slice. interval_end_t = min(t, (*m_currentSlice).end); // Set this event's timestamp as the start of the interval, since that what OSCAR assumes. t = m_statIntervalStart; // TODO: ideally we would also set the duration of the event, but OSCAR doesn't have any notion of that yet. } else { // Advance the slice if needed for the regular event's timestamp. if (!PRS1NonSliceChannels.contains(e->m_type)) { UpdateCurrentSlice(event, t); } } // Sanity check: warn if a (non-slice) event is earlier than the current mask-on slice if (t < (*m_currentSlice).start && (*m_currentSlice).status == MaskOn) { if (!PRS1NonSliceChannels.contains(e->m_type)) { // LL and VB at the beginning of a mask-on session sometimes start 1 second early, // so suppress that warning. if ((*m_currentSlice).start - t > 1000 || (e->m_type != PRS1LargeLeakEvent::TYPE && e->m_type != PRS1VariableBreathingEvent::TYPE)) { qWarning() << sessionid << "Event" << e->m_type << "before mask-on slice:" << ts(t); } } } // Import the event. switch (e->m_type) { // F3V3 doesn't have individual HY/CA/OA events, only counts every 2 minutes, where // nonzero counts show up as overview flags. Currently OSCAR doesn't have a way to // chart those numeric statistics, so we generate events based on the count. // // TODO: This (and VS2) would probably be better handled as numeric charts only, // along with enhancing overview flags to be drawn when channels have nonzero values, // instead of the fictitious "events" that are currently generated. case PRS1HypopneaCount::TYPE: case PRS1ClearAirwayCount::TYPE: case PRS1ObstructiveApneaCount::TYPE: // Make sure PRS1ClearAirwayEvent/etc. isn't supported before generating events from counts. CHECK_VALUE(supported.contains(PRS1HypopneaEvent::TYPE), false); CHECK_VALUE(supported.contains(PRS1ClearAirwayEvent::TYPE), false); CHECK_VALUE(supported.contains(PRS1ObstructiveApneaEvent::TYPE), false); // Divide each count into events evenly spaced over the interval. // NOTE: This is slightly fictional, but there's no waveform data for F3V3, so it won't // incorrectly associate specific events with specific flow or pressure events. if (e->m_value > 0) { qint64 blockduration = interval_end_t - m_statIntervalStart; qint64 div = blockduration / e->m_value; qint64 tt = t; PRS1ParsedDurationEvent ee(e->m_type, t, 0); for (int i=0; i < e->m_value; ++i) { ImportEvent(tt, &ee); tt += div; } } // TODO: Consider whether to have a numeric channel for HY/CA/OA that gets charted like VS does, // in which case we can fall through. break; default: ImportEvent(t, e); // Cache the most recently imported interval events so that we can import duplicate end-of-slice events if needed. // We can't write them here because we don't yet know if they're the last in the slice. if (intervalEvent) { // Reset the list of pending events when we encounter a stat event in a new interval. // // This logic has grown sufficiently complex that it may eventually be worth encapsulating // each batch of parsed interval events into a composite interval event when parsing, // rather than requiring timestamp-based gymnastics to infer that structure on import. if (m_lastIntervalEnd != interval_end_t) { m_lastIntervalEvents.clear(); m_lastIntervalEnd = interval_end_t; m_intervalPressure = m_currentPressure; } // The events need to be in order so that any dynamically calculated channels (such as PS) are properly computed. m_lastIntervalEvents.append(e); } break; } } // Write out any pending end-of-slice events. FinishSlice(); if (!ok) { return false; } // TODO: This needs to be special-cased for F3V0 and F3V3 due to their weird interval-based event format // until there's a way for its parser to correctly set the timestamps for truncated // intervals in sessions that don't end on a 2-minute boundary. if (!(event->family == 3 && event->familyVersion <= 3)) { // If the last event has a non-zero duration, t will not reflect the full duration of the chunk, so update it. t = qint64(event->timestamp + event->duration) * 1000L; if (session->last() == 0) { qWarning() << sessionid << "End time not set by summary?"; } else if (t > session->last()) { // This has only been seen in two instances: // 1. Once with corrupted data, in which the summary and event files each contained // multiple conflicting sessions (all brief) with the same ID. // 2. On one 500G110, multiple PRS1PressureSetEvents appear after the end of the session, // across roughtly two dozen sessions. These seem to be discarded on official reports, // see ImportEvent() below. qWarning() << sessionid << "Events continue after summary?"; } // Events can end before the session if the mask was off before the equipment turned off. } return true; } void PRS1Import::ImportEvent(qint64 t, PRS1ParsedEvent* e) { qint64 duration; // TODO: Filter out duplicate/overlapping PB and RE events. // // These actually get reported by the machines, but they cause "unordered time" warnings // and they throw off the session statistics. Even official reports show the wrong stats, // for example counting each of 3 duplicate PBs towards the total time in PB. // // It's not clear whether filtering can reasonably be done here or whether it needs // to be done in ImportEventChunk. const QVector & channels = PRS1ImportChannelMap[e->m_type]; ChannelID channel = NoChannel, PS, VS2, LEAK; if (channels.count() > 0) { channel = *channels.at(0); } switch (e->m_type) { case PRS1PressureSetEvent::TYPE: // currentPressure is used to calculate unintentional leak, not just PS // TODO: These have sometimes been observed with t > session->last() on a 500G110. // Official reports seem to discard such events, OSCAR currently doesn't. // Test this more thoroughly before changing behavior here. // fall through case PRS1IPAPSetEvent::TYPE: case PRS1IPAPAverageEvent::TYPE: AddEvent(channel, t, e->m_value, e->m_gain); m_currentPressure = e->m_value; break; case PRS1EPAPSetEvent::TYPE: AddEvent(channel, t, e->m_value, e->m_gain); if (m_calcPSfromSet) { PS = *(PRS1ImportChannelMap[PRS1IPAPSetEvent::TYPE].at(1)); AddEvent(PS, t, m_currentPressure - e->m_value, e->m_gain); // Pressure Support } break; case PRS1EPAPAverageEvent::TYPE: PS = *channels.at(1); AddEvent(channel, t, e->m_value, e->m_gain); AddEvent(PS, t, m_currentPressure - e->m_value, e->m_gain); // Pressure Support break; case PRS1TimedBreathEvent::TYPE: // The duration appears to correspond to the length of the timed breath in seconds when multiplied by 0.1 (100ms)! // TODO: consider changing parsers to use milliseconds for time, since it turns out there's at least one way // they can express durations less than 1 second. // TODO: consider allowing OSCAR to record millisecond durations so that the display will say "2.1" instead of "21" or "2". duration = e->m_duration * 100L; // for now do this here rather than in parser, since parser events don't use milliseconds AddEvent(*channels.at(0), t - duration, e->m_duration * 0.1F, 0.1F); // TODO: a gain of 0.1 should render this unnecessary, but gain doesn't seem to work currently break; case PRS1ObstructiveApneaEvent::TYPE: case PRS1ClearAirwayEvent::TYPE: case PRS1HypopneaEvent::TYPE: case PRS1FlowLimitationEvent::TYPE: AddEvent(channel, t, e->m_duration, e->m_gain); break; case PRS1PeriodicBreathingEvent::TYPE: case PRS1LargeLeakEvent::TYPE: case PRS1VariableBreathingEvent::TYPE: // TODO: The graphs silently treat the timestamp of a span as an end time rather than start (see gFlagsLine::paint). // Decide whether to preserve that behavior or change it universally and update either this code or comment. duration = e->m_duration * 1000L; AddEvent(channel, t + duration, e->m_duration, e->m_gain); break; case PRS1TotalLeakEvent::TYPE: AddEvent(channel, t, e->m_value, e->m_gain); // F0 up through F0V6 doesn't appear to report unintentional leak. // TODO: decide whether to keep this here, shouldn't keep it here just because it's "quicker". // TODO: compare this value for the reported value for F5V1 and higher? // TODO: Fix this for 0.125 gain: it assumes 0.1 (dividing by 10.0)... // Or omit, because machines with 0.125 gain report unintentional leak directly. if (m_calcLeaks) { // Much Quicker doing this here than the recalc method. EventDataType leak = e->m_value; leak -= (((m_currentPressure/10.0f) - 4.0) * m_ppm + m_lpm4); if (leak < 0) leak = 0; LEAK = *channels.at(1); AddEvent(LEAK, t, leak, 1); } break; case PRS1SnoreEvent::TYPE: // snore count that shows up in flags but not waveform // TODO: The numeric snore graph is the right way to present this information, // but it needs to be shifted left 2 minutes, since it's not a starting value // but a past statistic. AddEvent(channel, t, e->m_value, e->m_gain); // Snore count, continuous data if (e->m_value > 0) { // TODO: currently these get drawn on our waveforms, but they probably shouldn't, // since they don't have a precise timestamp. They should continue to be drawn // on the flags overview. See the comment in ImportEventChunk regarding flags // for numeric channels. // // We need to pass the count along so that the VS2 index will tabulate correctly. VS2 = *channels.at(1); AddEvent(VS2, t, e->m_value, 1); } break; case PRS1VibratorySnoreEvent::TYPE: // real VS marker on waveform // TODO: These don't need to be drawn separately on the flag overview, since // they're presumably included in the overall snore count statistic. They should // continue to be drawn on the waveform, due to their precise timestamp. AddEvent(channel, t, e->m_value, e->m_gain); break; default: if (channels.count() == 1) { // For most events, simply pass the value through to the mapped channel. AddEvent(channel, t, e->m_value, e->m_gain); } else if (channels.count() > 1) { // Anything mapped to more than one channel must have a case statement above. qWarning() << "Missing import handler for PRS1 event type" << (int) e->m_type; break; } else { // Not imported, no channels mapped to this event // These will show up in chunk YAML and any user alerts will be driven by the parser. } break; } } #if 0 // Currently unused, apparently an abandoned effort to massage F0 pressure/IPAP/EPAP data. extern EventDataType CatmullRomSpline(EventDataType p0, EventDataType p1, EventDataType p2, EventDataType p3, EventDataType t = 0.5); void SmoothEventList(Session * session, EventList * ev, ChannelID code) { if (!ev) return; int cnt = ev->count(); if (cnt > 4) { EventList * smooth = new EventList(EVL_Event, ev->gain()); smooth->setFirst(ev->first()); smooth->AddEvent(ev->time(0), ev->raw(0)); EventDataType p0, p1, p2, p3, v; for (int i=1; itime(i); qint64 time2 = ev->time(i+1); qint64 diff = time2 - time; // these aren't evenly spaced... spline won't work here. p0 = ev->raw(i-1); p1 = ev->raw(i); p2 = ev->raw(i+1); p3 = ev->raw(i+2); smooth->AddEvent(time, p1); // int df = p2-p1; // if (df > 0) { // qint64 inter = diff/(df+1); // qint64 t = time+inter; // for (int j=0; jAddEvent(t, p1+j); // t+=inter; // } // } else if (df<0) { // df = abs(df); // qint64 inter = diff/(df+1); // qint64 t = time+inter; // for (int j=0; jAddEvent(t, p1-j); // t+=inter; // } // } // don't want to use Catmull here... v = CatmullRomSpline(p0, p1, p2, p3, 0.25); smooth->AddEvent(time+diff*0.25, v); v = CatmullRomSpline(p0, p1, p2, p3, 0.5); smooth->AddEvent(time+diff*0.5, v); v = CatmullRomSpline(p0, p1, p2, p3, 0.75); smooth->AddEvent(time+diff*0.75, v); } smooth->AddEvent(ev->time(cnt-2), ev->raw(cnt-2)); smooth->AddEvent(ev->time(cnt-1), ev->raw(cnt-1)); session->eventlist[code].removeAll(ev); delete ev; session->eventlist[code].append(smooth); } } #endif // TODO: This really should be in some kind of class hierarchy, once we figure out // the right one. const QVector & GetSupportedEvents(const PRS1DataChunk* chunk) { static const QVector none; switch (chunk->family) { case 0: switch (chunk->familyVersion) { case 2: return ParsedEventsF0V23; break; case 3: return ParsedEventsF0V23; break; case 4: return ParsedEventsF0V4; break; case 6: return ParsedEventsF0V6; break; } break; case 3: switch (chunk->familyVersion) { case 0: return ParsedEventsF3V0; break; case 3: return ParsedEventsF3V3; break; case 6: return ParsedEventsF3V6; break; } break; case 5: switch (chunk->familyVersion) { case 0: return ParsedEventsF5V0; break; case 1: return ParsedEventsF5V1; break; case 2: return ParsedEventsF5V2; break; case 3: return ParsedEventsF5V3; break; } break; } qWarning() << "Missing supported event list for family" << chunk->family << "version" << chunk->familyVersion; return none; } CPAPMode PRS1Import::importMode(int prs1mode) { CPAPMode mode = MODE_UNKNOWN; switch (prs1mode) { case PRS1_MODE_CPAPCHECK: mode = MODE_CPAP; break; case PRS1_MODE_CPAP: mode = MODE_CPAP; break; case PRS1_MODE_AUTOCPAP: mode = MODE_APAP; break; case PRS1_MODE_AUTOTRIAL: mode = MODE_APAP; break; case PRS1_MODE_BILEVEL: mode = MODE_BILEVEL_FIXED; break; case PRS1_MODE_AUTOBILEVEL: mode = MODE_BILEVEL_AUTO_VARIABLE_PS; break; case PRS1_MODE_ASV: mode = MODE_ASV_VARIABLE_EPAP; break; case PRS1_MODE_S: mode = MODE_BILEVEL_FIXED; break; case PRS1_MODE_ST: mode = MODE_BILEVEL_FIXED; break; case PRS1_MODE_PC: mode = MODE_BILEVEL_FIXED; break; case PRS1_MODE_ST_AVAPS: mode = MODE_AVAPS; break; case PRS1_MODE_PC_AVAPS: mode = MODE_AVAPS; break; default: UNEXPECTED_VALUE(prs1mode, "known PRS1 mode"); break; } return mode; } bool PRS1Import::ImportCompliance() { bool ok; ok = compliance->ParseCompliance(); qint64 start = qint64(compliance->timestamp) * 1000L; for (int i=0; i < compliance->m_parsedData.count(); i++) { PRS1ParsedEvent* e = compliance->m_parsedData.at(i); if (e->m_type == PRS1ParsedSliceEvent::TYPE) { AddSlice(start, e); continue; } else if (e->m_type != PRS1ParsedSettingEvent::TYPE) { qWarning() << "Compliance had non-setting event:" << (int) e->m_type; continue; } PRS1ParsedSettingEvent* s = (PRS1ParsedSettingEvent*) e; switch (s->m_setting) { case PRS1_SETTING_CPAP_MODE: session->settings[PRS1_Mode] = (PRS1Mode) e->m_value; session->settings[CPAP_Mode] = importMode(e->m_value); break; case PRS1_SETTING_PRESSURE: session->settings[CPAP_Pressure] = e->value(); break; case PRS1_SETTING_PRESSURE_MIN: session->settings[CPAP_PressureMin] = e->value(); break; case PRS1_SETTING_PRESSURE_MAX: session->settings[CPAP_PressureMax] = e->value(); break; case PRS1_SETTING_FLEX_MODE: session->settings[PRS1_FlexMode] = e->m_value; break; case PRS1_SETTING_FLEX_LEVEL: session->settings[PRS1_FlexLevel] = e->m_value; break; case PRS1_SETTING_FLEX_LOCK: session->settings[PRS1_FlexLock] = (bool) e->m_value; break; case PRS1_SETTING_RAMP_TIME: session->settings[CPAP_RampTime] = e->m_value; break; case PRS1_SETTING_RAMP_PRESSURE: session->settings[CPAP_RampPressure] = e->value(); break; case PRS1_SETTING_RAMP_TYPE: session->settings[PRS1_RampType] = e->m_value; break; case PRS1_SETTING_HUMID_STATUS: session->settings[PRS1_HumidStatus] = (bool) e->m_value; break; case PRS1_SETTING_HUMID_MODE: session->settings[PRS1_HumidMode] = e->m_value; break; case PRS1_SETTING_HEATED_TUBE_TEMP: session->settings[PRS1_TubeTemp] = e->m_value; break; case PRS1_SETTING_HUMID_LEVEL: session->settings[PRS1_HumidLevel] = e->m_value; break; case PRS1_SETTING_MASK_RESIST_LOCK: session->settings[PRS1_MaskResistLock] = (bool) e->m_value; break; case PRS1_SETTING_MASK_RESIST_SETTING: session->settings[PRS1_MaskResistSet] = e->m_value; break; case PRS1_SETTING_HOSE_DIAMETER: session->settings[PRS1_HoseDiam] = e->m_value; break; case PRS1_SETTING_TUBING_LOCK: session->settings[PRS1_TubeLock] = (bool) e->m_value; break; case PRS1_SETTING_AUTO_ON: session->settings[PRS1_AutoOn] = (bool) e->m_value; break; case PRS1_SETTING_AUTO_OFF: session->settings[PRS1_AutoOff] = (bool) e->m_value; break; case PRS1_SETTING_MASK_ALERT: session->settings[PRS1_MaskAlert] = (bool) e->m_value; break; case PRS1_SETTING_SHOW_AHI: session->settings[PRS1_ShowAHI] = (bool) e->m_value; break; default: qWarning() << "Unknown PRS1 setting type" << (int) s->m_setting; break; } } if (!ok) { return false; } if (compliance->duration == 0) { // This does occasionally happen and merely indicates a brief session with no useful data. // This requires the use of really_set_last below, which otherwise rejects 0 length. qDebug() << compliance->sessionid << "compliance duration == 0"; } session->setSummaryOnly(true); session->set_first(start); session->really_set_last(qint64(compliance->timestamp + compliance->duration) * 1000L); return true; } bool PRS1DataChunk::ParseCompliance(void) { switch (this->family) { case 0: switch (this->familyVersion) { case 2: case 3: return this->ParseComplianceF0V23(); case 4: return this->ParseComplianceF0V4(); case 5: return this->ParseComplianceF0V5(); case 6: return this->ParseComplianceF0V6(); } default: ; } qWarning() << "unexpected compliance family" << this->family << "familyVersion" << this->familyVersion; return false; } // F0V4 confirmed: // B3 0A = HT=5, H=3, HT // A3 0A = HT=5, H=2, HT // 33 0A = HT=4, H=3, HT // 23 4A = HT=4, H=2, HT // B3 09 = HT=3, H=3, HT // A4 09 = HT=3, H=2, HT // A3 49 = HT=3, H=2, HT // 22 09 = HT=2, H=2, HT // 33 09 = HT=2, H=3, HT // 21 09 = HT=2, H=2, HT // 13 09 = HT=2, H=1, HT // B5 08 = HT=1, H=3, HT // 03 08 = HT=off, HT; data=tube t=0,h=0 // 05 24 = H=5, S1 // 95 06 = H=5, S1 // 95 05 = H=5, S1 // 94 05 = H=4, S1 // 04 24 = H=4, S1 // A3 05 = H=3, S1 // 92 05 = H=2, S1 // A2 05 = H=2, S1 // 01 24 = H=1, S1 // 90 05 = H=off, S1 // 30 05 = H=off, S1 // 95 41 = H=5, Classic // A4 61 = H=4, Classic // A3 61 = H=3, Classic // A2 61 = H=2, Classic // A1 61 = H=1, Classic // 90 41 = H=Off, Classic; data=classic h=0 // 94 11 = H=3, S1, no data [note that bits encode H=4, so no data falls back to H=3] // 93 11 = H=3, S1, no data // 04 30 = H=3, S1, no data // F0V5 confirmed: // 00 60 = H=Off, Classic // 02 60 = H=2, Classic // 05 60 = H=5, Classic // 00 70 = H=Off, no data in chart // F5V1 confirmed: // A0 4A = HT=5, H=2, HT // B1 09 = HT=3, H=3, HT // 91 09 = HT=3, H=1, HT // 32 09 = HT=2, H=3, HT // B2 08 = HT=1, H=3, HT // 00 48 = HT=off, data=tube t=0,h=0 // 95 05 = H=5, S1 // 94 05 = H=4, S1 // 93 05 = H=3, S1 // 92 05 = H=2, S1 // 91 05 = H=1, S1 // 90 05 = H=Off, S1 // 95 41 = H=5, Classic // 94 41 = H=4, Classic // 93 41 = H=3, Classic // 92 41 = H=2, Classic // 01 60 = H=1, Classic // 00 60 = H=Off, Classic // 00 70 = H=3, S1, no data [no data ignores Classic mode, H bits, falls back to S1 H=3] // F5V2 confirmed: // 00 48 = HT=off, data=tube t=0,h=0 // 93 09 = HT=3, H=1, HT // 00 10 = H=3, S1, no data // XX XX = 60-Series Humidifier bytes // 7 = humidity level without tube [on tube disconnect / system one with 22mm hose / classic] : 0 = humidifier off // 8 = [never seen] // 3 = humidity level with tube // 4 = maybe part of humidity level? [never seen] // 8 3 = tube temperature (high bit of humid 1 is low bit of temp) // 4 = "System One" mode (valid even when humidifier is off) // 8 = heated tube present // 10 = no data in chart, maybe no humidifier attached? Seems to fall back on System One = 3 despite other (humidity level and S1) bits. // 20 = unknown, something tube related since whenever it's set tubepresent is false // 40 = "Classic" mode (valid even when humidifier is off, ignored when heated tube is present) // 80 = [never seen] void PRS1DataChunk::ParseHumidifierSetting60Series(unsigned char humid1, unsigned char humid2, bool add_setting) { int humidlevel = humid1 & 7; // Ignored when heated tube is present: humidifier setting on tube disconnect is always reported as 3 if (humidlevel > 5) UNEXPECTED_VALUE(humidlevel, "<= 5"); CHECK_VALUE(humid1 & 8, 0); // never seen int tubehumidlevel = (humid1 >> 4) & 7; // This mask is a best guess based on other masks. if (tubehumidlevel > 5) UNEXPECTED_VALUE(tubehumidlevel, "<= 5"); CHECK_VALUE(tubehumidlevel & 4, 0); // never seen, but would clarify whether above mask is correct int tubetemp = (humid1 >> 7) | ((humid2 & 3) << 1); if (tubetemp > 5) UNEXPECTED_VALUE(tubetemp, "<= 5"); CHECK_VALUE(humid2 & 0x80, 0); // never seen bool humidclassic = (humid2 & 0x40) != 0; // Set on classic mode reports; evidently ignored (sometimes set!) when tube is present //bool no_tube? = (humid2 & 0x20) != 0; // Something tube related: whenever it is set, tube is never present (inverse is not true) bool no_data = (humid2 & 0x10) != 0; // As described in chart, settings still show up int tubepresent = (humid2 & 0x08) != 0; bool humidsystemone = (humid2 & 0x04) != 0; // Set on "System One" humidification mode reports when tubepresent is false if (humidsystemone && tubepresent) { // On a 560P, we've observed a spurious tubepresent bit being set during two sessions. // Those sessions (and the ones that followed) used a 22mm hose. CHECK_VALUE(add_setting, false); // We've only seen this appear during a session, not in the initial settings. tubepresent = false; } // When no_data, reports always say "System One" with humidity level 3, regardless of humidlevel and humidsystemone if (humidsystemone + tubepresent + no_data == 0) CHECK_VALUE(humidclassic, true); // Always set when everything else is off if (humidsystemone + tubepresent + no_data > 1) UNEXPECTED_VALUE(humid2, "one bit set"); // Only one of these ever seems to be set at a time if (tubepresent && tubetemp == 0) CHECK_VALUE(tubehumidlevel, 0); // When the heated tube is off, tube humidity seems to be 0 if (tubepresent) humidclassic = false; // Classic mode bit is evidently ignored when tube is present if (no_data) humidclassic = false; // Classic mode bit is evidently ignored when tube is present //qWarning() << this->sessionid << (humidclassic ? "C" : ".") << (humid2 & 0x20 ? "?" : ".") << (tubepresent ? "T" : ".") << (no_data ? "X" : ".") << (humidsystemone ? "1" : "."); /* if (tubepresent) { if (tubetemp) { qWarning() << this->sessionid << "tube temp" << tubetemp << "tube humidity" << tubehumidlevel << (humidclassic ? "classic" : "systemone") << "humidity" << humidlevel; } else { qWarning() << this->sessionid << "heated tube off" << (humidclassic ? "classic" : "systemone") << "humidity" << humidlevel; } } else { qWarning() << this->sessionid << (humidclassic ? "classic" : "systemone") << "humidity" << humidlevel; } */ HumidMode humidmode = HUMID_Fixed; if (tubepresent) { humidmode = HUMID_HeatedTube; } else { if (humidsystemone + humidclassic > 1) UNEXPECTED_VALUE(humid2, "fixed or adaptive"); if (humidsystemone) humidmode = HUMID_Adaptive; } if (add_setting) { bool humidifier_present = (no_data == 0); this->AddEvent(new PRS1ParsedSettingEvent(PRS1_SETTING_HUMID_STATUS, humidifier_present)); if (humidifier_present) { this->AddEvent(new PRS1ParsedSettingEvent(PRS1_SETTING_HUMID_MODE, humidmode)); if (humidmode == HUMID_HeatedTube) { this->AddEvent(new PRS1ParsedSettingEvent(PRS1_SETTING_HEATED_TUBE_TEMP, tubetemp)); this->AddEvent(new PRS1ParsedSettingEvent(PRS1_SETTING_HUMID_LEVEL, tubehumidlevel)); } else { this->AddEvent(new PRS1ParsedSettingEvent(PRS1_SETTING_HUMID_LEVEL, humidlevel)); } } } // Check for previously unseen data that we expect to be normal: if (this->family == 0) { // F0V4 if (tubetemp && (tubehumidlevel < 1 || tubehumidlevel > 3)) UNEXPECTED_VALUE(tubehumidlevel, "1-3"); } else if (this->familyVersion == 1) { // F5V1 if (tubepresent) { // all tube temperatures seen if (tubetemp) { if (tubehumidlevel == 0 || tubehumidlevel > 3) UNEXPECTED_VALUE(tubehumidlevel, "1-3"); } } } else if (this->familyVersion == 2) { // F5V2 if (tubepresent) { CHECK_VALUES(tubetemp, 0, 3); if (tubetemp) { CHECK_VALUE(tubehumidlevel, 1); } } CHECK_VALUE(humidsystemone, false); CHECK_VALUE(humidclassic, false); } } // Humid F0V2 confirmed // 0x00 = Off (presumably no humidifier present) // 0x80 = Off // 0x81 = 1 // 0x82 = 2 // 0x83 = 3 // 0x84 = 4 // 0x85 = 5 // Humid F3V0 confirmed // 0x03 = 3 (but no humidification shown on hours of usage chart) // 0x04 = 4 (but no humidification shown on hours of usage chart) // 0x80 = Off // 0x81 = 1 // 0x82 = 2 // 0x83 = 3 // 0x84 = 4 // 0x85 = 5 // Humid F5V0 confirmed // 0x00 = Off (presumably no humidifier present) // 0x80 = Off // 0x81 = 1, bypass = no // 0x82 = 2, bypass = no // 0x83 = 3, bypass = no // 0x84 = 4, bypass = no // 0x85 = 5, bypass = no // 0xA0 = Off, bypass = yes void PRS1DataChunk::ParseHumidifierSetting50Series(int humid, bool add_setting) { if (humid & (0x40 | 0x10 | 0x08)) UNEXPECTED_VALUE(humid, "known bits"); if (humid & 0x20) { if (this->family == 5) { CHECK_VALUE(humid, 0xA0); // only example of bypass set, unsure whether it can appear otherwise } else { CHECK_VALUE(humid & 0x20, 0); // only ever seen on 950P, where "Bypass System One humidification" is "Yes" } } bool humidifier_present = ((humid & 0x80) != 0); // humidifier connected int humidlevel = humid & 7; // humidification level HumidMode humidmode = HUMID_Fixed; // 50-Series didn't have adaptive or heated tube humidification if (add_setting) { this->AddEvent(new PRS1ParsedSettingEvent(PRS1_SETTING_HUMID_STATUS, humidifier_present)); if (humidifier_present) { this->AddEvent(new PRS1ParsedSettingEvent(PRS1_SETTING_HUMID_MODE, humidmode)); this->AddEvent(new PRS1ParsedSettingEvent(PRS1_SETTING_HUMID_LEVEL, humidlevel)); } } // Check for truly unexpected values: if (humidlevel > 5) UNEXPECTED_VALUE(humidlevel, "<= 5"); //if (!humidifier_present) CHECK_VALUES(humidlevel, 0, 1); // Some machines appear to encode the humidlevel setting even when the humidifier is not present. } void PRS1DataChunk::ParseTubingTypeV3(unsigned char type) { int diam; switch (type) { case 0: diam = 22; break; case 1: diam = 15; break; case 2: diam = 15; break; // 15HT, though the reports only say "15" for DreamStation models case 3: diam = 12; break; // seen on DreamStation Go models default: UNEXPECTED_VALUE(type, "known tubing type"); return; } this->AddEvent(new PRS1ParsedSettingEvent(PRS1_SETTING_HOSE_DIAMETER, diam)); } // F0V6 confirmed // 90 B0 = HT=3!,H=3!,data=none [no humidifier appears to ignore HT and H bits and show HT=3,H=3 in details] // 8C 6C = HT=3, H=3, data=none // 80 00 = nothing listed in details, data=none, only seen on 400G and 502G // 54 B4 = HT=5, H=5, data=tube // 50 90 = HT=4, H=4, data=tube // 4C 6C = HT=3, H=3, data=tube // 48 68 = HT=3, H=2, data=tube // 40 60 = HT=3, H=Off, data=tube t=3,h=0 // 50 50 = HT=2, H=4, data=tube // 4C 4C = HT=2, H=3, data=tube // 50 30 = HT=1, H=4, data=tube // 4C 0C = HT=off, H=3, data=tube t=0,h=3 // 34 74 = HT=3, H=5, data=adaptive (5) // 50 B0 = HT=5, H=4, adaptive // 30 B0 = HT=3, H=4, data=adaptive (4) // 30 50 = HT=3, H=4, data=adaptive (4) // 30 10 = HT=3!,H=4, data=adaptive (4) [adaptive mode appears to ignore HT bits and show HT=3 in details] // 30 70 = HT=3, H=4, data=adaptive (4) // 2C 6C = HT=3, H=3, data=adaptive (3) // 28 08 = H=2, data=adaptive (2), no details (400G) // 28 48 = HT=3!,H=2, data=adaptive (2) [adaptive mode appears to ignore HT bits and show HT=3 in details] // 28 68 = HT=3, H=2, data=adaptive (2) // 24 64 = HT=3, H=1, data=adaptive (1) // 20 60 = HT=3, H=off, data=adaptive (0) // 14 74 = HT=3, H=5, data=fixed (5) // 10 70 = HT=3, H=4, data=fixed (4) // 0C 6C = HT=3, H=3, data=fixed (3) // 08 48 = HT=3, H=2, data=fixed (2) // 08 68 = HT=3, H=2, data=fixed (2) // 04 64 = HT=3, H=1, data=fixed (1) // 00 00 = HT=3, H=off, data=fixed (0) // F5V3 confirmed: // 90 70 = HT=3, H=3, adaptive, data=no data // 54 14 = HT=Off, H=5, adaptive, data=tube t=0,h=5 // 54 34 = HT=1, H=5, adaptive, data=tube t=1,h=5 // 50 70 = HT=3, H=4, adaptive, data=tube t=3,h=4 // 4C 6C = HT=3, H=3, adaptive, data=tube t=3,h=3 // 4C 4C = HT=2, H=3, adaptive, data=tube t=2,h=3 // 4C 2C = HT=1, H=3, adaptive, data=tube t=1,h=3 // 4C 0C = HT=off, H=3, adaptive, data=tube t=0,h=3 // 48 08 = HT=off, H=2, adaptive, data=tube t=0,h=2 // 44 04 = HT=off, H=1, adaptive, data=tube t=0,h=1 // 40 00 = HT=off,H=off, adaptive, data=tube t=0,h=0 // 34 74 = HT=3, H=5, adaptive, data=s1 (5) // 30 70 = HT=3, H=4, adaptive, data=s1 (4) // 2C 6C = HT=3, H=3, adaptive, data=s1 (3) // 28 68 = HT=3, H=2, adaptive, data=s1 (2) // 24 64 = HT=3, H=1, adaptive, data=s1 (1) // F3V6 confirmed: // 84 24 = HT=3, H=3, disconnect=adaptive, data=no data // 50 90 = HT=4, H=4, disconnect=adaptive, data=tube t=4,h=4 // 44 84 = HT=4, H=1, disconnect=adaptive, data=tube t=4,h=1 // 40 80 = HT=4, H=Off,disconnect=adaptive, data=tube t=4,h=0 // 4C 6C = HT=3, H=3, disconnect=adaptive, data=tube t=3,h=3 // 48 68 = HT=3, H=2, disconnect=adaptive, data=tube t=3,h=2 // 44 44 = HT=2, H=1, disconnect=adaptive, data=tube t=2,h=1 // 48 28 = HT=1, H=2, disconnect=adaptive, data=tube t=1,h=2 // 54 14 = HT=Off,H=5, disconnect=adaptive data=tube t=0,h=5 // 34 14 = HT=3, H=5, disconnect=adaptive, data=s1 (5) // 30 70 = HT=3, H=4, disconnect=adaptive, data=s1 (4) // 2C 6C = HT=3, H=3, disconnect=adaptive, data=s1 (3) // 28 08 = HT=3, H=2, disconnect=adaptive, data=s1 (2) // 20 20 = HT=3, H=Off, disconnect=adaptive, data=s1 (0) // 14 14 = HT=3, H=3, disconnect=fixed, data=classic (5) // 10 10 = HT=3, H=4, disconnect=fixed, data=classic (4) [fixed mode appears to ignore HT bits and show HT=3 in details] // 0C 0C = HT=3, H=3, disconnect=fixed, data=classic (3) // 08 08 = HT=3, H=2, disconnect=fixed, data=classic (2) // 04 64 = HT=3, H=1, disconnect=fixed, data=classic (1) // The data is consistent among all fileVersion 3 models: F0V6, F5V3, F3V6. // // NOTE: F5V3 and F3V6 charts report the "Adaptive" setting as "System One" and the "Fixed" // setting as "Classic", despite labeling the settings "Adaptive" and "Fixed" just like F0V6. // F0V6 is consistent and labels both settings and chart as "Adaptive" and "Fixed". // // 400G and 502G appear to omit the humidifier settings in their details, though they // do support humidifiers, and will show the humidification in the charts. void PRS1DataChunk::ParseHumidifierSettingV3(unsigned char byte1, unsigned char byte2, bool add_setting) { bool humidifier_present = true; bool humidfixed = false; // formerly called "Classic" bool humidadaptive = false; // formerly called "System One" bool tubepresent = false; bool passover = false; bool error = false; // Byte 1: 0x90 (no humidifier data), 0x50 (15ht, tube 4/5, humid 4), 0x54 (15ht, tube 5, humid 5) 0x4c (15ht, tube temp 3, humidifier 3) // 0x0c (15, tube 3, humid 3, fixed) // 0b1001 0000 no humidifier data // 0b0101 0000 tube 4 and 5, humidifier 4 // 0b0101 0100 15ht, tube 5, humidifier 5 // 0b0100 1100 15ht, tube 3, humidifier 3 // 0b1011 0000 15, tube 3, humidifier 3, "Error" on humidification chart with asterisk at 4 // 0b0111 0000 15, tube 3, humidifier 3, "Passover" on humidification chart with notch at 4 // 842 = humidifier status // 1 84 = humidifier setting // ?? CHECK_VALUE(byte1 & 3, 0); int humid = byte1 >> 5; switch (humid) { case 0: humidfixed = true; break; // fixed, ignores tubetemp bits and reports tubetemp=3 case 1: humidadaptive = true; break; // adaptive, ignores tubetemp bits and reports tubetemp=3 case 2: tubepresent = true; break; // heated tube case 3: passover = true; break; // passover mode (only visible in chart) case 4: humidifier_present = false; break; // no humidifier, reports tubetemp=3 and humidlevel=3 case 5: error = true; break; // "Error" in humidification chart, reports tubetemp=3 and humidlevel=3 in settings default: UNEXPECTED_VALUE(humid, "known value"); break; } int humidlevel = (byte1 >> 2) & 7; // Byte 2: 0xB4 (15ht, tube 5, humid 5), 0xB0 (15ht, tube 5, humid 4), 0x90 (tube 4, humid 4), 0x6C (15ht, tube temp 3, humidifier 3) // 0x80? // 0b1011 0100 15ht, tube 5, humidifier 5 // 0b1011 0000 15ht, tube 5, humidifier 4 // 0b1001 0000 tube 4, humidifier 4 // 0b0110 1100 15ht, tube 3, humidifier 3 // 842 = tube temperature // 1 84 = humidity level when using heated tube, thus far always identical to humidlevel // ?? CHECK_VALUE(byte2 & 3, 0); int tubehumidlevel = (byte2 >> 2) & 7; CHECK_VALUE(humidlevel, tubehumidlevel); // thus far always the same int tubetemp = (byte2 >> 5) & 7; if (humidifier_present) { if (humidlevel > 5 || humidlevel < 0) UNEXPECTED_VALUE(humidlevel, "0-5"); // 0=off is valid when a humidifier is attached if (humid == 2) { // heated tube if (tubetemp > 5 || tubetemp < 0) UNEXPECTED_VALUE(tubetemp, "0-5"); // TODO: maybe this is only if heated tube? 0=off is valid even in heated tube mode } } // TODO: move this up into the switch statement above, given how many modes there now are. HumidMode humidmode = HUMID_Fixed; if (tubepresent) { humidmode = HUMID_HeatedTube; } else if (humidadaptive) { humidmode = HUMID_Adaptive; } else if (passover) { humidmode = HUMID_Passover; } else if (error) { humidmode = HUMID_Error; } if (add_setting) { this->AddEvent(new PRS1ParsedSettingEvent(PRS1_SETTING_HUMID_STATUS, humidifier_present)); if (humidifier_present) { this->AddEvent(new PRS1ParsedSettingEvent(PRS1_SETTING_HUMID_MODE, humidmode)); if (humidmode == HUMID_HeatedTube) { this->AddEvent(new PRS1ParsedSettingEvent(PRS1_SETTING_HEATED_TUBE_TEMP, tubetemp)); this->AddEvent(new PRS1ParsedSettingEvent(PRS1_SETTING_HUMID_LEVEL, tubehumidlevel)); } else { this->AddEvent(new PRS1ParsedSettingEvent(PRS1_SETTING_HUMID_LEVEL, humidlevel)); } } } // Check for previously unseen data that we expect to be normal: if (family == 0) { // All variations seen. } else if (family == 5) { if (tubepresent) { // All tube temperature and humidity levels seen. } else if (humidadaptive) { // All humidity levels seen. } else if (humidfixed) { if (humidlevel < 3) UNEXPECTED_VALUE(humidlevel, "3-5"); } } else if (family == 3) { if (tubepresent) { // All tube temperature and humidity levels seen. } else if (humidadaptive) { // All humidity levels seen. } else if (humidfixed) { // All humidity levels seen. } } } void PRS1Import::AddSlice(qint64 start, PRS1ParsedEvent* e) { // Cache all slices and incrementally calculate their durations. PRS1ParsedSliceEvent* s = (PRS1ParsedSliceEvent*) e; qint64 tt = start + qint64(s->m_start) * 1000L; if (!m_slices.isEmpty()) { SessionSlice & prevSlice = m_slices.last(); prevSlice.end = tt; } m_slices.append(SessionSlice(tt, tt, (SliceStatus) s->m_value)); } bool PRS1Import::ImportSummary() { if (!summary) { qWarning() << "ImportSummary() called with no summary?"; return false; } qint64 start = qint64(summary->timestamp) * 1000L; session->set_first(start); // TODO: The below max pressures aren't right for the 30 cmH2O models. session->setPhysMax(CPAP_LeakTotal, 120); session->setPhysMin(CPAP_LeakTotal, 0); session->setPhysMax(CPAP_Pressure, 25); session->setPhysMin(CPAP_Pressure, 4); session->setPhysMax(CPAP_IPAP, 25); session->setPhysMin(CPAP_IPAP, 4); session->setPhysMax(CPAP_EPAP, 25); session->setPhysMin(CPAP_EPAP, 4); session->setPhysMax(CPAP_PS, 25); session->setPhysMin(CPAP_PS, 0); bool ok; ok = summary->ParseSummary(); PRS1Mode nativemode = PRS1_MODE_UNKNOWN; CPAPMode cpapmode = MODE_UNKNOWN; bool humidifierConnected = false; for (int i=0; i < summary->m_parsedData.count(); i++) { PRS1ParsedEvent* e = summary->m_parsedData.at(i); if (e->m_type == PRS1ParsedSliceEvent::TYPE) { AddSlice(start, e); continue; } else if (e->m_type != PRS1ParsedSettingEvent::TYPE) { qWarning() << "Summary had non-setting event:" << (int) e->m_type; continue; } PRS1ParsedSettingEvent* s = (PRS1ParsedSettingEvent*) e; switch (s->m_setting) { case PRS1_SETTING_CPAP_MODE: nativemode = (PRS1Mode) e->m_value; cpapmode = importMode(e->m_value); break; case PRS1_SETTING_PRESSURE: session->settings[CPAP_Pressure] = e->value(); break; case PRS1_SETTING_PRESSURE_MIN: session->settings[CPAP_PressureMin] = e->value(); break; case PRS1_SETTING_PRESSURE_MAX: session->settings[CPAP_PressureMax] = e->value(); break; case PRS1_SETTING_EPAP: session->settings[CPAP_EPAP] = e->value(); break; case PRS1_SETTING_IPAP: session->settings[CPAP_IPAP] = e->value(); break; case PRS1_SETTING_PS: session->settings[CPAP_PS] = e->value(); break; case PRS1_SETTING_EPAP_MIN: session->settings[CPAP_EPAPLo] = e->value(); break; case PRS1_SETTING_EPAP_MAX: session->settings[CPAP_EPAPHi] = e->value(); break; case PRS1_SETTING_IPAP_MIN: session->settings[CPAP_IPAPLo] = e->value(); break; case PRS1_SETTING_IPAP_MAX: session->settings[CPAP_IPAPHi] = e->value(); break; case PRS1_SETTING_PS_MIN: session->settings[CPAP_PSMin] = e->value(); break; case PRS1_SETTING_PS_MAX: session->settings[CPAP_PSMax] = e->value(); break; case PRS1_SETTING_FLEX_MODE: session->settings[PRS1_FlexMode] = e->m_value; break; case PRS1_SETTING_FLEX_LEVEL: session->settings[PRS1_FlexLevel] = e->m_value; break; case PRS1_SETTING_FLEX_LOCK: session->settings[PRS1_FlexLock] = (bool) e->m_value; break; case PRS1_SETTING_RAMP_TIME: session->settings[CPAP_RampTime] = e->m_value; break; case PRS1_SETTING_RAMP_PRESSURE: session->settings[CPAP_RampPressure] = e->value(); break; case PRS1_SETTING_RAMP_TYPE: session->settings[PRS1_RampType] = e->m_value; break; case PRS1_SETTING_HUMID_STATUS: humidifierConnected = (bool) e->m_value; session->settings[PRS1_HumidStatus] = humidifierConnected; break; case PRS1_SETTING_HUMID_MODE: session->settings[PRS1_HumidMode] = e->m_value; break; case PRS1_SETTING_HEATED_TUBE_TEMP: session->settings[PRS1_TubeTemp] = e->m_value; break; case PRS1_SETTING_HUMID_LEVEL: session->settings[PRS1_HumidLevel] = e->m_value; break; case PRS1_SETTING_HUMID_TARGET_TIME: // Only import this setting if there's a humidifier connected. // (This setting appears in the data even when it's disconnected.) // TODO: Consider moving this logic into the parser for target time. if (humidifierConnected) { if (e->m_value > 1) { // use scaled numeric value session->settings[PRS1_HumidTargetTime] = e->value(); } else { // use unscaled 0 or 1 for Off or Auto respectively session->settings[PRS1_HumidTargetTime] = e->m_value; } } break; case PRS1_SETTING_MASK_RESIST_LOCK: session->settings[PRS1_MaskResistLock] = (bool) e->m_value; break; case PRS1_SETTING_MASK_RESIST_SETTING: session->settings[PRS1_MaskResistSet] = e->m_value; break; case PRS1_SETTING_HOSE_DIAMETER: session->settings[PRS1_HoseDiam] = e->m_value; break; case PRS1_SETTING_TUBING_LOCK: session->settings[PRS1_TubeLock] = (bool) e->m_value; break; case PRS1_SETTING_AUTO_ON: session->settings[PRS1_AutoOn] = (bool) e->m_value; break; case PRS1_SETTING_AUTO_OFF: session->settings[PRS1_AutoOff] = (bool) e->m_value; break; case PRS1_SETTING_MASK_ALERT: session->settings[PRS1_MaskAlert] = (bool) e->m_value; break; case PRS1_SETTING_SHOW_AHI: session->settings[PRS1_ShowAHI] = (bool) e->m_value; break; case PRS1_SETTING_BACKUP_BREATH_MODE: session->settings[PRS1_BackupBreathMode] = e->m_value; break; case PRS1_SETTING_BACKUP_BREATH_RATE: session->settings[PRS1_BackupBreathRate] = e->m_value; break; case PRS1_SETTING_BACKUP_TIMED_INSPIRATION: session->settings[PRS1_BackupBreathTi] = e->value(); break; case PRS1_SETTING_TIDAL_VOLUME: session->settings[CPAP_TidalVolume] = e->m_value; break; case PRS1_SETTING_AUTO_TRIAL: // new to F0V6 session->settings[PRS1_AutoTrial] = e->m_value; nativemode = PRS1_MODE_AUTOTRIAL; // Note: F0V6 reports show the underlying CPAP mode rather than Auto-Trial. cpapmode = importMode(nativemode); break; case PRS1_SETTING_EZ_START: session->settings[PRS1_EZStart] = (bool) e->m_value; break; case PRS1_SETTING_RISE_TIME: session->settings[PRS1_RiseTime] = e->m_value; break; case PRS1_SETTING_RISE_TIME_LOCK: session->settings[PRS1_RiseTimeLock] = (bool) e->m_value; break; case PRS1_SETTING_APNEA_ALARM: case PRS1_SETTING_DISCONNECT_ALARM: case PRS1_SETTING_LOW_MV_ALARM: case PRS1_SETTING_LOW_TV_ALARM: // TODO: define and add new channels for alarms once we have more samples and can reliably parse them. break; default: qWarning() << "Unknown PRS1 setting type" << (int) s->m_setting; break; } } if (!ok) { return false; } if (summary->m_parsedData.count() > 0) { if (nativemode == PRS1_MODE_UNKNOWN) UNEXPECTED_VALUE(nativemode, "known mode"); if (cpapmode == MODE_UNKNOWN) UNEXPECTED_VALUE(cpapmode, "known mode"); session->settings[PRS1_Mode] = nativemode; session->settings[CPAP_Mode] = cpapmode; } if (summary->duration == 0) { // This does occasionally happen and merely indicates a brief session with no useful data. // This requires the use of really_set_last below, which otherwise rejects 0 length. //qDebug() << summary->sessionid << "session duration == 0"; } session->really_set_last(qint64(summary->timestamp + summary->duration) * 1000L); return true; } bool PRS1DataChunk::ParseSummary() { switch (this->family) { case 0: if (this->familyVersion == 6) { return this->ParseSummaryF0V6(); } else if (this->familyVersion == 4) { return this->ParseSummaryF0V4(); } else { return this->ParseSummaryF0V23(); } case 3: switch (this->familyVersion) { case 0: return this->ParseSummaryF3V03(); case 3: return this->ParseSummaryF3V03(); case 6: return this->ParseSummaryF3V6(); } break; case 5: if (this->familyVersion == 1) { return this->ParseSummaryF5V012(); } else if (this->familyVersion == 0) { return this->ParseSummaryF5V012(); } else if (this->familyVersion == 2) { return this->ParseSummaryF5V012(); } else if (this->familyVersion == 3) { return this->ParseSummaryF5V3(); } default: ; } qWarning() << "unexpected family" << this->family << "familyVersion" << this->familyVersion; return false; } // TODO: The nested switch statement below just begs for per-version subclasses. bool PRS1DataChunk::ParseEvents() { bool ok = false; switch (this->family) { case 0: switch (this->familyVersion) { case 2: ok = this->ParseEventsF0V23(); break; case 3: ok = this->ParseEventsF0V23(); break; case 4: ok = this->ParseEventsF0V4(); break; case 6: ok = this->ParseEventsF0V6(); break; } break; case 3: switch (this->familyVersion) { case 0: ok = this->ParseEventsF3V03(); break; case 3: ok = this->ParseEventsF3V03(); break; case 6: ok = this->ParseEventsF3V6(); break; } break; case 5: switch (this->familyVersion) { case 0: ok = this->ParseEventsF5V0(); break; case 1: ok = this->ParseEventsF5V1(); break; case 2: ok = this->ParseEventsF5V2(); break; case 3: ok = this->ParseEventsF5V3(); break; } break; default: qDebug() << "Unknown PRS1 family" << this->family << "familyVersion" << this->familyVersion; } return ok; } bool PRS1Import::ImportEvents() { bool ok = true; for (auto & event : m_event_chunks.values()) { bool chunk_ok = this->ImportEventChunk(event); if (!chunk_ok && m_event_chunks.count() > 1) { // Specify which chunk had problems if there's more than one. ParseSession will warn about the overall result. qWarning() << event->sessionid << QString("Error parsing events in %1 @ %2, continuing") .arg(relativePath(event->m_path)) .arg(event->m_filepos); } ok &= chunk_ok; } if (ok) { // Sanity check: warn if channels' eventlists don't line up with the final mask-on slices. // First make a list of the mask-on slices that will be imported (nonzero duration) QVector maskOn; for (auto & slice : m_slices) { if (slice.status == MaskOn) { if (slice.end > slice.start) { maskOn.append(slice); } else { qWarning() << this->sessionid << "Dropping empty mask-on slice:" << ts(slice.start); } } } // Then go through each required channel and make sure each eventlist is within // the bounds of the corresponding slice, warn if not. if (maskOn.count() > 0 && m_event_chunks.count() > 0) { QVector maskOnWithEvents = maskOn; if (m_event_chunks.first()->family == 3 && m_event_chunks.first()->familyVersion <= 3) { // F3V0 and F3V3 sometimes omit (empty) event chunks if the mask-on slice is shorter than 2 minutes. // Specifically, 1061401 and 1061T always do, but 1160P usually doesn't. Sometimes 1160P will omit // just the first event chunk if the first mask-on slice is shorter than 2 minutes. int empty = maskOn.count() - m_event_chunks.count(); if (empty > 0) { // If there are fewer event chunks than mask-on slices, filter the list to have just the // mask-on slices that we expect to have events. int skipped = 0; maskOnWithEvents.clear(); for (auto & slice : maskOn) { if (skipped < empty && slice.end - slice.start < 120 * 1000L) { skipped++; continue; } maskOnWithEvents.append(slice); } } } if (maskOnWithEvents.count() < m_event_chunks.count()) { qWarning() << sessionid << "has more event chunks than mask-on slices!"; } const QVector & supported = GetSupportedEvents(m_event_chunks.first()); for (auto & e : supported) { if (!PRS1OnDemandChannels.contains(e) && !PRS1NonSliceChannels.contains(e)) { for (auto & pChannelID : PRS1ImportChannelMap[e]) { auto & eventlists = session->eventlist[*pChannelID]; if (eventlists.count() != maskOnWithEvents.count()) { qWarning() << sessionid << "has" << maskOnWithEvents.count() << "mask-on slices, channel" << *pChannelID << "has" << eventlists.count() << "eventlists"; continue; } for (int i = 0; i < eventlists.count(); i++) { if (eventlists[i]->count() == 0) continue; // no first/last timestamp auto & list = eventlists[i]; auto & slice = maskOnWithEvents[i]; if (list->first() < slice.start || list->first() > slice.end || list->last() < slice.start || list->last() > slice.end) { qWarning() << sessionid << "channel" << *pChannelID << "has events outside of mask-on slice" << i; } } } } } } // The above is just sanity-checking the results of our import process, that discontinuous // data is fully contained within mask-on slices. session->m_cnt.clear(); session->m_cph.clear(); session->m_valuesummary[CPAP_Pressure].clear(); session->m_valuesummary.erase(session->m_valuesummary.find(CPAP_Pressure)); } return ok; } QList PRS1Import::CoalesceWaveformChunks(QList & allchunks) { QList coalesced; PRS1DataChunk *chunk = nullptr, *lastchunk = nullptr; int num; for (int i=0; i < allchunks.size(); ++i) { chunk = allchunks.at(i); // Log mismatched waveform session IDs QFileInfo fi(chunk->m_path); bool numeric; QString session_s = fi.fileName().section(".", 0, -2); qint32 sid = session_s.toInt(&numeric, m_sessionid_base); if (!numeric || sid != chunk->sessionid) { qWarning() << chunk->m_path << "@" << chunk->m_filepos << "session ID mismatch:" << chunk->sessionid; } if (lastchunk != nullptr) { // A handful of 960P waveform files have been observed to have multiple sessions. // // This breaks the current approach of deferring waveform parsing until the (multithreaded) // import, since each session is in a separate import task and could be in a separate // thread, or already imported by the time it is discovered that this file contains // more than one session. // // For now, we just dump the chunks that don't belong to the session currently // being imported in this thread, since this happens so rarely. // // TODO: Rework the import process to handle waveform data after compliance/summary/ // events (since we're no longer inferring session information from it) and add it to the // newly imported sessions. if (lastchunk->sessionid != chunk->sessionid) { qWarning() << chunk->m_path << "@" << chunk->m_filepos << "session ID" << lastchunk->sessionid << "->" << chunk->sessionid << ", skipping" << allchunks.size() - i << "remaining chunks"; // Free any remaining chunks for (int j=i; j < allchunks.size(); ++j) { chunk = allchunks.at(j); delete chunk; } break; } // Check whether the data format is the same between the two chunks bool same_format = (lastchunk->waveformInfo.size() == chunk->waveformInfo.size()); if (same_format) { num = chunk->waveformInfo.size(); for (int n=0; n < num; n++) { const PRS1Waveform &a = lastchunk->waveformInfo.at(n); const PRS1Waveform &b = chunk->waveformInfo.at(n); if (a.interleave != b.interleave) { // We've never seen this before qWarning() << chunk->m_path << "format change?" << a.interleave << b.interleave; same_format = false; break; } } } else { // We've never seen this before qWarning() << chunk->m_path << "channels change?" << lastchunk->waveformInfo.size() << chunk->waveformInfo.size(); } qint64 diff = (chunk->timestamp - lastchunk->timestamp) - lastchunk->duration; if (same_format && diff == 0) { // Same format and in sync, so append waveform data to previous chunk lastchunk->m_data.append(chunk->m_data); lastchunk->duration += chunk->duration; delete chunk; continue; } // else start a new chunk to resync } // Report any formats we haven't seen before num = chunk->waveformInfo.size(); if (num > 2) { qDebug() << chunk->m_path << num << "channels"; } for (int n=0; n < num; n++) { int interleave = chunk->waveformInfo.at(n).interleave; switch (chunk->ext) { case 5: // flow data, 5 samples per second if (interleave != 5) { qDebug() << chunk->m_path << "interleave?" << interleave; } break; case 6: // oximetry, 1 sample per second if (interleave != 1) { qDebug() << chunk->m_path << "interleave?" << interleave; } break; default: qWarning() << chunk->m_path << "unknown waveform?" << chunk->ext; break; } } coalesced.append(chunk); lastchunk = chunk; } // In theory there could be broken sessions that have waveform data but no summary or events. // Those waveforms won't be skipped by the scanner, so we have to check for them here. // // This won't be perfect, since any coalesced chunks starting after midnight of the threshhold // date will also be imported, but those should be relatively few, and tolerable imprecision. QList coalescedAndFiltered; qint64 ignoreBefore = p_profile->session->ignoreOlderSessionsDate().toMSecsSinceEpoch()/1000; bool ignoreOldSessions = p_profile->session->ignoreOlderSessions(); for (auto & chunk : coalesced) { if (ignoreOldSessions && chunk->timestamp < ignoreBefore) { qWarning().noquote() << relativePath(chunk->m_path) << "skipping session" << chunk->sessionid << ":" << QDateTime::fromMSecsSinceEpoch(chunk->timestamp*1000).toString() << "older than" << QDateTime::fromMSecsSinceEpoch(ignoreBefore*1000).toString(); delete chunk; continue; } coalescedAndFiltered.append(chunk); } return coalescedAndFiltered; } void PRS1Import::ImportOximetry() { int size = oximetry.size(); for (int i=0; i < size; ++i) { PRS1DataChunk * oxi = oximetry.at(i); int num = oxi->waveformInfo.size(); CHECK_VALUE(num, 2); int size = oxi->m_data.size(); if (size == 0) { qDebug() << oxi->sessionid << oxi->timestamp << "empty?"; continue; } quint64 ti = quint64(oxi->timestamp) * 1000L; qint64 dur = qint64(oxi->duration) * 1000L; if (num > 1) { CHECK_VALUE(oxi->waveformInfo.at(0).interleave, 1); CHECK_VALUE(oxi->waveformInfo.at(1).interleave, 1); // Process interleaved samples QVector data; data.resize(num); int pos = 0; do { for (int n=0; n < num; n++) { int interleave = oxi->waveformInfo.at(n).interleave; data[n].append(oxi->m_data.mid(pos, interleave)); pos += interleave; } } while (pos < size); CHECK_VALUE(data[0].size(), data[1].size()); ImportOximetryChannel(OXI_Pulse, data[0], ti, dur); ImportOximetryChannel(OXI_SPO2, data[1], ti, dur); } } } void PRS1Import::ImportOximetryChannel(ChannelID channel, QByteArray & data, quint64 ti, qint64 dur) { if (data.size() == 0) return; unsigned char* raw = (unsigned char*) data.data(); qint64 step = dur / data.size(); CHECK_VALUE(dur % data.size(), 0); bool pending_samples = false; quint64 start_ti; int start_i; // Split eventlist on invalid values (254-255) for (int i=0; i < data.size(); i++) { unsigned char value = raw[i]; bool valid = (value < 254); if (valid) { if (pending_samples == false) { pending_samples = true; start_i = i; start_ti = ti; } if (channel == OXI_Pulse) { // Values up through 253 are confirmed to be reported as valid on official reports. } else { if (value > 100) UNEXPECTED_VALUE(value, "<= 100%"); } } else { if (pending_samples) { // Create the pending event list EventList* el = session->AddEventList(channel, EVL_Waveform, 1.0, 0.0, 0.0, 0.0, step); el->AddWaveform(start_ti, &raw[start_i], i - start_i, ti - start_ti); pending_samples = false; } } ti += step; } if (pending_samples) { // Create the pending event list EventList* el = session->AddEventList(channel, EVL_Waveform, 1.0, 0.0, 0.0, 0.0, step); el->AddWaveform(start_ti, &raw[start_i], data.size() - start_i, ti - start_ti); pending_samples = false; } } void PRS1Import::ImportWaveforms() { int size = waveforms.size(); quint64 s1, s2; int discontinuities = 0; qint64 lastti=0; for (int i=0; i < size; ++i) { PRS1DataChunk * waveform = waveforms.at(i); int num = waveform->waveformInfo.size(); int size = waveform->m_data.size(); if (size == 0) { qDebug() << waveform->sessionid << waveform->timestamp << "empty?"; continue; } quint64 ti = quint64(waveform->timestamp) * 1000L; quint64 dur = qint64(waveform->duration) * 1000L; qint64 diff = ti - lastti; if ((lastti != 0) && (diff == 1000 || diff == -1000)) { // TODO: Handle discontinuities properly. // Option 1: preserve the discontinuity and make it apparent: // - In the case of a 1-sec overlap, truncate the previous waveform by 1s (+1 sample). // - Then start a new eventlist for the new section. // > The down side of this approach is gaps in the data. // Option 2: slide the waveform data a fraction of a second to avoid the discontinuity // - In the case of a single discontinuity, simply adjust the timestamps of each section by 0.5s so they meet. // - In the case of multiple discontinuities, fitting them is more complicated // > The down side of this approach is that events won't line up exactly the same as official reports. // // Evidently the machines' internal clock drifts slightly, and in some sessions that // means two adjacent (5-minute) waveform chunks have have a +/- 1 second difference in // their notion of the correct time, since the machines only record time at 1-second // resolution. Presumably the real drift is fractional, but there's no way to tell from // the data. // // Encore apparently drops the second chunk entirely if it overlaps with the first // (even by 1 second), and inserts a 1-second gap in the data if it's 1 second later than // the first ended. // // At worst in the former case it seems preferable to drop the overlap and then one // additional second to mark the discontinuity. But depending how often these drifts // occur, it may be possible to adjust all the data so that it's continuous. "Overlapping" // data is not identical, so it seems like these discontinuities are simply an artifact // of timestamping at 1-second intervals right around the 1-second boundary. //qDebug() << waveform->sessionid << "waveform discontinuity:" << (diff / 1000L) << "s @" << ts(waveform->timestamp * 1000L); discontinuities++; } if (num > 1) { float pressure_gain = 0.1F; // standard pressure gain if ((waveform->family == 5 && (waveform->familyVersion == 2 || waveform->familyVersion == 3)) || (waveform->family == 3 && waveform->familyVersion == 6)){ // F5V2, F5V3, and F3V6 use a gain of 0.125 rather than 0.1 to allow for a maximum value of 30 cmH2O pressure_gain = 0.125F; // TODO: this should be parameterized somewhere better, once we have a clear idea of which machines use this } // Process interleaved samples QVector data; data.resize(num); int pos = 0; do { for (int n=0; n < num; n++) { int interleave = waveform->waveformInfo.at(n).interleave; data[n].append(waveform->m_data.mid(pos, interleave)); pos += interleave; } } while (pos < size); s1 = data[0].size(); s2 = data[1].size(); if (s1 > 0) { EventList * flow = session->AddEventList(CPAP_FlowRate, EVL_Waveform, 1.0f, 0.0f, 0.0f, 0.0f, double(dur) / double(s1)); flow->AddWaveform(ti, (char *)data[0].data(), data[0].size(), dur); } if (s2 > 0) { // NOTE: The 900X (F5V3) clamps the values at 127 (15.875 cmH2O) for some reason. // // Previous autoSV machines (950P-961P, F5V0-F5V2) didn't, nor do 1030X (F3V6). // 1130X (also F3V6) is unknown, but likely follows the 1030X. Older ventilators // (F3V3) are also unknown. EventList * pres = session->AddEventList(CPAP_MaskPressureHi, EVL_Waveform, pressure_gain, 0.0f, 0.0f, 0.0f, double(dur) / double(s2)); pres->AddWaveform(ti, (unsigned char *)data[1].data(), data[1].size(), dur); } } else { // Non interleaved, so can process it much faster EventList * flow = session->AddEventList(CPAP_FlowRate, EVL_Waveform, 1.0f, 0.0f, 0.0f, 0.0f, double(dur) / double(waveform->m_data.size())); flow->AddWaveform(ti, (char *)waveform->m_data.data(), waveform->m_data.size(), dur); } lastti = dur+ti; } if (discontinuities > 1) { qWarning() << session->session() << "multiple discontinuities!" << discontinuities; } } void PRS1Import::run() { if (mach->unsupported()) return; if (ParseSession()) { SaveSessionToDatabase(); } } bool PRS1Import::ParseSession(void) { bool ok = false; bool save = false; session = new Session(mach, sessionid); do { if (compliance != nullptr) { ok = ImportCompliance(); if (!ok) { // We don't see any parse errors with our test data, so warn if there's ever an error encountered. qWarning() << sessionid << "Error parsing compliance, skipping session"; break; } } if (summary != nullptr) { if (compliance != nullptr) { qWarning() << sessionid << "Has both compliance and summary?!"; // Never seen this, but try the summary anyway. } ok = ImportSummary(); if (!ok) { // We don't see any parse errors with our test data, so warn if there's ever an error encountered. qWarning() << sessionid << "Error parsing summary, skipping session"; break; } } if (compliance == nullptr && summary == nullptr) { // With one exception, the only time we've seen missing .000 or .001 data has been with a corrupted card, // or occasionally with partial cards where the .002 is the first file in the Pn directory // and we're missing the preceding directory. Since the lack of compliance or summary means we // don't know the therapy settings or if the mask was ever off, we just skip this very rare case. qWarning() << sessionid << "No compliance or summary, skipping session"; break; } // Import the slices into the session for (auto & slice : m_slices) { // Filter out 0-length slices, since they cause problems for Day::total_time(). if (slice.end > slice.start) { // Filter out everything except mask on/off, since gSessionTimesChart::paint assumes those are the only options. if (slice.status == MaskOn) { session->m_slices.append(slice); } else if (slice.status == MaskOff) { // Mark this slice as BND AddEvent(PRS1_BND, slice.end, (slice.end - slice.start) / 1000L, 1.0); session->m_slices.append(slice); } } } // If are no mask-on slices, then there's not any meaningful event or waveform data for the session. // If there's no no event or waveform data, mark this session as a summary. if (session->m_slices.count() == 0 || (m_event_chunks.count() == 0 && m_wavefiles.isEmpty() && m_oxifiles.isEmpty())) { session->setSummaryOnly(true); save = true; break; // and skip the occasional fragmentary event or waveform data } // TODO: There should be a way to distinguish between no-data-to-import vs. parsing errors // (once we figure out what's benign and what isn't). if (m_event_chunks.count() > 0) { ok = ImportEvents(); if (!ok) { qWarning() << sessionid << "Error parsing events, proceeding anyway?"; } } if (!m_wavefiles.isEmpty()) { // Parse .005 Waveform files waveforms = ReadWaveformData(m_wavefiles, "Waveform"); // Extract and import raw data into channels. ImportWaveforms(); } if (!m_oxifiles.isEmpty()) { // Parse .006 Waveform files oximetry = ReadWaveformData(m_oxifiles, "Oximetry"); // Extract and import raw data into channels. ImportOximetry(); } save = true; } while (false); return save; } QList PRS1Import::ReadWaveformData(QList & files, const char* label) { QMap waveform_chunks; QList result; if (files.count() > 1) { qDebug() << session->session() << label << "data split across multiple files"; } for (auto & f : files) { // Parse a single .005 or .006 waveform file QList file_chunks = loader->ParseFile(f); for (auto & chunk : file_chunks) { PRS1DataChunk* previous = waveform_chunks[chunk->timestamp]; if (previous != nullptr) { // Skip any chunks with identical timestamps. Never yet seen, so warn. qWarning() << chunkComparison(chunk, previous); delete chunk; continue; } waveform_chunks[chunk->timestamp] = chunk; } } // Get the list of pointers sorted by timestamp. result = waveform_chunks.values(); // Coalesce contiguous waveform chunks into larger chunks. result = CoalesceWaveformChunks(result); return result; } void PRS1Import::SaveSessionToDatabase(void) { // Make sure it's saved session->SetChanged(true); // Add the session to the database loader->addSession(session); // Update indexes, process waveform and perform flagging session->UpdateSummaries(); // Save is not threadsafe loader->saveMutex.lock(); session->Store(mach->getDataPath()); loader->saveMutex.unlock(); // Unload them from memory session->TrashEvents(); } QList PRS1Loader::ParseFile(const QString & path) { QList CHUNKS; if (path.isEmpty()) { // ParseSession passes empty filepaths for waveforms if none exist. //qWarning() << path << "ParseFile given empty path"; return CHUNKS; } QFile f(path); if (!f.exists()) { qWarning() << path << "missing"; return CHUNKS; } if (!f.open(QIODevice::ReadOnly)) { qWarning() << path << "can't open"; return CHUNKS; } RawDataFile* src; if (QFileInfo(f).suffix().toUpper() == "BIN") { // If it's a DS2 file, insert the DS2 wrapper to decode the chunk stream. src = new PRDS2File(f); } else { // Otherwise just use the file as input. src = new RawDataFile(f); } PRS1DataChunk *chunk = nullptr, *lastchunk = nullptr; int cnt = 0; do { chunk = PRS1DataChunk::ParseNext(*src, this); if (chunk == nullptr) { break; } chunk->SetIndex(cnt); // for logging/debugging purposes if (lastchunk != nullptr) { if ((lastchunk->fileVersion != chunk->fileVersion) || (lastchunk->ext != chunk->ext) || (lastchunk->family != chunk->family) || (lastchunk->familyVersion != chunk->familyVersion) || (lastchunk->htype != chunk->htype)) { QString message = "*** unexpected change in header data"; qWarning() << path << message; LogUnexpectedMessage(message); // 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, // we can then revisit how to handle it. } } CHUNKS.append(chunk); lastchunk = chunk; cnt++; } while (!src->atEnd()); delete src; return CHUNKS; } PRS1DataChunk::PRS1DataChunk(RawDataDevice & f, PRS1Loader* in_loader) : loader(in_loader) { m_path = f.name(); } PRS1DataChunk::~PRS1DataChunk() { for (int i=0; i < m_parsedData.count(); i++) { PRS1ParsedEvent* e = m_parsedData.at(i); delete e; } } PRS1DataChunk* PRS1DataChunk::ParseNext(RawDataDevice & f, PRS1Loader* loader) { PRS1DataChunk* out_chunk = nullptr; PRS1DataChunk* chunk = new PRS1DataChunk(f, loader); do { // Parse the header and calculate its checksum. bool ok = chunk->ReadHeader(f); if (!ok) { break; } // Make sure the calculated checksum matches the stored checksum. if (chunk->calcChecksum != chunk->storedChecksum) { qWarning() << chunk->m_path << "header checksum calc" << chunk->calcChecksum << "!= stored" << chunk->storedChecksum; break; } // Read the block's data and calculate the block CRC. ok = chunk->ReadData(f); if (!ok) { break; } // Make sure the calculated CRC over the entire chunk (header and data) matches the stored CRC. if (chunk->calcCrc != chunk->storedCrc) { // Corrupt data block, warn about it. qWarning() << chunk->m_path << "@" << chunk->m_filepos << "block CRC calc" << hex << chunk->calcCrc << "!= stored" << hex << chunk->storedCrc; // TODO: When this happens, it's usually because the chunk was truncated and another chunk header // exists within the blockSize bytes. In theory it should be possible to rewing and resync by // looking for another chunk header with the same fileVersion, htype, family, familyVersion, and // ext (blockSize and other fields could vary). // // But this is quite rare, so for now we bail on the rest of the file. break; } // Only return the chunk if it has passed all tests above. out_chunk = chunk; } while (false); if (out_chunk == nullptr) delete chunk; return out_chunk; } bool PRS1DataChunk::ReadHeader(RawDataDevice & f) { bool ok = false; do { // Read common header fields. this->m_filepos = f.pos(); this->m_header = f.read(15); if (this->m_header.size() != 15) { if (this->m_header.size() == 0) { qWarning() << this->m_path << "empty, skipping"; } else { qWarning() << this->m_path << "file too short?"; } break; } unsigned char * header = (unsigned char *)this->m_header.data(); this->fileVersion = header[0]; // Correlates to DataFileVersion in PROP[erties].TXT, only 2 or 3 has ever been observed this->blockSize = (header[2] << 8) | header[1]; this->htype = header[3]; // 00 = normal, 01=waveform this->family = header[4]; this->familyVersion = header[5]; this->ext = header[6]; this->sessionid = (header[10] << 24) | (header[9] << 16) | (header[8] << 8) | header[7]; this->timestamp = (header[14] << 24) | (header[13] << 16) | (header[12] << 8) | header[11]; // Do a few early sanity checks before any variable-length header data. if (this->blockSize == 0) { qWarning() << this->m_path << "@" << hex << this->m_filepos << "blocksize 0, skipping remainder of file"; break; } if (this->fileVersion < 2 || this->fileVersion > 3) { if (this->m_filepos > 0) { qWarning() << this->m_path << "@" << hex << this->m_filepos << "corrupt PRS1 header, skipping remainder of file"; } else { qWarning() << this->m_path << "unsupported PRS1 header version" << this->fileVersion; } break; } if (this->htype != PRS1_HTYPE_NORMAL && this->htype != PRS1_HTYPE_INTERVAL) { qWarning() << this->m_path << "unexpected htype:" << this->htype; break; } // Read format-specific variable-length header data. bool hdr_ok = false; if (this->htype != PRS1_HTYPE_INTERVAL) { // Not just waveforms: the 1160P uses this for its .002 events file. // Not a waveform/interval chunk switch (this->fileVersion) { case 2: hdr_ok = ReadNormalHeaderV2(f); break; case 3: hdr_ok = ReadNormalHeaderV3(f); break; default: //hdr_ok remains false, warning is above break; } } else { // Waveform/interval chunk hdr_ok = ReadWaveformHeader(f); } if (!hdr_ok) { break; } // The 8bit checksum comes at the end. QByteArray checksum = f.read(1); if (checksum.size() < 1) { qWarning() << this->m_path << "read error header checksum"; break; } this->storedChecksum = checksum.data()[0]; // Calculate 8bit additive header checksum. header = (unsigned char *)this->m_header.data(); // important because its memory location could move int header_size = this->m_header.size(); quint8 achk=0; for (int i=0; i < header_size; i++) { achk += header[i]; } this->calcChecksum = achk; // Append the stored checksum to the raw data *after* calculating the checksum on the preceding data. this->m_header.append(checksum); ok = true; } while (false); return ok; } bool PRS1DataChunk::ReadNormalHeaderV2(RawDataDevice & /*f*/) { this->m_headerblock = QByteArray(); return true; // always OK } bool PRS1DataChunk::ReadNormalHeaderV3(RawDataDevice & f) { bool ok = false; unsigned char * header; QByteArray headerB2; // This is a new machine, byte 15 is header data block length // followed by variable, data byte pairs do { QByteArray extra = f.read(1); if (extra.size() < 1) { qWarning() << this->m_path << "read error extended header"; break; } this->m_header.append(extra); header = (unsigned char *)this->m_header.data(); int hdb_len = header[15]; int hdb_size = hdb_len * 2; headerB2 = f.read(hdb_size); if (headerB2.size() != hdb_size) { qWarning() << this->m_path << "read error in extended header"; break; } this->m_headerblock = headerB2; this->m_header.append(headerB2); header = (unsigned char *)this->m_header.data(); const unsigned char * hd = (unsigned char *)headerB2.constData(); int pos = 0; int recs = header[15]; for (int i=0; ihblock[hd[pos]] = hd[pos+1]; pos += 2; } ok = true; } while (false); return ok; } bool PRS1DataChunk::ReadWaveformHeader(RawDataDevice & f) { bool ok = false; unsigned char * header; do { // Read the fixed-length waveform header. QByteArray extra = f.read(4); if (extra.size() != 4) { qWarning() << this->m_path << "read error in waveform header"; break; } this->m_header.append(extra); header = (unsigned char *)this->m_header.data(); // Parse the fixed-length portion. this->interval_count = header[0x0f] | header[0x10] << 8; this->interval_seconds = header[0x11]; // not always 1 after all this->duration = this->interval_count * this->interval_seconds; // ??? the last entry doesn't always seem to be a full interval? quint8 wvfm_signals = header[0x12]; // Read the variable-length data + trailing byte. int ws_size = (this->fileVersion == 3) ? 4 : 3; int sbsize = wvfm_signals * ws_size + 1; extra = f.read(sbsize); if (extra.size() != sbsize) { qWarning() << this->m_path << "read error in waveform header 2"; break; } this->m_header.append(extra); header = (unsigned char *)this->m_header.data(); // Parse the variable-length waveform information. // TODO: move these checks into the parser, after the header checksum has been verified // For now just skip them for the one known sample with a bad checksum. if (this->sessionid == 268962649) return true; int pos = 0x13; for (int i = 0; i < wvfm_signals; ++i) { quint8 kind = header[pos]; CHECK_VALUE(kind, i); // always seems to range from 0...wvfm_signals-1, alert if not quint16 interleave = header[pos + 1] | header[pos + 2] << 8; // samples per interval if (this->fileVersion == 2) { this->waveformInfo.push_back(PRS1Waveform(interleave, kind)); pos += 3; } else if (this->fileVersion == 3) { int always_8 = header[pos + 3]; // sample size in bits? CHECK_VALUE(always_8, 8); this->waveformInfo.push_back(PRS1Waveform(interleave, kind)); pos += 4; } } // And the trailing byte, whatever it is. int always_0 = header[pos]; CHECK_VALUE(always_0, 0); ok = true; } while (false); return ok; } bool PRS1DataChunk::ReadData(RawDataDevice & f) { bool ok = false; do { // Read data block int data_size = this->blockSize - this->m_header.size(); if (data_size < 0) { qWarning() << this->m_path << "chunk size smaller than header"; break; } this->m_data = f.read(data_size); if (this->m_data.size() < data_size) { qWarning() << this->m_path << "less data in file than specified in header"; break; } // Extract the stored CRC from the data buffer and calculate the current CRC. if (this->fileVersion==3) { // The last 4 bytes contain a CRC32 checksum of the data. if (!ExtractStoredCrc(4)) { break; } this->calcCrc = CRC32wchar((unsigned char *)this->m_data.data(), this->m_data.size()); } else { // The last 2 bytes contain a CRC16 checksum of the data. if (!ExtractStoredCrc(2)) { break; } this->calcCrc = CRC16((unsigned char *)this->m_data.data(), this->m_data.size()); } ok = true; } while (false); return ok; } bool PRS1DataChunk::ExtractStoredCrc(int size) { // Make sure there's enough data for the CRC. int offset = this->m_data.size() - size; if (offset < 0) { qWarning() << this->m_path << "chunk truncated"; return false; } // Read the last 16- or 32-bit little-endian integer. quint32 storedCrc = 0; unsigned char* data = (unsigned char*)this->m_data.data(); for (int i=0; i < size; i++) { storedCrc |= data[offset+i] << (8*i); } this->storedCrc = storedCrc; // Drop the CRC from the data. this->m_data.chop(size); return true; } bool initialized = false; using namespace schema; Channel PRS1Channels; void PRS1Loader::initChannels() { Channel * chan = nullptr; channel.add(GRP_CPAP, new Channel(CPAP_PressurePulse = 0x1009, MINOR_FLAG, MT_CPAP, SESSION, "PressurePulse", QObject::tr("Pressure Pulse"), QObject::tr("A pulse of pressure 'pinged' to detect a closed airway."), QObject::tr("PP"), STR_UNIT_EventsPerHour, DEFAULT, QColor("dark red"))); channel.add(GRP_CPAP, chan = new Channel(PRS1_Mode = 0xe120, SETTING, MT_CPAP, SESSION, "PRS1Mode", QObject::tr("Mode"), QObject::tr("PAP Mode"), QObject::tr("Mode"), "", LOOKUP, Qt::green)); chan->addOption(PRS1_MODE_CPAPCHECK, QObject::tr("CPAP-Check")); chan->addOption(PRS1_MODE_CPAP, QObject::tr("CPAP")); chan->addOption(PRS1_MODE_AUTOCPAP, QObject::tr("AutoCPAP")); chan->addOption(PRS1_MODE_AUTOTRIAL, QObject::tr("Auto-Trial")); chan->addOption(PRS1_MODE_BILEVEL, QObject::tr("Bi-Level")); chan->addOption(PRS1_MODE_AUTOBILEVEL, QObject::tr("AutoBiLevel")); chan->addOption(PRS1_MODE_ASV, QObject::tr("ASV")); chan->addOption(PRS1_MODE_S, QObject::tr("S")); chan->addOption(PRS1_MODE_ST, QObject::tr("S/T")); chan->addOption(PRS1_MODE_PC, QObject::tr("PC")); chan->addOption(PRS1_MODE_ST_AVAPS, QObject::tr("S/T - AVAPS")); chan->addOption(PRS1_MODE_PC_AVAPS, QObject::tr("PC - AVAPS")); channel.add(GRP_CPAP, chan = new Channel(PRS1_FlexMode = 0xe105, SETTING, MT_CPAP, SESSION, "PRS1FlexMode", QObject::tr("Flex Mode"), QObject::tr("PRS1 pressure relief mode."), QObject::tr("Flex Mode"), "", LOOKUP, Qt::green)); chan->addOption(FLEX_None, STR_TR_None); chan->addOption(FLEX_CFlex, QObject::tr("C-Flex")); chan->addOption(FLEX_CFlexPlus, QObject::tr("C-Flex+")); chan->addOption(FLEX_AFlex, QObject::tr("A-Flex")); chan->addOption(FLEX_PFlex, QObject::tr("P-Flex")); chan->addOption(FLEX_RiseTime, QObject::tr("Rise Time")); chan->addOption(FLEX_BiFlex, QObject::tr("Bi-Flex")); //chan->addOption(FLEX_AVAPS, QObject::tr("AVAPS")); // Converted into AVAPS PRS1_Mode with FLEX_RiseTime chan->addOption(FLEX_Flex, QObject::tr("Flex")); channel.add(GRP_CPAP, chan = new Channel(PRS1_FlexLevel = 0xe106, SETTING, MT_CPAP, SESSION, "PRS1FlexSet", QObject::tr("Flex Level"), QObject::tr("PRS1 pressure relief setting."), QObject::tr("Flex Level"), "", LOOKUP, Qt::blue)); chan->addOption(0, STR_TR_Off); channel.add(GRP_CPAP, chan = new Channel(PRS1_FlexLock = 0xe111, SETTING, MT_CPAP, SESSION, "PRS1FlexLock", QObject::tr("Flex Lock"), QObject::tr("Whether Flex settings are available to you."), QObject::tr("Flex Lock"), "", LOOKUP, Qt::black)); chan->addOption(0, STR_TR_Off); chan->addOption(1, STR_TR_On); channel.add(GRP_CPAP, chan = new Channel(PRS1_RiseTime = 0xe119, SETTING, MT_CPAP, SESSION, "PRS1RiseTime", QObject::tr("Rise Time"), QObject::tr("Amount of time it takes to transition from EPAP to IPAP, the higher the number the slower the transition"), QObject::tr("Rise Time"), "", LOOKUP, Qt::blue)); channel.add(GRP_CPAP, chan = new Channel(PRS1_RiseTimeLock = 0xe11a, SETTING, MT_CPAP, SESSION, "PRS1RiseTimeLock", QObject::tr("Rise Time Lock"), QObject::tr("Whether Rise Time settings are available to you."), QObject::tr("Rise Lock"), "", LOOKUP, Qt::black)); chan->addOption(0, STR_TR_Off); chan->addOption(1, STR_TR_On); channel.add(GRP_CPAP, chan = new Channel(PRS1_HumidStatus = 0xe101, SETTING, MT_CPAP, SESSION, "PRS1HumidStat", QObject::tr("Humidifier Status"), QObject::tr("PRS1 humidifier connected?"), QObject::tr("Humidifier"), "", LOOKUP, Qt::green)); chan->addOption(0, QObject::tr("Disconnected")); chan->addOption(1, QObject::tr("Connected")); channel.add(GRP_CPAP, chan = new Channel(PRS1_HumidMode = 0xe110, SETTING, MT_CPAP, SESSION, "PRS1HumidMode", QObject::tr("Humidification Mode"), QObject::tr("PRS1 Humidification Mode"), QObject::tr("Humid. Mode"), "", LOOKUP, Qt::green)); chan->addOption(HUMID_Fixed, QObject::tr("Fixed (Classic)")); chan->addOption(HUMID_Adaptive, QObject::tr("Adaptive (System One)")); chan->addOption(HUMID_HeatedTube, QObject::tr("Heated Tube")); chan->addOption(HUMID_Passover, QObject::tr("Passover")); chan->addOption(HUMID_Error, QObject::tr("Error")); channel.add(GRP_CPAP, chan = new Channel(PRS1_TubeTemp = 0xe10f, SETTING, MT_CPAP, SESSION, "PRS1TubeTemp", QObject::tr("Tube Temperature"), QObject::tr("PRS1 Heated Tube Temperature"), QObject::tr("Tube Temp."), "", LOOKUP, Qt::red)); chan->addOption(0, STR_TR_Off); channel.add(GRP_CPAP, chan = new Channel(PRS1_HumidLevel = 0xe102, SETTING, MT_CPAP, SESSION, "PRS1HumidLevel", QObject::tr("Humidifier"), // label varies in reports, "Humidifier Setting" in 50-series, "Humidity Level" in 60-series, "Humidifier" in DreamStation QObject::tr("PRS1 Humidifier Setting"), QObject::tr("Humid. Level"), "", LOOKUP, Qt::blue)); chan->addOption(0, STR_TR_Off); channel.add(GRP_CPAP, chan = new Channel(PRS1_HumidTargetTime = 0xe11b, SETTING, MT_CPAP, SESSION, "PRS1HumidTargetTime", QObject::tr("Target Time"), QObject::tr("PRS1 Humidifier Target Time"), QObject::tr("Hum. Tgt Time"), STR_UNIT_Hours, DEFAULT, Qt::green)); chan->addOption(0, STR_TR_Off); chan->addOption(1, QObject::tr("Auto")); channel.add(GRP_CPAP, chan = new Channel(PRS1_MaskResistSet = 0xe104, SETTING, MT_CPAP, SESSION, "MaskResistSet", QObject::tr("Mask Resistance Setting"), QObject::tr("Mask Resistance Setting"), QObject::tr("Mask Resist."), "", LOOKUP, Qt::green)); chan->addOption(0, STR_TR_Off); channel.add(GRP_CPAP, chan = new Channel(PRS1_HoseDiam = 0xe107, SETTING, MT_CPAP, SESSION, "PRS1HoseDiam", QObject::tr("Hose Diameter"), QObject::tr("Diameter of primary CPAP hose"), QObject::tr("Hose Diam."), "", LOOKUP, Qt::green)); chan->addOption(22, QObject::tr("22mm")); chan->addOption(15, QObject::tr("15mm")); chan->addOption(12, QObject::tr("12mm")); channel.add(GRP_CPAP, chan = new Channel(PRS1_TubeLock = 0xe112, SETTING, MT_CPAP, SESSION, "PRS1TubeLock", QObject::tr("Tubing Type Lock"), QObject::tr("Whether tubing type settings are available to you."), QObject::tr("Tube Lock"), "", LOOKUP, Qt::black)); chan->addOption(0, STR_TR_Off); chan->addOption(1, STR_TR_On); channel.add(GRP_CPAP, chan = new Channel(PRS1_MaskResistLock = 0xe108, SETTING, MT_CPAP, SESSION, "MaskResistLock", QObject::tr("Mask Resistance Lock"), QObject::tr("Whether mask resistance settings are available to you."), QObject::tr("Mask Res. Lock"), "", LOOKUP, Qt::black)); chan->addOption(0, STR_TR_Off); chan->addOption(1, STR_TR_On); channel.add(GRP_CPAP, chan = new Channel(PRS1_AutoOn = 0xe109, SETTING, MT_CPAP, SESSION, "PRS1AutoOn", QObject::tr("Auto On"), QObject::tr("A few breaths automatically starts machine"), QObject::tr("Auto On"), "", LOOKUP, Qt::green)); chan->addOption(0, STR_TR_Off); chan->addOption(1, STR_TR_On); channel.add(GRP_CPAP, chan = new Channel(PRS1_AutoOff = 0xe10a, SETTING, MT_CPAP, SESSION, "PRS1AutoOff", QObject::tr("Auto Off"), QObject::tr("Machine automatically switches off"), QObject::tr("Auto Off"), "", LOOKUP, Qt::green)); chan->addOption(0, STR_TR_Off); chan->addOption(1, STR_TR_On); channel.add(GRP_CPAP, chan = new Channel(PRS1_MaskAlert = 0xe10b, SETTING, MT_CPAP, SESSION, "PRS1MaskAlert", QObject::tr("Mask Alert"), QObject::tr("Whether or not machine allows Mask checking."), QObject::tr("Mask Alert"), "", LOOKUP, Qt::green)); chan->addOption(0, STR_TR_Off); chan->addOption(1, STR_TR_On); channel.add(GRP_CPAP, chan = new Channel(PRS1_ShowAHI = 0xe10c, SETTING, MT_CPAP, SESSION, "PRS1ShowAHI", QObject::tr("Show AHI"), QObject::tr("Whether or not machine shows AHI via built-in display."), QObject::tr("Show AHI"), "", LOOKUP, Qt::green)); chan->addOption(0, STR_TR_Off); chan->addOption(1, STR_TR_On); channel.add(GRP_CPAP, chan = new Channel(PRS1_RampType = 0xe113, SETTING, MT_CPAP, SESSION, "PRS1RampType", QObject::tr("Ramp Type"), QObject::tr("Type of ramp curve to use."), QObject::tr("Ramp Type"), "", LOOKUP, Qt::black)); chan->addOption(0, QObject::tr("Linear")); chan->addOption(1, QObject::tr("SmartRamp")); channel.add(GRP_CPAP, chan = new Channel(PRS1_BackupBreathMode = 0xe114, SETTING, MT_CPAP, SESSION, "PRS1BackupBreathMode", QObject::tr("Backup Breath Mode"), QObject::tr("The kind of backup breath rate in use: none (off), automatic, or fixed"), QObject::tr("Breath Rate"), "", LOOKUP, Qt::black)); chan->addOption(0, STR_TR_Off); chan->addOption(1, QObject::tr("Auto")); chan->addOption(2, QObject::tr("Fixed")); channel.add(GRP_CPAP, chan = new Channel(PRS1_BackupBreathRate = 0xe115, SETTING, MT_CPAP, SESSION, "PRS1BackupBreathRate", QObject::tr("Fixed Backup Breath BPM"), QObject::tr("Minimum breaths per minute (BPM) below which a timed breath will be initiated"), QObject::tr("Breath BPM"), STR_UNIT_BreathsPerMinute, LOOKUP, Qt::black)); channel.add(GRP_CPAP, chan = new Channel(PRS1_BackupBreathTi = 0xe116, SETTING, MT_CPAP, SESSION, "PRS1BackupBreathTi", QObject::tr("Timed Inspiration"), QObject::tr("The time that a timed breath will provide IPAP before transitioning to EPAP"), QObject::tr("Timed Insp."), STR_UNIT_Seconds, DEFAULT, Qt::blue)); channel.add(GRP_CPAP, chan = new Channel(PRS1_AutoTrial = 0xe117, SETTING, MT_CPAP, SESSION, "PRS1AutoTrial", QObject::tr("Auto-Trial Duration"), QObject::tr("The number of days in the Auto-CPAP trial period, after which the machine will revert to CPAP"), QObject::tr("Auto-Trial Dur."), "", LOOKUP, Qt::black)); channel.add(GRP_CPAP, chan = new Channel(PRS1_EZStart = 0xe118, SETTING, MT_CPAP, SESSION, "PRS1EZStart", QObject::tr("EZ-Start"), QObject::tr("Whether or not EZ-Start is enabled"), QObject::tr("EZ-Start"), "", LOOKUP, Qt::black)); chan->addOption(0, STR_TR_Off); chan->addOption(1, STR_TR_On); channel.add(GRP_CPAP, chan = new Channel(PRS1_VariableBreathing = 0x1156, SPAN, MT_CPAP, SESSION, "PRS1_VariableBreathing", QObject::tr("Variable Breathing"), QObject::tr("UNCONFIRMED: Possibly variable breathing, which are periods of high deviation from the peak inspiratory flow trend"), "VB", STR_UNIT_Seconds, DEFAULT, QColor("#ffe8f0"))); chan->setEnabled(false); // disable by default channel.add(GRP_CPAP, new Channel(PRS1_BND = 0x1159, SPAN, MT_CPAP, SESSION, "PRS1_BND", QObject::tr("Breathing Not Detected"), QObject::tr("A period during a session where the machine could not detect flow."), QObject::tr("BND"), STR_UNIT_Unknown, DEFAULT, QColor("light purple"))); channel.add(GRP_CPAP, new Channel(PRS1_TimedBreath = 0x1180, MINOR_FLAG, MT_CPAP, SESSION, "PRS1TimedBreath", QObject::tr("Timed Breath"), QObject::tr("Machine Initiated Breath"), QObject::tr("TB"), STR_UNIT_Seconds, DEFAULT, QColor("black"))); channel.add(GRP_CPAP, chan = new Channel(PRS1_PeakFlow = 0x115a, WAVEFORM, MT_CPAP, SESSION, "PRS1PeakFlow", QObject::tr("Peak Flow"), QObject::tr("Peak flow during a 2-minute interval"), QObject::tr("Peak Flow"), STR_UNIT_LPM, DEFAULT, QColor("red"))); chan->setShowInOverview(true); } void PRS1Loader::Register() { if (initialized) { return; } qDebug() << "Registering PRS1Loader"; RegisterLoader(new PRS1Loader()); initialized = true; } /* Thanks to SleepyCPAP :) CODE ERROR DESCRIPTION ERROR TYPE ERROR CATEGORY 1 SOFTWARE STOP STOP General Errors 2 Not Used General Errors 3 INT RAM REBOOT General Errors 4 NULL PTR REBOOT General Errors 5 DATA REBOOT General Errors 6 STATE MACHINE REBOOT General Errors 7 SOFTWARE REBOOT General Errors 8-9 Not Used General Errors 10 WDOG TEST RAM REBOOT Watchdog & Timer Errors 11 WDOG TEST REBOOT Watchdog & Timer Errors 12 BACKGROUND WDOG NO CARD REBOOT Watchdog & Timer Errors 13 BACKGROUND WDOG SD CARD REBOOT Watchdog & Timer Errors 14 WDOG LOWRES TIMER REBOOT Watchdog & Timer Errors 15 CYCLE HANDLER OVERRUN REBOOT Watchdog & Timer Errors 16 RASP RESTORE TIMEOUT CONTINUE Watchdog & Timer Errors 17 ONEMS HANDLER OVERRUN REBOOT Watchdog & Timer Errors 18 Not Used Watchdog & Timer Errors 19 WDOG TIMEOUT REBOOT Watchdog & Timer Errors 20 MOTOR SPINUP FLUX LOW REBOOT Motor/Blower Errors 21 MOTOR VBUS HIGH STOP Motor/Blower Errors 22 MOTOR FLUX MAGNITUDE REBOOT Motor/Blower Errors 23 MOTOR OVERSPEED REBOOT Motor/Blower Errors 24 MOTOR SPEED REVERSE REBOOT Motor/Blower Errors 25 MOTOR THERMISTOR OPEN CONTINUE Motor/Blower Errors 26 MOTOR THERMISTOR SHORTED CONTINUE Motor/Blower Errors 27 MOTOR RL NOCONVERGE STOP Motor/Blower Errors 28 NEGATIVE QUADRATURE VOLTAGE VECTOR REBOOT Motor/Blower Errors 29 VBUS GAIN ZERO: REBOOT Motor/Blower Errors 30 MOTOR SPINUP FLUX HIGH REBOOT Motor/Blower Errors 31 (incorrect power supply - 60series) Motor/Blower Errors 32-39 Not Used Motor/Blower Errors 40 NVRAM REBOOT NVRAM Low Level Errors 41 STORAGE UNIT RAM REBOOT NVRAM Low Level Errors 42 UNABLE TO OBTAIN BUS REBOOT NVRAM Low Level Errors 43 NVRAM NO CALLBACK OCCURRED REBOOT NVRAM Low Level Errors 44 NV BUFFER NULL REBOOT NVRAM Low Level Errors 45 NV CALLBACK NULL REBOOT NVRAM Low Level Errors 46 NV ZERO LENGTH REBOOT NVRAM Low Level Errors 47 NVRAM INVALID BYTES XFRRED REBOOT NVRAM Low Level Errors 48-49 Not Used NVRAM Low Level Errors 50 DAILY VALUES CORRUPT LOG ONLY NVRAM Unit Related Errors 51 CORRUPT COMPLIANCE LOG CONTINUE NVRAM Unit Related Errors 52 CORRUPT COMPLIANCE CB CONTINUE NVRAM Unit Related Errors 53 COMP LOG SEM TIMEOUT CONTINUE NVRAM Unit Related Errors 54 COMPLOG REQS OVERFLOW REBOOT NVRAM Unit Related Errors 55 THERAPY QUEUE FULL CONTINUE NVRAM Unit Related Errors 56 COMPLOG PACKET STATUS REBOOT NVRAM Unit Related Errors 57 SESS OBS QUEUE OVF REBOOT NVRAM Unit Related Errors 58 SESS OBS NO CALLBACK REBOOT NVRAM Unit Related Errors 59 Not Used NVRAM Unit Related Errors 60 UNSUPPORTED HARDWARE REBOOT General Hardware Errors 61 PLL UNLOCKED REBOOT General Hardware Errors 62 STUCK RAMP KEY CONTINUE General Hardware Errors 63 STUCK KNOB KEY CONTINUE General Hardware Errors 64 DSP OVERTIME PWM REBOOT General Hardware Errors 65 STUCK ENCODER A CONTINUE General Hardware Errors 66 STUCK ENCODER B CONTINUE General Hardware Errors 67-69 Not Used General Hardware Errors 70 PRESSURE SENSOR ABSENT STOP Pressure Sensor Errors 71 Not Used Pressure Sensor Errors 72 PSENS UNABLE TO OBTAIN BUS REBOOT Pressure Sensor Errors 73 SENSOR PRESS OFFSET STOP STOP Pressure Sensor Errors 74-79 Not Used Pressure Sensor Errors 80 UNABLE TO INIT FLOW SENSOR REBOOT Flow Sensor Errors 81 FLOW SENSOR TABLE CONTINUE Flow Sensor Errors 82 FLOW SENSOR OFFSET CONTINUE Flow Sensor Errors 83 FSENS UNABLE TO OBTAIN BUS REBOOT / 2nd failure=STOP Flow Sensor Errors 84 FLOW SENSOR STOP STOP Flow Sensor Errors 85 FLOW SENSOR OCCLUDED CONTINUE Flow Sensor Errors 86 FLOW SENSOR ABSENT CONTINUE Flow Sensor Errors 87 FLOW SENSOR BUS CONTINUE Flow Sensor Errors 88-89 Not Used Flow Sensor Errors 90 OTP NOT CONFIGURED STOP OTP & RTC Errors 91 OTP INCORRECTLY CONFIGURED STOP OTP & RTC Errors 92 Not Used OTP & RTC Errors 93 RTC VALUE CONTINUE OTP & RTC Errors 94 RTC STOPPED CONTINUE OTP & RTC Errors 95-99 Not Used OTP & RTC Errors 100 HUMID NO HEAT CONTINUE Humidifier Errors 101 HUMID TEMP MAX STOP Humidifier Errors 102 THERMISTOR HIGH CONTINUE Humidifier Errors 103 THERMISTOR LOW CONTINUE Humidifier Errors 104 HUMID AMBIENT OFF CONTINUE Humidifier Errors 105 HUMID AMBIENT COMM CONTINUE Humidifier Errors 106-109 Not Used Humidifier Errors 110 STACK REBOOT Stack & Exception Handler Errors 111 EXCEPTION STACK OVERFLOW REBOOT Stack & Exception Handler Errors 112 EXCEPTION STACK RESERVE LOG ONLY Stack & Exception Handler Errors 113 EXCEPTION STACK UNDERFLOW REBOOT Stack & Exception Handler Errors 114 FIQ STACK OVERFLOW REBOOT Stack & Exception Handler Errors 115 FIQ STACK RESERVE LOG ONLY Stack & Exception Handler Errors 116 FIQ STACK UNDERFLOW REBOOT Stack & Exception Handler Errors 117 IRQ STACK OVERFLOW REBOOT Stack & Exception Handler Errors 118 IRQ STACK RESERVE LOG ONLY Stack & Exception Handler Errors 119 IRQ STACK UNDERFLOW REBOOT Stack & Exception Handler Errors 120 SVC STACK OVERFLOW REBOOT Stack & Exception Handler Errors 121 SVC STACK RESERVE LOG ONLY Stack & Exception Handler Errors 122 SVC STACK UNDERFLOW REBOOT Stack & Exception Handler Errors 123 DATA ABORT EXCEPTION REBOOT Stack & Exception Handler Errors 124 PREFETCH EXCEPTION REBOOT Stack & Exception Handler Errors 125 ILLEGAL INSTRUCTION EXCEPTION REBOOT Stack & Exception Handler Errors 126 SWI ABORT EXCEPTION REBOOT Stack & Exception Handler Errors */