OSCAR-code/SleepLib/loader_plugins/zeo_loader.cpp

100 lines
2.3 KiB
C++
Raw Normal View History

2011-06-26 08:30:44 +00:00
/*
SleepLib ZEO Loader Implementation
Author: Mark Watkins <jedimark64@users.sourceforge.net>
License: GPL
*/
//********************************************************************************************
/// IMPORTANT!!!
//********************************************************************************************
// Please INCREMENT the zeo_data_version in zel_loader.h when making changes to this loader
// that change loader behaviour or modify channels.
//********************************************************************************************
#include <QDir>
2011-06-26 08:30:44 +00:00
#include "zeo_loader.h"
#include "SleepLib/machine.h"
ZEOLoader::ZEOLoader()
{
//ctor
}
ZEOLoader::~ZEOLoader()
{
//dtor
}
2011-07-15 13:30:41 +00:00
int ZEOLoader::Open(QString & path,Profile *profile)
2011-06-26 08:30:44 +00:00
{
Q_UNUSED(path)
Q_UNUSED(profile)
QString newpath;
QString dirtag="zeo";
if (path.toLower().endsWith(QDir::separator()+dirtag)) {
return 0;
//newpath=path;
} else {
newpath=path+QDir::separator()+dirtag.toUpper();
}
QString filename;
if (path.toLower().endsWith(".csv")) {
} else if (path.toLower().endsWith(".dat")) {
// not supported.
}
2011-06-26 08:30:44 +00:00
// ZEO folder structure detection stuff here.
2011-07-15 13:30:41 +00:00
return 0; // number of machines affected
2011-06-26 08:30:44 +00:00
}
Machine *ZEOLoader::CreateMachine(Profile *profile)
{
if (!profile)
return NULL;
2011-06-26 08:30:44 +00:00
// NOTE: This only allows for one ZEO machine per profile..
// Upgrading their ZEO will use this same record..
QVector<Machine *> ml=profile->GetMachines(MT_SLEEPSTAGE);
2011-06-26 08:30:44 +00:00
for (QVector<Machine *>::iterator i=ml.begin(); i!=ml.end(); i++) {
2011-06-26 08:30:44 +00:00
if ((*i)->GetClass()==zeo_class_name) {
return (*i);
break;
}
}
qDebug("Create ZEO Machine Record");
Machine *m=new SleepStage(profile,0);
m->SetClass(zeo_class_name);
m->properties["Brand"]="ZEO";
m->properties["Model"]="Personal Sleep Coach";
QString s;
s.sprintf("%i",zeo_data_version);
m->properties["DataVersion"]=s;
profile->AddMachine(m);
return m;
}
static bool zeo_initialized=false;
void ZEOLoader::Register()
{
if (zeo_initialized) return;
qDebug("Registering ZEOLoader");
RegisterLoader(new ZEOLoader());
//InitModelMap();
zeo_initialized=true;
}