/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- * vim: set ts=8 sts=4 et sw=4 tw=99: * * SleepLib Somnopose Loader Implementation * * Copyright (c) 2011-2014 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 Linux * distribution for more details. */ //******************************************************************************************** // IMPORTANT!!! //******************************************************************************************** // Please INCREMENT the somnopose_data_version in somnopose_loader.h when making changes to this loader // that change loader behaviour or modify channels. //******************************************************************************************** #include #include #include "somnopose_loader.h" #include "SleepLib/machine.h" SomnoposeLoader::SomnoposeLoader() { //ctor } SomnoposeLoader::~SomnoposeLoader() { //dtor } int SomnoposeLoader::Open(QString & path,Profile *profile) { Q_UNUSED(path) Q_UNUSED(profile) QString newpath; QString dirtag="somnopose"; // Could Scan the ZEO folder for a list of CSVs path=path.replace("\\","/"); if (path.toLower().endsWith("/"+dirtag)) { return 0; //newpath=path; } else { newpath=path+"/"+dirtag.toUpper(); } //QString filename; // Somnopose folder structure detection stuff here. return 0; // number of machines affected } Machine *SomnoposeLoader::CreateMachine(Profile *profile) { if (!profile) return NULL; QList ml=profile->GetMachines(MT_POSITION); for (QList::iterator i=ml.begin(); i!=ml.end(); i++) { if ((*i)->GetClass()==somnopose_class_name) { return (*i); break; } } qDebug("Create Somnopose Machine Record"); Machine *m=new PositionSensor(profile,0); m->SetType(MT_POSITION); m->SetClass(somnopose_class_name); m->properties[STR_PROP_Brand]="Somnopose"; m->properties[STR_PROP_Model]="Somnopose Position Data"; m->properties[STR_PROP_DataVersion]=QString::number(somnopose_data_version); profile->AddMachine(m); QString path="{"+STR_GEN_DataFolder+"}/"+m->GetClass()+"_"+m->hexid()+"/"; m->properties[STR_PROP_Path]=path; m->properties[STR_PROP_BackupPath]=path+"Backup/"; return m; } int SomnoposeLoader::OpenFile(QString filename) { QFile file(filename); if (filename.toLower().endsWith(".csv")) { if (!file.open(QFile::ReadOnly)) { qDebug() << "Couldn't open Somnopose data file" << filename; return 0; } } else { return 0; } qDebug() << "Opening file" << filename; QTextStream ts(&file); // Read header line and determine order of fields QString hdr=ts.readLine(); QStringList headers=hdr.split(","); int col_inclination=-1, col_orientation=-1, col_timestamp=-1; int hdr_size=headers.size(); for (int i=0;iSessionExists(sid)) { return 0; // Already imported } sess=new Session(mach,sid); sess->really_set_first(time); ev_orientation=sess->AddEventList(POS_Orientation,EVL_Event,1,0,0,0); ev_inclination=sess->AddEventList(POS_Inclination,EVL_Event,1,0,0,0); first=false; } sess->set_last(time); ev_orientation->AddEvent(time,orientation); ev_inclination->AddEvent(time,inclination); // QDateTime dt=QDateTime::fromMSecsSinceEpoch(time); // qDebug() << dt << orientation << inclination; } sess->setMin(POS_Orientation,ev_orientation->Min()); sess->setMax(POS_Orientation,ev_orientation->Max()); sess->setMin(POS_Inclination,ev_inclination->Min()); sess->setMax(POS_Inclination,ev_inclination->Max()); sess->really_set_last(time); sess->SetChanged(true); mach->AddSession(sess, p_profile); mach->Save(); return true; } static bool somnopose_initialized=false; void SomnoposeLoader::Register() { if (somnopose_initialized) return; qDebug("Registering SomnoposeLoader"); RegisterLoader(new SomnoposeLoader()); //InitModelMap(); somnopose_initialized=true; }