From a002d2ffcf5b72c22b862986073e159416bf0ce6 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Thu, 30 Jun 2011 05:06:49 +1000 Subject: [PATCH] ResMed Identification.tgt parsing --- SleepLib/loader_plugins/resmed_loader.cpp | 32 +++++++++++++++++++++-- 1 file changed, 30 insertions(+), 2 deletions(-) diff --git a/SleepLib/loader_plugins/resmed_loader.cpp b/SleepLib/loader_plugins/resmed_loader.cpp index c9fbe17b..be93b78e 100644 --- a/SleepLib/loader_plugins/resmed_loader.cpp +++ b/SleepLib/loader_plugins/resmed_loader.cpp @@ -194,11 +194,28 @@ bool ResmedLoader::Open(QString & path,Profile *profile) QString dirtag="DATALOG"; if (path.endsWith("/"+dirtag)) { - newpath=path; + return false; // id10t user.. + //newpath=path; } else { newpath=path+"/"+dirtag; } - + QString idfile=path+"/Identification.tgt"; + QFile f(idfile); + map idmap; + if (f.open(QIODevice::ReadOnly)) { + if (!f.isReadable()) + return false; + while (!f.atEnd()) { + QString line=f.readLine().trimmed(); + QString key,value; + if (!line.isEmpty()) { + key=line.section(" ",0,0); + value=line.section(" ",1); + key=key.section("#",1); + idmap[key]=value; + } + } + } QDir dir(newpath); if ((!dir.exists() || !dir.isReadable())) @@ -246,6 +263,17 @@ bool ResmedLoader::Open(QString & path,Profile *profile) if (first) { // First EDF file parsed, check if this data set is already imported m=CreateMachine(edf.serialnumber,profile); + for (map::iterator i=idmap.begin();i!=idmap.end();i++) { + if (i->first=="SRN") { + if (edf.serialnumber!=i->second) { + qDebug("edf Serial number doesn't match Identification.tgt"); + } + } else if (i->first=="PNA") { + m->properties["Model"]=i->second; + } else { + m->properties[i->first]=i->second; + } + } if (m->SessionExists(sessionid)) { done=true; break;