/* SleepLib PRS1 Loader Implementation Author: Mark Watkins License: GPL */ #include #include #include #include #include #include #include #include "prs1_loader.h" #include "SleepLib/session.h" 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. //******************************************************************************************** extern QProgressBar *qprogress; map ModelMap; PRS1::PRS1(Profile *p,MachineID id):CPAP(p,id) { m_class=prs1_class_name; properties["Brand"]="Philips Respironics"; properties["Model"]="System One"; //SleepFlags= { CPAP_RERA, PRS1_VSnore2, CPAP_FlowLimit, CPAP_Hypopnea, CPAP_Obstructive, CPAP_ClearAirway, CPAP_CSR }; } PRS1::~PRS1() { } PRS1Loader::PRS1Loader() { m_buffer=new unsigned char [max_load_buffer_size]; //allocate once and reuse. } PRS1Loader::~PRS1Loader() { for (map::iterator i=PRS1List.begin(); i!=PRS1List.end(); i++) { delete i->second; } delete [] m_buffer; } Machine *PRS1Loader::CreateMachine(QString serial,Profile *profile) { qDebug() << "Create Machine " << serial; assert(profile!=NULL); vector ml=profile->GetMachines(MT_CPAP); bool found=false; for (vector::iterator i=ml.begin(); i!=ml.end(); i++) { if (((*i)->GetClass()=="PRS1") && ((*i)->properties["Serial"]==serial)) { PRS1List[serial]=*i; //static_cast(*i); found=true; break; } } if (found) return PRS1List[serial]; //assert(PRS1List.find(serial)==PRS1List.end()) Machine *m=new PRS1(profile,0); PRS1List[serial]=m; profile->AddMachine(m); m->properties["Serial"]=serial; return m; } bool isdigit(QChar c) { if ((c>='0') && (c<='9')) return true; return false; } int PRS1Loader::Open(QString & path,Profile *profile) { QString newpath; QString pseries="P-Series"; if (path.endsWith("/"+pseries)) { newpath=path; } else { newpath=path+"/"+pseries; } QDir dir(newpath); if ((!dir.exists() || !dir.isReadable())) return 0; qDebug() << "PRS1Loader::Open newpath=" << newpath; dir.setFilter(QDir::NoDotAndDotDot | QDir::Dirs | QDir::Files | QDir::Hidden | QDir::NoSymLinks); dir.setSorting(QDir::Name); QFileInfoList flist=dir.entryInfoList(); list SerialNumbers; list::iterator sn; for (int i=0;iDelMachine(m); PRS1List.erase(s); QMessageBox::warning(NULL,"Import Error","This Machine Record cannot be imported in this profile.\nThe Day records overlap with already existing content.",QMessageBox::Ok); delete m; } } return PRS1List.size(); } bool PRS1Loader::ParseProperties(Machine *m,QString filename) { QFile f(filename); if (!f.open(QIODevice::ReadOnly)) return false; QString line; map prop; QString s=f.readLine(); QChar sep='='; QString key,value; while (!f.atEnd()) { key=s.section(sep,0,0); //BeforeFirst(sep); if (key==s) continue; value=s.section(sep,1).trimmed(); //AfterFirst(sep).Strip(); if (value==s) continue; prop[key]=value; s=f.readLine(); } bool ok; QString pt=prop["ProductType"]; int i=pt.toInt(&ok,0); if (ok) { if (ModelMap.find(i)!=ModelMap.end()) { m->properties["SubModel"]=ModelMap[i]; } } if (prop["SerialNumber"]!=m->properties["Serial"]) { qDebug() << "Serial Number in PRS1 properties.txt doesn't match directory structure"; } else prop.erase("SerialNumber"); // already got it stored. for (map::iterator i=prop.begin(); i!=prop.end(); i++) { m->properties[i->first]=i->second; } f.close(); return true; } int PRS1Loader::OpenMachine(Machine *m,QString path,Profile *profile) { qDebug() << "Opening PRS1 " << path; QDir dir(path); if (!dir.exists() || (!dir.isReadable())) return false; dir.setFilter(QDir::NoDotAndDotDot | QDir::Dirs | QDir::Files | QDir::Hidden | QDir::NoSymLinks); dir.setSorting(QDir::Name); QFileInfoList flist=dir.entryInfoList(); QString filename; if (qprogress) qprogress->setValue(0); list paths; for (int i=0;iPulse(); } SessionID session; long ext; typedef vector StringList; map sessfiles; int size=paths.size(); int cnt=0; bool ok; for (list::iterator p=paths.begin(); p!=paths.end(); p++) { dir.setPath(*p); if (!dir.exists() || !dir.isReadable()) continue; flist=dir.entryInfoList(); for (int i=0;iPulse(); //Update((float(cnt)/float(size)*25)); if (qprogress) qprogress->setValue((float(cnt)/float(size)*33.0)); } } size=sessfiles.size(); if (size==0) return 0; cnt=0; for (map::iterator s=sessfiles.begin(); s!=sessfiles.end(); s++) { session=s->first; cnt++; if (qprogress) qprogress->setValue(33.0+(float(cnt)/float(size)*33.0)); if (m->SessionExists(session)) continue; if (s->second[0].isEmpty()) continue; Session *sess=new Session(m,session); if (!OpenSummary(sess,s->second[0])) { //qWarning() << "PRS1Loader: Dodgy summary file " << s->second[0]; // delete sess; // continue; } //sess->SetSessionID(sess->start().GetTicks()); if (!s->second[1].isEmpty()) { if (!OpenEvents(sess,s->second[1])) { qWarning() << "PRS1Loader: Couldn't open event file " << s->second[1]; } } if (!s->second[2].isEmpty()) { if (!OpenWaveforms(sess,s->second[2])) { qWarning() << "PRS1Loader: Couldn't open event file " << s->second[2]; } } const double ignore_thresh=300.0/3600.0;// Ignore useless sessions under 5 minute if (sess->hours()<=ignore_thresh) { qDebug() << "Igoring short session" << session << "which is only" << (sess->hours()*60.0) << "minute(s) long"; delete sess; continue; } m->AddSession(sess,profile); //if (sess->summary.find(CPAP_Obstructive)==sess->summary.end()) { sess->summary[CPAP_Obstructive]=sess->count_events(CPAP_Obstructive); sess->summary[CPAP_Hypopnea]=sess->count_events(CPAP_Hypopnea); sess->summary[CPAP_ClearAirway]=sess->count_events(CPAP_ClearAirway); sess->summary[CPAP_RERA]=sess->count_events(CPAP_RERA); sess->summary[CPAP_FlowLimit]=sess->count_events(CPAP_FlowLimit); sess->summary[CPAP_VSnore]=sess->count_events(CPAP_VSnore); //} sess->summary[CPAP_CSR]=sess->sum_event_field(CPAP_CSR,0); sess->summary[CPAP_Snore]=sess->sum_event_field(CPAP_Snore,0); if (sess->count_events(CPAP_IAP)>0) { //sess->summary[CPAP_Mode]!=MODE_ASV) sess->summary[CPAP_Mode]=MODE_BIPAP; sess->summary[BIPAP_PSAverage]=sess->weighted_avg_event_field(CPAP_PS,0); sess->summary[BIPAP_PSMin]=sess->min_event_field(CPAP_PS,0); sess->summary[BIPAP_PSMax]=sess->max_event_field(CPAP_PS,0); if (sess->summary[CPAP_PressureReliefType].toInt()!=PR_NONE) { sess->summary[CPAP_PressureReliefType]=PR_BIFLEX; } sess->summary[CPAP_PressureMedian]=(sess->avg_event_field(CPAP_EAP,0)+sess->avg_event_field(CPAP_IAP,0))/2.0; sess->summary[CPAP_PressureAverage]=(sess->weighted_avg_event_field(CPAP_IAP,0)+sess->weighted_avg_event_field(CPAP_EAP,0))/2.0; sess->summary[CPAP_PressureMinAchieved]=sess->min_event_field(CPAP_IAP,0); sess->summary[CPAP_PressureMaxAchieved]=sess->max_event_field(CPAP_EAP,0); sess->summary[BIPAP_EAPAverage]=sess->weighted_avg_event_field(CPAP_EAP,0); sess->summary[BIPAP_EAPMin]=sess->min_event_field(CPAP_EAP,0); sess->summary[BIPAP_EAPMax]=sess->max_event_field(CPAP_EAP,0); sess->summary[BIPAP_IAPAverage]=sess->weighted_avg_event_field(CPAP_IAP,0); sess->summary[BIPAP_IAPMin]=sess->min_event_field(CPAP_IAP,0); sess->summary[BIPAP_IAPMax]=sess->max_event_field(CPAP_IAP,0); } else { sess->summary[CPAP_PressureMedian]=sess->weighted_avg_event_field(CPAP_Pressure,0); sess->summary[CPAP_PressureAverage]=sess->weighted_avg_event_field(CPAP_Pressure,0); sess->summary[CPAP_PressureMinAchieved]=sess->min_event_field(CPAP_Pressure,0); sess->summary[CPAP_PressureMaxAchieved]=sess->max_event_field(CPAP_Pressure,0); if (sess->summary.find(CPAP_PressureMin)==sess->summary.end()) { sess->summary[CPAP_BrokenSummary]=true; //sess->set_last(sess->first()); if (sess->summary[CPAP_PressureMinAchieved]==sess->summary[CPAP_PressureMaxAchieved]) { sess->summary[CPAP_Mode]=MODE_CPAP; } else { sess->summary[CPAP_Mode]=MODE_UNKNOWN; } sess->summary[CPAP_PressureReliefType]=PR_UNKNOWN; } } if (sess->summary[CPAP_Mode]==MODE_CPAP) { sess->summary[CPAP_PressureAverage]=sess->summary[CPAP_PressureMin]; sess->summary[CPAP_PressureMax]=sess->summary[CPAP_PressureMin]; } sess->summary[CPAP_LeakMinimum]=sess->min_event_field(CPAP_Leak,0); sess->summary[CPAP_LeakMaximum]=sess->max_event_field(CPAP_Leak,0); // should be merged.. sess->summary[CPAP_LeakMedian]=sess->avg_event_field(CPAP_Leak,0); sess->summary[CPAP_LeakAverage]=sess->weighted_avg_event_field(CPAP_Leak,0); sess->summary[CPAP_SnoreMinimum]=sess->min_event_field(CPAP_Snore,0); sess->summary[CPAP_SnoreMaximum]=sess->max_event_field(CPAP_Snore,0); sess->summary[CPAP_SnoreMedian]=sess->avg_event_field(CPAP_Snore,0); sess->summary[CPAP_SnoreAverage]=sess->weighted_avg_event_field(CPAP_Snore,0); //Printf(sess->start().Format()+wxT(" avgsummary=%.3f avgmine=%.3f\n"),sess->summary[CPAP_PressureAverage].GetDouble(),sess->weighted_avg_event_field(CPAP_Pressure,0)); sess->SetChanged(true); } QString s; s.sprintf("%i",prs1_data_version); m->properties["DataVersion"]=s; m->Save(); // Save any new sessions to disk in our format if (qprogress) qprogress->setValue(100); return true; } bool PRS1Loader::OpenSummary(Session *session,QString filename) { int size,seconds,br,htype,version,sequence; qint64 timestamp; unsigned char header[24]; unsigned char ext,sum; //qDebug() << "Opening PRS1 Summary " << filename; QFile f(filename); if (!f.open(QIODevice::ReadOnly)) return false; if (!f.exists()) return false; int hl=16; br=f.read((char *)header,hl); if (header[0]!=PRS1_MAGIC_NUMBER) return false; sequence=size=timestamp=seconds=ext=0; sequence=(header[10] << 24) | (header[9] << 16) | (header[8] << 8) | header[7]; timestamp=(header[14] << 24) | (header[13] << 16) | (header[12] << 8) | header[11]; size=(header[2] << 8) | header[1]; ext=header[6]; htype=header[3]; // 00 = normal // 01=waveform // could be a bool? version=header[4]; if (sequence==127) { int i=0; } sequence=sequence; version=version; // don't need it here? htype=htype; // shut the warning up.. this is useless. if (ext!=PRS1_SUMMARY_FILE) return false; size-=(hl+2); // Calculate header checksum and compare to verify header sum=0; for (int i=0; iset_first(date); double max; session->summary[CPAP_PressureMin]=(double)buffer[0x03]/10.0; session->summary[CPAP_PressureMax]=max=(double)buffer[0x04]/10.0; int offset=0; if (buffer[0x05]!=0) { // This is a time value for ASV stuff // non zero adds extra fields.. offset=4; } session->summary[CPAP_RampTime]=(int)buffer[offset+0x06]; // Minutes. Convert to seconds/hours here? session->summary[CPAP_RampStartingPressure]=(double)buffer[offset+0x07]/10.0; if (max>0) { // Ignoring bipap until I see some more data. session->summary[CPAP_Mode]=(int)MODE_APAP; } else session->summary[CPAP_Mode]=(int)MODE_CPAP; // This is incorrect.. if (buffer[offset+0x08] & 0x80) { // Flex Setting if (buffer[offset+0x08] & 0x08) { if (max>0) session->summary[CPAP_PressureReliefType]=(int)PR_AFLEX; else session->summary[CPAP_PressureReliefType]=(int)PR_CFLEXPLUS; } else session->summary[CPAP_PressureReliefType]=(int)PR_CFLEX; } else session->summary[CPAP_PressureReliefType]=(int)PR_NONE; session->summary[CPAP_PressureReliefSetting]=(int)buffer[offset+0x08] & 3; session->summary[CPAP_HumidifierSetting]=(int)buffer[offset+0x09]&0x0f; session->summary[CPAP_HumidifierStatus]=(buffer[offset+0x09]&0x80)==0x80; session->summary[PRS1_SystemLockStatus]=(buffer[offset+0x0a]&0x80)==0x80; session->summary[PRS1_SystemResistanceStatus]=(buffer[offset+0x0a]&0x40)==0x40; session->summary[PRS1_SystemResistanceSetting]=(int)buffer[offset+0x0a]&7; session->summary[PRS1_HoseDiameter]=(int)((buffer[offset+0x0a]&0x08)?15:22); session->summary[PRS1_AutoOff]=(buffer[offset+0x0c]&0x10)==0x10; session->summary[PRS1_MaskAlert]=(buffer[offset+0x0c]&0x08)==0x08; session->summary[PRS1_ShowAHI]=(buffer[offset+0x0c]&0x04)==0x04; unsigned duration=buffer[offset+0x14] | (buffer[0x15] << 8); session->summary[CPAP_Duration]=(int)duration; //qDebug() << "ID: " << session->session() << " " << duration; //float hours=float(duration)/3600.0; //session->set_hours(hours); if (!duration) return false; session->set_last(date+qint64(duration)*1000L); session->summary[CPAP_PressureMinAchieved]=buffer[offset+0x16]/10.0; session->summary[CPAP_PressureMaxAchieved]=buffer[offset+0x17]/10.0; session->summary[CPAP_PressureAverage]=buffer[offset+0x18]/10.0; session->summary[CPAP_PressurePercentValue]=buffer[offset+0x19]/10.0; session->summary[CPAP_PressurePercentName]=90.0; if (max==0) { session->summary[CPAP_PressureAverage]=session->summary[CPAP_PressureMin]; } /*/if (size==0x4d) { session->summary[CPAP_Obstructive]=(int)buffer[offset+0x1C] | (buffer[offset+0x1D] << 8); session->summary[CPAP_ClearAirway]=(int)buffer[offset+0x20] | (buffer[offset+0x21] << 8); session->summary[CPAP_Hypopnea]=(int)buffer[offset+0x2A] | (buffer[offset+0x2B] << 8); session->summary[CPAP_RERA]=(int)buffer[offset+0x2E] | (buffer[offset+0x2F] << 8); session->summary[CPAP_FlowLimit]=(int)buffer[offset+0x30] | (buffer[offset+0x31] << 8); }*/ return true; } // v2 event parser. bool PRS1Loader::Parse002(Session *session,unsigned char *buffer,int size,qint64 timestamp) { MachineCode Codes[]={ PRS1_Unknown00, PRS1_Unknown01, CPAP_Pressure, CPAP_EAP, PRS1_PressurePulse, CPAP_RERA, CPAP_Obstructive, CPAP_ClearAirway, PRS1_Unknown08, PRS1_Unknown09, CPAP_Hypopnea, PRS1_Unknown0B, CPAP_FlowLimit, CPAP_VSnore, PRS1_Unknown0E, CPAP_CSR, PRS1_Unknown10, CPAP_Leak, PRS1_Unknown12 }; int ncodes=sizeof(Codes)/sizeof(MachineCode); EventDataType data[10]; //qint64 start=timestamp; qint64 t=timestamp; qint64 tt; int pos=0; int cnt=0; short delta;//,duration; while (pos=ncodes) { qDebug() << "Illegal PRS1 code " << hex << int(code) << " appeared at " << hex << pos+16; return false; } //if (code==0xe) { // pos+=2; //} else if (code!=0x12) { //delta=buffer[pos]; //duration=buffer[pos+1]; delta=buffer[pos+1] << 8 | buffer[pos]; pos+=2; //QDateTime d=QDateTime::fromMSecsSinceEpoch(t); //qDebug()<< d.toString("yyyy-MM-dd HH:mm:ss") << ": " << hex << pos+15 << " " << hex << int(code) << int(delta); t+=delta*1000; } MachineCode cpapcode=Codes[(int)code]; tt=t; cnt++; //int fc=0; switch (code) { case 0x01: // Unknown session->AddEvent(new Event(t,cpapcode, data,0)); break; case 0x00: // Unknown (ASV Pressure value) // could this be RLE? // offset? data[0]=buffer[pos++]; session->AddEvent(new Event(t,cpapcode, data,1)); break; case 0x02: // Pressure data[0]=buffer[pos++]/10.0; session->AddEvent(new Event(t,cpapcode, data,1)); break; case 0x03: // BIPAP Pressure data[0]=buffer[pos++]; data[1]=buffer[pos++]; data[0]/=10.0; data[1]/=10.0; session->AddEvent(new Event(t,CPAP_EAP, data, 1)); session->AddEvent(new Event(t,CPAP_IAP, &data[1], 1)); data[1]-=data[0]; session->AddEvent(new Event(t,CPAP_PS, &data[1], 1)); break; case 0x04: // Pressure Pulse data[0]=buffer[pos++]; session->AddEvent(new Event(t,cpapcode, data,1)); //qDebug() << hex << data[0]; break; case 0x05: // RERA case 0x06: // Obstructive Apoanea case 0x07: // Clear Airway case 0x0a: // Hypopnea case 0x0c: // Flow Limitation data[0]=buffer[pos++]; tt-=data[0]*1000; // Subtract Time Offset session->AddEvent(new Event(tt,cpapcode,data,1)); break; case 0x0b: // ASV Codes data[0]=buffer[pos++]; data[1]=buffer[pos++]; session->AddEvent(new Event(tt,cpapcode,data,2)); break; case 0x0d: // Vibratory Snore session->AddEvent(new Event(t,cpapcode, data,0)); break; case 0x11: // Leak Rate data[0]=buffer[pos++]; data[1]=buffer[pos++]; session->AddEvent(new Event(t,cpapcode, data,1)); session->AddEvent(new Event(t,CPAP_Snore,&data[1],1)); if (data[1]>0) { session->AddEvent(new Event(t,PRS1_VSnore2, &data[1],1)); } break; case 0x0e: // Unknown data[0]=((char *)buffer)[pos++]; data[1]=buffer[pos++]; //(buffer[pos+1] << 8) | buffer[pos]; //data[0]/=10.0; //pos+=2; data[2]=buffer[pos++]; //qDebug() << hex << data[0] << data[1] << data[2]; session->AddEvent(new Event(t,cpapcode, data, 3)); //tt-=data[1]*1000; //session->AddEvent(new Event(t,CPAP_CSR, data, 2)); break; case 0x10: // Unknown data[0]=buffer[pos++]; // << 8) | buffer[pos]; data[1]=buffer[pos++]; data[2]=buffer[pos++]; session->AddEvent(new Event(t,cpapcode, data, 3)); break; case 0x0f: // Cheyne Stokes Respiration data[0]=buffer[pos+1]<<8 | buffer[pos]; pos+=2; data[1]=buffer[pos++]; tt-=data[1]*1000; session->AddEvent(new Event(tt,cpapcode, data, 2)); break; case 0x12: // Summary data[0]=buffer[pos++]; data[1]=buffer[pos++]; data[2]=buffer[pos+1]<<8 | buffer[pos]; pos+=2; session->AddEvent(new Event(t,cpapcode, data,3)); break; default: // ERROR!!! qWarning() << "Some new fandangled PRS1 code detected " << hex << int(code) << " at " << pos+15; return false; } } return true; } bool PRS1Loader::Parse002ASV(Session *session,unsigned char *buffer,int size,qint64 timestamp) { MachineCode Codes[]={ PRS1_Unknown00, PRS1_Unknown01, CPAP_Pressure, CPAP_EAP, PRS1_PressurePulse, CPAP_Obstructive, CPAP_ClearAirway, CPAP_Hypopnea, PRS1_Unknown08, CPAP_FlowLimit, PRS1_Unknown0A, CPAP_CSR, PRS1_Unknown0C, CPAP_VSnore, PRS1_Unknown0E, PRS1_Unknown0F, PRS1_Unknown10, CPAP_Leak, PRS1_Unknown12 }; int ncodes=sizeof(Codes)/sizeof(MachineCode); EventDataType data[10]; //qint64 start=timestamp; qint64 t=timestamp; qint64 tt; int pos=0; int cnt=0; short delta;//,duration; QDateTime d; while (pos=ncodes) { qDebug() << "Illegal PRS1 code " << hex << int(code) << " appeared at " << hex << pos+16; return false; } //QDateTime d=QDateTime::fromMSecsSinceEpoch(t); //qDebug()<< d.toString("yyyy-MM-dd HH:mm:ss") << ": " << hex << pos+15 << " " << hex << int(code) ; if (code==0) { } else if (code!=0x12) { delta=buffer[pos]; //duration=buffer[pos+1]; //delta=buffer[pos+1] << 8 | buffer[pos]; pos+=2; t+=delta*1000; } MachineCode cpapcode=Codes[(int)code]; //EventDataType PS; tt=t; cnt++; int fc=0; switch (code) { case 0x01: // Unknown session->AddEvent(new Event(t,cpapcode, data,0)); break; case 0x00: // Unknown (ASV Pressure value) // offset? data[0]=buffer[pos++]; fc++; if (!buffer[pos-1]) { // WTH??? data[1]=buffer[pos++]; fc++; } if (!buffer[pos-1]) { data[2]=buffer[pos++]; fc++; } session->AddEvent(new Event(t,cpapcode, data,2)); break; case 0x02: // Pressure data[0]=buffer[pos++]/10.0; // crappy EPAP pressure value. //session->AddEvent(new Event(t,cpapcode, data,1)); break; case 0x04: // Pressure Pulse data[0]=buffer[pos++]; session->AddEvent(new Event(t,cpapcode, data,1)); break; case 0x0a: code=0x0a; case 0x05: case 0x06: case 0x07: case 0x0c: data[0]=buffer[pos++]; tt-=data[0]*1000; // Subtract Time Offset session->AddEvent(new Event(tt,cpapcode,data,1)); break; case 0x0b: // Cheyne Stokes data[0]=((unsigned char *)buffer)[pos+1]<<8 | ((unsigned char *)buffer)[pos]; data[0]*=2; pos+=2; data[1]=((unsigned char *)buffer)[pos]; //|buffer[pos+1] << 8 pos+=1; //tt-=delta; tt-=data[1]*1000; session->AddEvent(new Event(tt,cpapcode, data, 2)); //tt+=delta; break; case 0x08: // ASV Codes case 0x09: // ASV Codes data[0]=buffer[pos]; tt-=buffer[pos++]*1000; // Subtract Time Offset session->AddEvent(new Event(tt,cpapcode,data,1)); break; case 0x0d: // All the other ASV graph stuff. d=QDateTime::fromMSecsSinceEpoch(t); data[0]=buffer[pos++]/10.0; session->AddEvent(new Event(t,CPAP_IAP,&data[0],1)); //correct data[1]=buffer[pos++]/10.0; // Low IPAP session->AddEvent(new Event(t,CPAP_IAPLO,&data[1],1)); //correct data[2]=buffer[pos++]/10.0; // Hi IPAP session->AddEvent(new Event(t,CPAP_IAPHI,&data[2],1)); //correct data[3]=buffer[pos++];//Leak session->AddEvent(new Event(t,CPAP_Leak,&data[3],1)); // correct data[4]=buffer[pos++];//Breaths Per Minute session->AddEvent(new Event(t,CPAP_RespiratoryRate,&data[4],1)); //correct data[5]=buffer[pos++];//Patient Triggered Breaths session->AddEvent(new Event(t,CPAP_PatientTriggeredBreaths,&data[5],1)); //correct data[6]=buffer[pos++];//Minute Ventilation session->AddEvent(new Event(t,CPAP_MinuteVentilation,&data[6],1)); //correct data[7]=buffer[pos++]*10.0; // Tidal Volume session->AddEvent(new Event(t,CPAP_TidalVolume,&data[7],1)); //correct data[8]=buffer[pos++]; session->AddEvent(new Event(t,CPAP_Snore,&data[8],1)); //correct if (data[8]>0) { session->AddEvent(new Event(t,CPAP_VSnore,&data[8],1)); //correct } data[9]=buffer[pos++]/10.0; // EPAP session->AddEvent(new Event(t,CPAP_EAP,&data[9],1)); //correct data[2]-=data[9]; // Pressure Support session->AddEvent(new Event(t,CPAP_PS,&data[2],1)); //correct //qDebug()<< d.toString("yyyy-MM-dd HH:mm:ss") << hex << session->session() << pos+15 << hex << int(code) << ": " << hex << int(data[0]) << " " << int(data[1]) << " " << int(data[2]) << " " << int(data[3]) << " " << int(data[4]) << " " << int(data[5])<< " " << int(data[6]) << " " << int(data[7]) << " " << int(data[8]) << " " << int(data[9]); break; case 0x03: // BIPAP Pressure data[0]=buffer[pos++]; data[1]=buffer[pos++]; data[0]/=10.0; data[1]/=10.0; session->AddEvent(new Event(t,CPAP_EAP, data, 1)); session->AddEvent(new Event(t,CPAP_IAP, &data[1], 1)); break; case 0x11: // Leak Rate data[0]=buffer[pos++]; session->AddEvent(new Event(t,cpapcode, data,1)); break; case 0x0e: // Unknown data[0]=buffer[pos++]; // << 8) | buffer[pos]; session->AddEvent(new Event(t,cpapcode, data, 1)); break; case 0x10: // Unknown data[0]=buffer[pos++]; // << 8) | buffer[pos]; data[1]=buffer[pos++]; data[2]=buffer[pos++]; session->AddEvent(new Event(t,cpapcode, data, 3)); break; case 0x0f: data[0]=buffer[pos+1]<<8 | buffer[pos]; pos+=2; data[1]=buffer[pos]; //|buffer[pos+1] << 8 pos+=1; tt-=data[1]*1000; session->AddEvent(new Event(tt,cpapcode, data, 2)); break; case 0x12: // Summary data[0]=buffer[pos++]; data[1]=buffer[pos++]; data[2]=buffer[pos+1]<<8 | buffer[pos]; pos+=2; session->AddEvent(new Event(t,cpapcode, data,3)); break; default: // ERROR!!! qWarning() << "Some new fandangled PRS1 code detected " << hex << int(code) << " at " << pos+15; return false; } } return true; } bool PRS1Loader::OpenEvents(Session *session,QString filename) { int size,sequence,seconds,br,version; qint64 timestamp; unsigned char header[24]; // use m_buffer? unsigned char ext,htype; QFile f(filename); if (!f.open(QIODevice::ReadOnly)) return false; int hl=16; br=f.read((char *)header,hl); if (header[0]!=PRS1_MAGIC_NUMBER) return false; sequence=size=timestamp=seconds=ext=0; sequence=(header[10] << 24) | (header[9] << 16) | (header[8] << 8) | header[7]; timestamp=(header[14] << 24) | (header[13] << 16) | (header[12] << 8) | header[11]; size=(header[2] << 8) | header[1]; ext=header[6]; htype=header[3]; // 00 = normal // 01=waveform // could be a bool? version=header[4];// | header[4]; htype=htype; sequence=sequence; if (ext!=PRS1_EVENT_FILE) // 2 == Event file return false; //size|=(header[3]<<16) | (header[4]<<24); // the jury is still out on the 32bitness of one. doesn't matter here anyway. size-=(hl+2); unsigned char sum=0; for (int i=0; isummary[CPAP_BrokenWaveform]=true; // read the damn bytes anyway.. br=f.read((char *)header,lasthl-hl+1); // last bit of the header if (br=max_signals) { qWarning() << "PRS1Loader::OpenWaveforms() numsignals >= max_signals"; return false; } char buf[3]; for (int i=0;iabs(diff)) { duration+=diff; // really Subtracting.. samples+=diff*5; } else { qWarning() << "Waveform out of sync beyond the first entry" << sequence << duration << diff; } } else if (diff>0) { qDebug() << "Fixing up Waveform sync" << sequence; for (int i=0;i=max_load_buffer_size) { qWarning("max_load_buffer_size is too small in PRS1 Loader"); if (cnt==0) return false; break; } br=f.read((char *)&buffer[samples],size); if (brc) min[s]=c; if (max[s]AddWaveform(w); if (numsignals>1) { Waveform *w=new Waveform(start,CPAP_MaskPressure,data[1],pos[1],duration,min[1],max[1]); session->AddWaveform(w); } return true; } void InitModelMap() { ModelMap[34]="RemStar Pro with C-Flex+"; ModelMap[35]="RemStar Auto with A-Flex"; ModelMap[37]="RemStar BiPAP Auto with Bi-Flex"; ModelMap[0x41]="BiPAP autoSV Advanced"; }; bool initialized=false; void PRS1Loader::Register() { if (initialized) return; qDebug() << "Registering PRS1Loader"; RegisterLoader(new PRS1Loader()); InitModelMap(); initialized=true; }