2011-06-26 08:30:44 +00:00
/*
SleepLib Profiles Implementation
Author : Mark Watkins < jedimark64 @ users . sourceforge . net >
License : GPL
*/
# include <QString>
# include <QDateTime>
# include <QDir>
# include <QMessageBox>
2011-07-01 10:10:44 +00:00
# include <QDebug>
2012-01-02 15:34:17 +00:00
# include <algorithm>
2012-01-05 04:37:22 +00:00
# include <cmath>
2011-06-26 08:30:44 +00:00
# include "preferences.h"
# include "profiles.h"
# include "machine.h"
# include "machine_loader.h"
2011-12-11 09:45:28 +00:00
# include <QApplication>
# include "mainwindow.h"
extern MainWindow * mainwin ;
2011-06-26 08:30:44 +00:00
Preferences * p_pref ;
Preferences * p_layout ;
2011-10-05 07:41:56 +00:00
Profile * p_profile ;
2011-06-26 08:30:44 +00:00
2012-01-05 04:37:22 +00:00
2011-06-26 08:30:44 +00:00
Profile : : Profile ( )
: Preferences ( ) , is_first_day ( true )
{
2011-12-21 14:24:09 +00:00
p_name = STR_GEN_Profile ;
2011-10-05 07:41:56 +00:00
p_path = PREF . Get ( " {home}/Profiles " ) ;
2011-06-26 08:30:44 +00:00
machlist . clear ( ) ;
2011-12-21 11:09:50 +00:00
doctor = new DoctorInfo ( this ) ;
user = new UserInfo ( this ) ;
cpap = new CPAPSettings ( this ) ;
oxi = new OxiSettings ( this ) ;
appearance = new AppearanceSettings ( this ) ;
2011-12-21 12:47:47 +00:00
session = new SessionSettings ( this ) ;
general = new UserSettings ( this ) ;
2011-06-26 08:30:44 +00:00
}
Profile : : Profile ( QString path )
: Preferences ( ) , is_first_day ( true )
{
const QString xmlext = " .xml " ;
2011-12-21 14:24:09 +00:00
p_name = STR_GEN_Profile ;
2011-06-26 08:30:44 +00:00
if ( path . isEmpty ( ) ) p_path = GetAppRoot ( ) ;
else p_path = path ;
2011-12-21 14:24:09 +00:00
( * this ) [ STR_GEN_DataFolder ] = p_path ;
2011-06-26 08:30:44 +00:00
if ( ! p_path . endsWith ( " / " ) ) p_path + = " / " ;
p_filename = p_path + p_name + xmlext ;
machlist . clear ( ) ;
2011-12-21 11:09:50 +00:00
doctor = new DoctorInfo ( this ) ;
user = new UserInfo ( this ) ;
cpap = new CPAPSettings ( this ) ;
oxi = new OxiSettings ( this ) ;
appearance = new AppearanceSettings ( this ) ;
2011-12-21 12:47:47 +00:00
session = new SessionSettings ( this ) ;
general = new UserSettings ( this ) ;
2011-06-26 08:30:44 +00:00
}
2011-12-11 10:59:30 +00:00
bool Profile : : Save ( QString filename )
2011-06-26 08:30:44 +00:00
{
2011-12-11 10:59:30 +00:00
return Preferences : : Save ( filename ) ;
}
2011-12-11 09:45:28 +00:00
2011-12-11 10:59:30 +00:00
Profile : : ~ Profile ( )
{
2011-12-21 11:09:50 +00:00
delete user ;
delete doctor ;
delete cpap ;
delete oxi ;
delete appearance ;
2011-12-21 12:47:47 +00:00
delete session ;
delete general ;
2011-07-31 20:24:43 +00:00
for ( QHash < MachineID , Machine * > : : iterator i = machlist . begin ( ) ; i ! = machlist . end ( ) ; i + + ) {
delete i . value ( ) ;
2011-06-26 08:30:44 +00:00
}
}
2011-07-29 22:55:24 +00:00
void Profile : : DataFormatError ( Machine * m )
{
2011-12-18 16:39:36 +00:00
QString msg = QObject : : tr ( " Software changes have been made that require the reimporting of the following machines data: \n \n " ) ;
2011-12-21 14:24:09 +00:00
msg = msg + m - > properties [ STR_PROP_Brand ] + " " + m - > properties [ STR_PROP_Model ] + " " + m - > properties [ STR_PROP_Serial ] ;
2011-12-18 16:39:36 +00:00
msg = msg + QObject : : tr ( " \n \n This is still only alpha software and these changes are sometimes necessary. \n \n " ) ;
msg = msg + QObject : : tr ( " I can automatically purge this data for you, or you can cancel now and continue to run in a previous version. \n \n " ) ;
msg = msg + QObject : : tr ( " Would you like me to purge this data this for you so you can run the new version? " ) ;
2011-07-29 22:55:24 +00:00
2011-12-18 16:39:36 +00:00
if ( QMessageBox : : warning ( NULL , QObject : : tr ( " Machine Database Changes " ) , msg , QMessageBox : : Yes | QMessageBox : : Cancel , QMessageBox : : Yes ) = = QMessageBox : : Yes ) {
2011-07-29 22:55:24 +00:00
if ( ! m - > Purge ( 3478216 ) ) { // Do not copy this line without thinking.. You will be eaten by a Grue if you do
2011-12-18 16:39:36 +00:00
2011-12-21 14:24:09 +00:00
QMessageBox : : critical ( NULL , QObject : : tr ( " Purge Failed " ) , QObject : : tr ( " Sorry, I could not purge this data, which means this version of SleepyHead can't start.. SleepyHead's Data folder needs to be removed manually \n \n This folder currently resides at the following location: \n " ) + PREF [ STR_GEN_DataFolder ] . toString ( ) , QMessageBox : : Ok ) ;
2011-07-29 22:55:24 +00:00
exit ( - 1 ) ;
}
} else {
exit ( - 1 ) ;
}
return ;
}
2011-06-26 08:30:44 +00:00
void Profile : : LoadMachineData ( )
{
2011-12-11 09:45:28 +00:00
QHash < MachineID , QMap < QDate , QHash < ChannelID , EventDataType > > > cache ;
2011-07-31 20:24:43 +00:00
for ( QHash < MachineID , Machine * > : : iterator i = machlist . begin ( ) ; i ! = machlist . end ( ) ; i + + ) {
Machine * m = i . value ( ) ;
2011-06-26 08:30:44 +00:00
MachineLoader * loader = GetLoader ( m - > GetClass ( ) ) ;
if ( loader ) {
long v = loader - > Version ( ) ;
long cv = 0 ;
2011-12-21 14:24:09 +00:00
if ( m - > properties . find ( STR_PROP_DataVersion ) = = m - > properties . end ( ) ) {
m - > properties [ STR_PROP_DataVersion ] = " 0 " ;
2011-06-26 08:30:44 +00:00
}
bool ok ;
2011-12-21 14:24:09 +00:00
cv = m - > properties [ STR_PROP_DataVersion ] . toLong ( & ok ) ;
2011-06-26 08:30:44 +00:00
if ( ! ok | | cv < v ) {
2011-07-29 22:55:24 +00:00
DataFormatError ( m ) ;
// It may exit above and not return here..
QString s ;
s . sprintf ( " %li " , v ) ;
2011-12-21 14:24:09 +00:00
m - > properties [ STR_PROP_DataVersion ] = s ; // Dont need to nag again if they are too lazy.
2011-07-29 22:55:24 +00:00
} else {
try {
m - > Load ( ) ;
} catch ( OldDBVersion e ) {
DataFormatError ( m ) ;
2011-06-26 08:30:44 +00:00
}
2011-07-29 22:55:24 +00:00
}
2011-06-26 08:30:44 +00:00
} else {
m - > Load ( ) ;
}
}
}
/**
* @ brief Machine XML section in profile .
* @ param root
*/
2011-07-24 16:34:53 +00:00
void Profile : : ExtraLoad ( QDomElement & root )
2011-06-26 08:30:44 +00:00
{
2011-07-24 16:34:53 +00:00
if ( root . tagName ( ) ! = " Machines " ) {
qDebug ( ) < < " No Machines Tag in Profiles.xml " ;
return ;
2011-06-26 08:30:44 +00:00
}
2011-07-24 16:34:53 +00:00
QDomElement elem = root . firstChildElement ( ) ;
while ( ! elem . isNull ( ) ) {
QString pKey = elem . tagName ( ) ;
2011-07-19 15:31:51 +00:00
if ( pKey ! = " Machine " ) {
qWarning ( ) < < " Profile::ExtraLoad() pKey!= \" Machine \" " ;
2011-07-24 16:34:53 +00:00
elem = elem . nextSiblingElement ( ) ;
2011-07-19 15:31:51 +00:00
continue ;
}
2011-06-26 08:30:44 +00:00
int m_id ;
2011-07-24 16:34:53 +00:00
bool ok ;
m_id = elem . attribute ( " id " , " " ) . toInt ( & ok ) ;
2011-06-26 08:30:44 +00:00
int mt ;
2011-07-24 16:34:53 +00:00
mt = elem . attribute ( " type " , " " ) . toInt ( & ok ) ;
2011-06-26 08:30:44 +00:00
MachineType m_type = ( MachineType ) mt ;
2011-07-24 16:34:53 +00:00
QString m_class = elem . attribute ( " class " , " " ) ;
//MachineLoader *ml=GetLoader(m_class);
2011-06-26 08:30:44 +00:00
Machine * m ;
2011-07-24 16:34:53 +00:00
//if (ml) {
// ml->CreateMachine
//}
2011-06-26 08:30:44 +00:00
if ( m_type = = MT_CPAP ) m = new CPAP ( this , m_id ) ;
else if ( m_type = = MT_OXIMETER ) m = new Oximeter ( this , m_id ) ;
else if ( m_type = = MT_SLEEPSTAGE ) m = new SleepStage ( this , m_id ) ;
else {
m = new Machine ( this , m_id ) ;
m - > SetType ( m_type ) ;
}
m - > SetClass ( m_class ) ;
AddMachine ( m ) ;
2011-07-24 16:34:53 +00:00
QDomElement e = elem . firstChildElement ( ) ;
for ( ; ! e . isNull ( ) ; e = e . nextSiblingElement ( ) ) {
QString pKey = e . tagName ( ) ;
m - > properties [ pKey ] = e . text ( ) ;
2011-06-26 08:30:44 +00:00
}
2011-07-24 16:34:53 +00:00
elem = elem . nextSiblingElement ( ) ;
2011-06-26 08:30:44 +00:00
}
}
void Profile : : AddMachine ( Machine * m ) {
2011-07-24 16:34:53 +00:00
if ( ! m ) {
qWarning ( ) < < " Empty Machine in Profile::AddMachine() " ;
return ;
}
2011-06-26 08:30:44 +00:00
machlist [ m - > id ( ) ] = m ;
} ;
void Profile : : DelMachine ( Machine * m ) {
2011-07-24 16:34:53 +00:00
if ( ! m ) {
qWarning ( ) < < " Empty Machine in Profile::AddMachine() " ;
return ;
}
2011-07-31 20:24:43 +00:00
machlist . erase ( machlist . find ( m - > id ( ) ) ) ;
2011-06-26 08:30:44 +00:00
} ;
2011-07-24 16:34:53 +00:00
// Potential Memory Leak Here..
QDomElement Profile : : ExtraSave ( QDomDocument & doc )
2011-06-26 08:30:44 +00:00
{
2011-07-24 16:34:53 +00:00
QDomElement mach = doc . createElement ( " Machines " ) ;
2011-07-31 20:24:43 +00:00
for ( QHash < MachineID , Machine * > : : iterator i = machlist . begin ( ) ; i ! = machlist . end ( ) ; i + + ) {
2011-07-24 16:34:53 +00:00
QDomElement me = doc . createElement ( " Machine " ) ;
2011-07-31 20:24:43 +00:00
Machine * m = i . value ( ) ;
2011-07-24 16:34:53 +00:00
me . setAttribute ( " id " , ( int ) m - > id ( ) ) ;
me . setAttribute ( " type " , ( int ) m - > GetType ( ) ) ;
me . setAttribute ( " class " , m - > GetClass ( ) ) ;
2011-12-22 10:29:12 +00:00
if ( ! m - > properties . contains ( STR_PROP_Path ) ) m - > properties [ STR_PROP_Path ] = " {DataFolder}/ " + m - > GetClass ( ) + " _ " + m - > hexid ( ) ;
2011-06-26 08:30:44 +00:00
2011-07-31 20:24:43 +00:00
for ( QHash < QString , QString > : : iterator j = i . value ( ) - > properties . begin ( ) ; j ! = i . value ( ) - > properties . end ( ) ; j + + ) {
QDomElement mp = doc . createElement ( j . key ( ) ) ;
mp . appendChild ( doc . createTextNode ( j . value ( ) ) ) ;
2011-07-24 16:34:53 +00:00
//mp->LinkEndChild(new QDomText(j->second.toLatin1()));
me . appendChild ( mp ) ;
2011-06-26 08:30:44 +00:00
}
2011-07-24 16:34:53 +00:00
mach . appendChild ( me ) ;
2011-06-26 08:30:44 +00:00
}
return mach ;
}
2011-07-22 13:46:17 +00:00
# include <QMessageBox>
2011-06-26 08:30:44 +00:00
void Profile : : AddDay ( QDate date , Day * day , MachineType mt ) {
//date+=wxTimeSpan::Day();
if ( is_first_day ) {
m_first = m_last = date ;
is_first_day = false ;
}
if ( m_first > date ) m_first = date ;
if ( m_last < date ) m_last = date ;
// Check for any other machines of same type.. Throw an exception if one already exists.
2011-12-08 04:10:35 +00:00
QList < Day * > & dl = daylist [ date ] ;
for ( QList < Day * > : : iterator a = dl . begin ( ) ; a ! = dl . end ( ) ; a + + ) {
2011-06-26 08:30:44 +00:00
if ( ( * a ) - > machine - > GetType ( ) = = mt ) {
2011-12-24 05:55:44 +00:00
if ( QMessageBox : : question ( NULL , " Different Machine Detected " , " This data comes from another machine to what's usually imported, and has overlapping data. \n This new data will override any older data from the old machine. Are you sure you want to do this? " , QMessageBox : : Yes , QMessageBox : : No ) = = QMessageBox : : No ) {
throw OneTypePerDay ( ) ;
}
daylist [ date ] . erase ( a ) ;
break ;
2011-06-26 08:30:44 +00:00
}
}
daylist [ date ] . push_back ( day ) ;
}
2011-12-28 12:36:40 +00:00
Day * Profile : : GetGoodDay ( QDate date , MachineType type )
{
Day * day = NULL ;
if ( daylist . find ( date ) ! = daylist . end ( ) ) {
for ( QList < Day * > : : iterator di = daylist [ date ] . begin ( ) ; di ! = daylist [ date ] . end ( ) ; di + + ) {
if ( type = = MT_UNKNOWN ) { // Who cares.. We just want to know there is data available.
day = ( * di ) ;
break ;
}
if ( ( * di ) - > machine_type ( ) = = type ) {
bool b = false ;
for ( int i = 0 ; i < ( * di ) - > size ( ) ; i + + ) {
if ( ( * ( * di ) ) [ i ] - > enabled ( ) ) {
b = true ;
break ;
}
}
if ( b ) {
day = ( * di ) ;
break ;
}
}
}
}
return day ;
}
2011-06-26 08:30:44 +00:00
Day * Profile : : GetDay ( QDate date , MachineType type )
{
Day * day = NULL ;
2011-06-27 06:26:29 +00:00
// profile-> why did I d that??
if ( daylist . find ( date ) ! = daylist . end ( ) ) {
2011-12-08 04:10:35 +00:00
for ( QList < Day * > : : iterator di = daylist [ date ] . begin ( ) ; di ! = daylist [ date ] . end ( ) ; di + + ) {
2011-12-28 12:36:40 +00:00
2011-06-26 08:30:44 +00:00
if ( type = = MT_UNKNOWN ) { // Who cares.. We just want to know there is data available.
day = ( * di ) ;
break ;
}
if ( ( * di ) - > machine_type ( ) = = type ) {
day = ( * di ) ;
break ;
}
}
}
return day ;
}
2011-07-15 13:30:41 +00:00
int Profile : : Import ( QString path )
2011-06-26 08:30:44 +00:00
{
int c = 0 ;
2011-07-01 10:10:44 +00:00
qDebug ( ) < < " Importing " < < path ;
2011-11-30 06:01:38 +00:00
path = path . replace ( " \\ " , " / " ) ;
if ( path . endsWith ( " / " ) ) path . chop ( 1 ) ;
2011-12-08 04:10:35 +00:00
QList < MachineLoader * > loaders = GetLoaders ( ) ;
for ( QList < MachineLoader * > : : iterator i = loaders . begin ( ) ; i ! = loaders . end ( ) ; i + + ) {
2011-06-26 08:30:44 +00:00
if ( c + = ( * i ) - > Open ( path , this ) ) break ;
}
2011-07-22 13:46:17 +00:00
//qDebug() << "Import Done";
2011-07-15 13:30:41 +00:00
return c ;
2011-06-26 08:30:44 +00:00
}
MachineLoader * GetLoader ( QString name )
{
MachineLoader * l = NULL ;
2011-12-08 04:10:35 +00:00
QList < MachineLoader * > loaders = GetLoaders ( ) ;
for ( QList < MachineLoader * > : : iterator i = loaders . begin ( ) ; i ! = loaders . end ( ) ; i + + ) {
2011-06-26 08:30:44 +00:00
if ( ( * i ) - > ClassName ( ) = = name ) {
l = * i ;
break ;
}
}
return l ;
}
2011-12-08 04:10:35 +00:00
QList < Machine * > Profile : : GetMachines ( MachineType t )
2011-07-31 20:24:43 +00:00
// Returns a QVector containing all machine objects regisered of type t
2011-06-26 08:30:44 +00:00
{
2011-12-08 04:10:35 +00:00
QList < Machine * > vec ;
2011-07-31 20:24:43 +00:00
QHash < MachineID , Machine * > : : iterator i ;
2011-06-26 08:30:44 +00:00
for ( i = machlist . begin ( ) ; i ! = machlist . end ( ) ; i + + ) {
2011-07-31 20:24:43 +00:00
if ( ! i . value ( ) ) {
2011-07-19 15:31:51 +00:00
qWarning ( ) < < " Profile::GetMachines() i->second == NULL " ;
continue ;
}
2011-12-23 10:52:31 +00:00
MachineType mt = i . value ( ) - > GetType ( ) ;
if ( ( t = = MT_UNKNOWN ) | | ( mt = = t ) ) {
2011-07-31 20:24:43 +00:00
vec . push_back ( i . value ( ) ) ;
2011-06-26 08:30:44 +00:00
}
}
return vec ;
}
Machine * Profile : : GetMachine ( MachineType t )
{
2011-12-08 04:10:35 +00:00
QList < Machine * > vec = GetMachines ( t ) ;
2011-06-26 08:30:44 +00:00
if ( vec . size ( ) = = 0 ) return NULL ;
return vec [ 0 ] ;
}
2011-12-06 14:39:14 +00:00
void Profile : : RemoveSession ( Session * sess )
{
2011-12-08 04:10:35 +00:00
QMap < QDate , QList < Day * > > : : iterator di ;
2011-12-06 14:39:14 +00:00
for ( di = daylist . begin ( ) ; di ! = daylist . end ( ) ; di + + ) {
for ( int d = 0 ; d < di . value ( ) . size ( ) ; d + + ) {
Day * day = di . value ( ) [ d ] ;
int i = day - > getSessions ( ) . indexOf ( sess ) ;
if ( i > = 0 ) {
for ( ; i < day - > getSessions ( ) . size ( ) - 1 ; i + + ) {
day - > getSessions ( ) [ i ] = day - > getSessions ( ) [ i + 1 ] ;
}
day - > getSessions ( ) . pop_back ( ) ;
qint64 first = 0 , last = 0 ;
for ( int i = 0 ; i < day - > getSessions ( ) . size ( ) ; i + + ) {
Session & sess = * day - > getSessions ( ) [ i ] ;
if ( ! first | | first > sess . first ( ) ) first = sess . first ( ) ;
if ( ! last | | last < sess . last ( ) ) last = sess . last ( ) ;
}
day - > setFirst ( first ) ;
day - > setLast ( last ) ;
return ;
}
}
}
}
2011-06-27 10:23:24 +00:00
//Profile *profile=NULL;
2011-06-26 08:30:44 +00:00
QString SHA1 ( QString pass )
{
return pass ;
}
namespace Profiles
{
2011-07-31 20:24:43 +00:00
QHash < QString , Profile * > profiles ;
2011-06-26 08:30:44 +00:00
void Done ( )
{
2011-10-05 07:41:56 +00:00
PREF . Save ( ) ;
LAYOUT . Save ( ) ;
// Only save the open profile..
2011-07-31 20:24:43 +00:00
for ( QHash < QString , Profile * > : : iterator i = profiles . begin ( ) ; i ! = profiles . end ( ) ; i + + ) {
i . value ( ) - > Save ( ) ;
delete i . value ( ) ;
2011-06-26 08:30:44 +00:00
}
profiles . clear ( ) ;
delete p_pref ;
delete p_layout ;
}
Profile * Get ( QString name )
{
if ( profiles . find ( name ) ! = profiles . end ( ) )
return profiles [ name ] ;
return NULL ;
}
2011-10-01 12:54:20 +00:00
Profile * Create ( QString name )
2011-06-26 08:30:44 +00:00
{
2011-10-05 07:41:56 +00:00
QString path = PREF . Get ( " {home}/Profiles/ " ) + name ;
2011-06-26 08:30:44 +00:00
QDir dir ( path ) ;
if ( ! dir . exists ( path ) ) dir . mkpath ( path ) ;
//path+="/"+name;
Profile * prof = new Profile ( path ) ;
prof - > Open ( ) ;
profiles [ name ] = prof ;
2011-12-21 14:24:09 +00:00
prof - > user - > setUserName ( name ) ;
2011-09-08 09:50:05 +00:00
//prof->Set("Realname",realname);
2011-12-21 14:24:09 +00:00
//if (!password.isEmpty()) prof.user->setPassword(password);
2012-01-05 04:37:22 +00:00
prof - > Set ( STR_GEN_DataFolder , QString ( " {home}/Profiles/{ " ) + QString ( STR_UI_UserName ) + QString ( " } " ) ) ;
2011-06-26 08:30:44 +00:00
Machine * m = new Machine ( prof , 0 ) ;
m - > SetClass ( " Journal " ) ;
2011-12-23 10:52:31 +00:00
m - > properties [ STR_PROP_Brand ] = " Journal " ;
m - > properties [ STR_PROP_Model ] = " Journal Data Machine Object " ;
m - > properties [ STR_PROP_Serial ] = m - > hexid ( ) ;
2011-12-22 10:29:12 +00:00
m - > properties [ STR_PROP_Path ] = " {DataFolder}/ " + m - > GetClass ( ) + " _ " + m - > hexid ( ) ;
2011-06-26 08:30:44 +00:00
m - > SetType ( MT_JOURNAL ) ;
prof - > AddMachine ( m ) ;
prof - > Save ( ) ;
return prof ;
}
Profile * Get ( )
{
2011-06-27 06:26:29 +00:00
// username lookup
//getUserName()
return profiles [ getUserName ( ) ] ; ;
2011-06-26 08:30:44 +00:00
}
/**
* @ brief Scan Profile directory loading user profiles
*/
void Scan ( )
{
2011-09-17 12:39:00 +00:00
//InitMapsWithoutAwesomeInitializerLists();
2011-06-26 08:30:44 +00:00
p_pref = new Preferences ( " Preferences " ) ;
p_layout = new Preferences ( " Layout " ) ;
2011-10-05 07:41:56 +00:00
PREF . Open ( ) ;
LAYOUT . Open ( ) ;
2011-06-26 08:30:44 +00:00
2011-10-05 07:41:56 +00:00
QString path = PREF . Get ( " {home}/Profiles " ) ;
2011-06-26 08:30:44 +00:00
QDir dir ( path ) ;
if ( ! dir . exists ( path ) ) {
2011-10-01 12:54:20 +00:00
//dir.mkpath(path);
2011-06-26 08:30:44 +00:00
// Just silently create a new user record and get on with it.
2011-10-01 12:54:20 +00:00
//Create(getUserName(),getUserName(),"");
2011-06-26 08:30:44 +00:00
return ;
}
if ( ! dir . isReadable ( ) ) {
2011-07-01 10:10:44 +00:00
qWarning ( ) < < " Can't open " < < path ;
2011-06-26 08:30:44 +00:00
return ;
}
dir . setFilter ( QDir : : Dirs | QDir : : NoDotAndDotDot ) ;
//dir.setSorting(QDir::Name);
QFileInfoList list = dir . entryInfoList ( ) ;
2011-10-01 12:54:20 +00:00
//QString username=getUserName();
//if (list.size()==0) { // No profiles.. Create one.
//Create(username,username,"");
//return;
//}
2011-07-17 07:03:26 +00:00
// Iterate through subdirectories and load profiles..
2011-06-26 08:30:44 +00:00
for ( int i = 0 ; i < list . size ( ) ; i + + ) {
QFileInfo fi = list . at ( i ) ;
QString npath = fi . canonicalFilePath ( ) ;
Profile * prof = new Profile ( npath ) ;
2011-07-17 07:03:26 +00:00
prof - > Open ( ) ; // Read it's XML file..
2011-06-26 08:30:44 +00:00
profiles [ fi . fileName ( ) ] = prof ;
}
}
2011-12-06 14:39:14 +00:00
2011-12-18 16:39:36 +00:00
} // namespace Profiles
2011-06-26 08:30:44 +00:00
2011-12-23 10:52:31 +00:00
int Profile : : countDays ( MachineType mt , QDate start , QDate end )
{
2012-01-01 14:14:18 +00:00
if ( ! start . isValid ( ) )
return 0 ;
//start=LastDay(mt);
if ( ! end . isValid ( ) )
return 0 ;
//end=LastDay(mt);
2011-12-23 10:52:31 +00:00
QDate date = start ;
int days = 0 ;
do {
2011-12-28 12:36:40 +00:00
Day * day = GetGoodDay ( date , mt ) ;
2011-12-23 10:52:31 +00:00
if ( day ) {
if ( ( mt = = MT_UNKNOWN ) | | ( day - > machine - > GetType ( ) = = mt ) ) days + + ;
}
date = date . addDays ( 1 ) ;
2011-12-26 03:31:45 +00:00
} while ( date < = end ) ;
2011-12-23 10:52:31 +00:00
return days ;
}
2011-12-22 13:22:40 +00:00
EventDataType Profile : : calcCount ( ChannelID code , MachineType mt , QDate start , QDate end )
{
2011-12-28 12:36:40 +00:00
if ( ! start . isValid ( ) ) start = LastGoodDay ( mt ) ;
if ( ! end . isValid ( ) ) end = LastGoodDay ( mt ) ;
2011-12-22 13:22:40 +00:00
QDate date = start ;
double val = 0 ;
do {
2011-12-28 12:36:40 +00:00
Day * day = GetGoodDay ( date , mt ) ;
2011-12-22 13:22:40 +00:00
if ( day ) {
val + = day - > count ( code ) ;
}
date = date . addDays ( 1 ) ;
2012-01-03 04:36:47 +00:00
} while ( date < = end ) ;
2011-12-22 13:22:40 +00:00
return val ;
}
double Profile : : calcSum ( ChannelID code , MachineType mt , QDate start , QDate end )
{
2011-12-28 12:36:40 +00:00
if ( ! start . isValid ( ) ) start = LastGoodDay ( mt ) ;
if ( ! end . isValid ( ) ) end = LastGoodDay ( mt ) ;
2011-12-22 13:22:40 +00:00
QDate date = start ;
double val = 0 ;
do {
2011-12-28 12:36:40 +00:00
Day * day = GetGoodDay ( date , mt ) ;
2011-12-22 13:22:40 +00:00
if ( day ) {
val + = day - > sum ( code ) ;
}
date = date . addDays ( 1 ) ;
2012-01-03 04:36:47 +00:00
} while ( date < = end ) ;
2011-12-22 13:22:40 +00:00
return val ;
}
EventDataType Profile : : calcHours ( MachineType mt , QDate start , QDate end )
{
2012-01-03 04:36:47 +00:00
if ( ! start . isValid ( ) )
start = LastGoodDay ( mt ) ;
if ( ! end . isValid ( ) )
end = LastGoodDay ( mt ) ;
2011-12-22 13:22:40 +00:00
QDate date = start ;
double val = 0 ;
do {
2011-12-28 12:36:40 +00:00
Day * day = GetGoodDay ( date , mt ) ;
2011-12-22 13:22:40 +00:00
if ( day ) {
val + = day - > hours ( ) ;
}
date = date . addDays ( 1 ) ;
2012-01-03 04:36:47 +00:00
} while ( date < = end ) ;
2011-12-22 13:22:40 +00:00
return val ;
}
EventDataType Profile : : calcAvg ( ChannelID code , MachineType mt , QDate start , QDate end )
{
2011-12-28 12:36:40 +00:00
if ( ! start . isValid ( ) ) start = LastGoodDay ( mt ) ;
if ( ! end . isValid ( ) ) end = LastGoodDay ( mt ) ;
2011-12-22 13:22:40 +00:00
QDate date = start ;
double val = 0 ;
int cnt = 0 ;
do {
2011-12-28 12:36:40 +00:00
Day * day = GetGoodDay ( date , mt ) ;
2011-12-22 13:22:40 +00:00
if ( day ) {
val + = day - > sum ( code ) ;
cnt + + ;
}
date = date . addDays ( 1 ) ;
2012-01-03 04:36:47 +00:00
} while ( date < = end ) ;
2011-12-22 13:22:40 +00:00
if ( ! cnt ) return 0 ;
return val / float ( cnt ) ;
}
EventDataType Profile : : calcWavg ( ChannelID code , MachineType mt , QDate start , QDate end )
{
if ( ! start . isValid ( ) )
2011-12-28 12:36:40 +00:00
start = LastGoodDay ( mt ) ;
2011-12-22 13:22:40 +00:00
if ( ! end . isValid ( ) )
2011-12-28 12:36:40 +00:00
end = LastGoodDay ( mt ) ;
2011-12-22 13:22:40 +00:00
QDate date = start ;
double val = 0 , tmp , tmph , hours = 0 ;
do {
2011-12-28 12:36:40 +00:00
Day * day = GetGoodDay ( date , mt ) ;
2011-12-22 13:22:40 +00:00
if ( day ) {
tmph = day - > hours ( ) ;
tmp = day - > wavg ( code ) ;
val + = tmp * tmph ;
hours + = tmph ;
}
date = date . addDays ( 1 ) ;
2012-01-03 04:36:47 +00:00
} while ( date < = end ) ;
2011-12-22 13:22:40 +00:00
if ( ! hours ) return 0 ;
val = val / hours ;
return val ;
}
2011-12-23 10:52:31 +00:00
EventDataType Profile : : calcMin ( ChannelID code , MachineType mt , QDate start , QDate end )
{
2011-12-28 12:36:40 +00:00
if ( ! start . isValid ( ) ) start = LastGoodDay ( mt ) ;
if ( ! end . isValid ( ) ) end = LastGoodDay ( mt ) ;
2011-12-23 10:52:31 +00:00
QDate date = start ;
double min = 99999999 , tmp ;
do {
2011-12-28 12:36:40 +00:00
Day * day = GetGoodDay ( date , mt ) ;
2011-12-23 10:52:31 +00:00
if ( day ) {
tmp = day - > Min ( code ) ;
if ( min > tmp ) min = tmp ;
}
date = date . addDays ( 1 ) ;
2012-01-03 04:36:47 +00:00
} while ( date < = end ) ;
2011-12-23 10:52:31 +00:00
if ( min > = 99999999 ) min = 0 ;
return min ;
}
EventDataType Profile : : calcMax ( ChannelID code , MachineType mt , QDate start , QDate end )
{
2011-12-28 12:36:40 +00:00
if ( ! start . isValid ( ) ) start = LastGoodDay ( mt ) ;
if ( ! end . isValid ( ) ) end = LastGoodDay ( mt ) ;
2011-12-23 10:52:31 +00:00
QDate date = start ;
double max = - 99999999 , tmp ;
do {
2011-12-28 12:36:40 +00:00
Day * day = GetGoodDay ( date , mt ) ;
2011-12-23 10:52:31 +00:00
if ( day ) {
tmp = day - > Max ( code ) ;
if ( max < tmp ) max = tmp ;
}
date = date . addDays ( 1 ) ;
2012-01-03 04:36:47 +00:00
} while ( date < = end ) ;
2011-12-23 10:52:31 +00:00
if ( max < = - 99999999 ) max = 0 ;
return max ;
}
EventDataType Profile : : calcSettingsMin ( ChannelID code , MachineType mt , QDate start , QDate end )
{
2011-12-28 12:36:40 +00:00
if ( ! start . isValid ( ) ) start = LastGoodDay ( mt ) ;
if ( ! end . isValid ( ) ) end = LastGoodDay ( mt ) ;
2011-12-23 10:52:31 +00:00
QDate date = start ;
double min = 99999999 , tmp ;
do {
2011-12-28 12:36:40 +00:00
Day * day = GetGoodDay ( date , mt ) ;
2011-12-23 10:52:31 +00:00
if ( day ) {
tmp = day - > settings_min ( code ) ;
if ( min > tmp ) min = tmp ;
}
date = date . addDays ( 1 ) ;
2012-01-03 04:36:47 +00:00
} while ( date < = end ) ;
2011-12-23 10:52:31 +00:00
if ( min > = 99999999 ) min = 0 ;
return min ;
}
EventDataType Profile : : calcSettingsMax ( ChannelID code , MachineType mt , QDate start , QDate end )
{
2011-12-28 12:36:40 +00:00
if ( ! start . isValid ( ) ) start = LastGoodDay ( mt ) ;
if ( ! end . isValid ( ) ) end = LastGoodDay ( mt ) ;
2011-12-23 10:52:31 +00:00
QDate date = start ;
double max = - 99999999 , tmp ;
do {
2011-12-28 12:36:40 +00:00
Day * day = GetGoodDay ( date , mt ) ;
2011-12-23 10:52:31 +00:00
if ( day ) {
tmp = day - > settings_max ( code ) ;
if ( max < tmp ) max = tmp ;
}
date = date . addDays ( 1 ) ;
2012-01-03 04:36:47 +00:00
} while ( date < = end ) ;
2011-12-23 10:52:31 +00:00
if ( max < = - 99999999 ) max = 0 ;
return max ;
}
2011-12-24 01:22:41 +00:00
struct CountSummary {
CountSummary ( EventStoreType v ) : val ( v ) , count ( 0 ) , time ( 0 ) { }
EventStoreType val ;
EventStoreType count ;
quint32 time ;
} ;
2011-12-22 13:22:40 +00:00
EventDataType Profile : : calcPercentile ( ChannelID code , EventDataType percent , MachineType mt , QDate start , QDate end )
{
2011-12-28 12:36:40 +00:00
if ( ! start . isValid ( ) ) start = LastGoodDay ( mt ) ;
if ( ! end . isValid ( ) ) end = LastGoodDay ( mt ) ;
2011-12-22 13:22:40 +00:00
QDate date = start ;
2012-01-05 04:37:22 +00:00
QMap < EventDataType , int > wmap ;
2011-12-24 01:22:41 +00:00
QHash < ChannelID , QHash < EventStoreType , EventStoreType > > : : iterator vsi ;
2012-01-05 12:12:42 +00:00
EventDataType gain ;
//bool setgain=false;
2012-01-05 04:37:22 +00:00
EventDataType weight , value ;
2012-01-01 14:14:18 +00:00
2012-01-05 04:37:22 +00:00
int SN = 0 ;
2011-12-22 13:22:40 +00:00
do {
2011-12-28 12:36:40 +00:00
Day * day = GetGoodDay ( date , mt ) ;
2011-12-23 10:52:31 +00:00
if ( day ) {
for ( int i = 0 ; i < day - > size ( ) ; i + + ) {
for ( QVector < Session * > : : iterator s = day - > begin ( ) ; s ! = day - > end ( ) ; s + + ) {
2012-01-01 14:14:18 +00:00
if ( ! ( * s ) - > enabled ( ) )
continue ;
2011-12-28 12:03:48 +00:00
2011-12-24 01:22:41 +00:00
Session * sess = * s ;
gain = sess - > m_gain [ code ] ;
if ( ! gain ) gain = 1 ;
vsi = sess - > m_valuesummary . find ( code ) ;
if ( vsi = = sess - > m_valuesummary . end ( ) ) continue ;
QHash < EventStoreType , EventStoreType > & vsum = vsi . value ( ) ;
for ( QHash < EventStoreType , EventStoreType > : : iterator k = vsum . begin ( ) ; k ! = vsum . end ( ) ; k + + ) {
2012-01-05 04:37:22 +00:00
weight = k . value ( ) ;
value = EventDataType ( k . key ( ) ) * gain ;
SN + = weight ;
if ( wmap . contains ( value ) ) {
wmap [ value ] + = weight ;
} else {
wmap [ value ] = weight ;
2011-12-24 01:22:41 +00:00
}
}
2011-12-23 10:52:31 +00:00
}
}
}
2011-12-22 13:22:40 +00:00
date = date . addDays ( 1 ) ;
2012-01-01 14:14:18 +00:00
} while ( date < = end ) ;
2012-01-05 04:37:22 +00:00
QVector < ValueCount > valcnt ;
// Build sorted list of value/counts
for ( QMap < EventDataType , int > : : iterator n = wmap . begin ( ) ; n ! = wmap . end ( ) ; n + + ) {
ValueCount vc ;
vc . value = n . key ( ) ;
vc . count = n . value ( ) ;
vc . p = 0 ;
valcnt . push_back ( vc ) ;
}
// sort by weight, then value
qSort ( valcnt ) ;
2011-12-24 01:22:41 +00:00
2012-01-05 04:37:22 +00:00
//double SN=100.0/double(N); // 100% / overall sum
double p = 100.0 * percent ;
2011-12-24 05:55:44 +00:00
2012-01-05 04:37:22 +00:00
double nth = double ( SN ) * percent ; // index of the position in the unweighted set would be
double nthi = floor ( nth ) ;
2011-12-24 05:55:44 +00:00
2012-01-05 04:37:22 +00:00
int sum1 = 0 , sum2 = 0 ;
int w1 , w2 = 0 ;
2012-01-05 12:12:42 +00:00
EventDataType v1 = 0 , v2 = 0 ;
2011-12-24 05:55:44 +00:00
2012-01-05 04:37:22 +00:00
int N = valcnt . size ( ) ;
int k = 0 ;
2011-12-24 05:55:44 +00:00
2012-01-05 04:37:22 +00:00
for ( k = 0 ; k < N ; k + + ) {
v1 = valcnt [ k ] . value ;
w1 = valcnt [ k ] . count ;
sum1 + = w1 ;
if ( sum1 > nthi ) {
return v1 ;
}
if ( sum1 = = nthi ) {
break ; // boundary condition
}
}
if ( k > = N )
return v1 ;
v2 = valcnt [ k + 1 ] . value ;
w2 = valcnt [ k + 1 ] . count ;
sum2 = sum1 + w2 ;
// value lies between v1 and v2
double px = 100.0 / double ( SN ) ; // Percentile represented by one full value
// calculate percentile ranks
double p1 = px * ( double ( sum1 ) - ( double ( w1 ) / 2.0 ) ) ;
double p2 = px * ( double ( sum2 ) - ( double ( w2 ) / 2.0 ) ) ;
// calculate linear interpolation
double v = v1 + ( ( p - p1 ) / ( p2 - p1 ) ) * ( v2 - v1 ) ;
2011-12-24 05:55:44 +00:00
2012-01-05 04:37:22 +00:00
// p1.....p.............p2
// 37 55 70
return v ;
2011-12-22 13:22:40 +00:00
}
QDate Profile : : FirstDay ( MachineType mt )
{
if ( ( mt = = MT_UNKNOWN ) | | ( ! m_last . isValid ( ) ) | | ( ! m_first . isValid ( ) ) )
return m_first ;
QDate d = m_first ;
do {
if ( GetDay ( d , mt ) ! = NULL ) return d ;
d = d . addDays ( 1 ) ;
} while ( d < = m_last ) ;
return m_last ;
}
QDate Profile : : LastDay ( MachineType mt )
{
if ( ( mt = = MT_UNKNOWN ) | | ( ! m_last . isValid ( ) ) | | ( ! m_first . isValid ( ) ) )
return m_last ;
QDate d = m_last ;
do {
if ( GetDay ( d , mt ) ! = NULL ) return d ;
d = d . addDays ( - 1 ) ;
} while ( d > = m_first ) ;
return m_first ;
}
2011-12-28 12:36:40 +00:00
QDate Profile : : FirstGoodDay ( MachineType mt )
{
if ( mt = = MT_UNKNOWN ) //|| (!m_last.isValid()) || (!m_first.isValid()))
return FirstDay ( ) ;
QDate d = FirstDay ( mt ) ;
QDate l = LastDay ( mt ) ;
2012-01-01 14:14:18 +00:00
if ( ! d . isValid ( ) | | ! l . isValid ( ) )
return QDate ( ) ;
2011-12-28 12:36:40 +00:00
do {
if ( GetGoodDay ( d , mt ) ! = NULL ) return d ;
d = d . addDays ( 1 ) ;
} while ( d < = l ) ;
return l ; //m_last;
}
QDate Profile : : LastGoodDay ( MachineType mt )
{
if ( mt = = MT_UNKNOWN ) //|| (!m_last.isValid()) || (!m_first.isValid()))
return FirstDay ( ) ;
QDate d = LastDay ( mt ) ;
QDate f = FirstDay ( mt ) ;
2011-12-31 06:54:51 +00:00
if ( ! ( d . isValid ( ) & & f . isValid ( ) ) ) return QDate ( ) ;
2011-12-28 12:36:40 +00:00
do {
if ( GetGoodDay ( d , mt ) ! = NULL ) return d ;
d = d . addDays ( - 1 ) ;
} while ( d > = f ) ;
return f ; //m_first;
}
2012-01-05 04:37:22 +00:00
// DoctorInfo Strings
const char * STR_DI_Name = " DoctorName " ;
const char * STR_DI_Phone = " DoctorPhone " ;
const char * STR_DI_Email = " DoctorEmail " ;
const char * STR_DI_Practice = " DoctorPractice " ;
const char * STR_DI_Address = " DoctorAddress " ;
const char * STR_DI_PatientID = " DoctorPatientID " ;
// UserInfo Strings
const char * STR_UI_DOB = " DOB " ;
const char * STR_UI_FirstName = " FirstName " ;
const char * STR_UI_LastName = " LastName " ;
const char * STR_UI_UserName = " UserName " ;
const char * STR_UI_Password = " Password " ;
const char * STR_UI_Address = " Address " ;
const char * STR_UI_Phone = " Phone " ;
const char * STR_UI_EmailAddress = " EmailAddress " ;
const char * STR_UI_Country = " Country " ;
const char * STR_UI_Height = " Height " ;
const char * STR_UI_Gender = " Gender " ;
const char * STR_UI_TimeZone = " TimeZone " ;
const char * STR_UI_Language = " Language " ;
const char * STR_UI_DST = " DST " ;
// OxiSettings Strings
const char * STR_OS_EnableOximetry = " EnableOximetry " ;
const char * STR_OS_SyncOximetry = " SyncOximetry " ;
const char * STR_OS_OximeterType = " OximeterType " ;
const char * STR_OS_OxiDiscardThreshold = " OxiDiscardThreshold " ;
const char * STR_OS_SPO2DropDuration = " SPO2DropDuration " ;
const char * STR_OS_SPO2DropPercentage = " SPO2DropPercentage " ;
const char * STR_OS_PulseChangeDuration = " PulseChangeDuration " ;
const char * STR_OS_PulseChangeBPM = " PulseChangeBPM " ;
// CPAPSettings Strings
const char * STR_CS_ComplianceHours = " ComplianceHours " ;
const char * STR_CS_ShowCompliance = " ShowCompliance " ;
const char * STR_CS_ShowLeaksMode = " ShowLeaksMode " ;
const char * STR_CS_MaskStartDate = " MaskStartDate " ;
const char * STR_CS_MaskDescription = " MaskDescription " ;
const char * STR_CS_MaskType = " MaskType " ;
const char * STR_CS_PrescribedMode = " CPAPPrescribedMode " ;
const char * STR_CS_PrescribedMinPressure = " CPAPPrescribedMinPressure " ;
const char * STR_CS_PrescribedMaxPressure = " CPAPPrescribedMaxPressure " ;
const char * STR_CS_UntreatedAHI = " UntreatedAHI " ;
const char * STR_CS_Notes = " CPAPNotes " ;
const char * STR_CS_DateDiagnosed = " DateDiagnosed " ;
// ImportSettings Strings
const char * STR_IS_DaySplitTime = " DaySplitTime " ;
const char * STR_IS_CacheSessions = " MemoryHog " ;
const char * STR_IS_CombineCloseSessions = " CombineCloserSessions " ;
const char * STR_IS_IgnoreShorterSessions = " IgnoreShorterSessions " ;
const char * STR_IS_Multithreading = " EnableMultithreading " ;
const char * STR_IS_BackupCardData = " BackupCardData " ;
const char * STR_IS_CompressBackupData = " CompressBackupData " ;
const char * STR_IS_CompressSessionData = " CompressSessionData " ;
// AppearanceSettings Strings
const char * STR_AS_GraphHeight = " GraphHeight " ;
const char * STR_AS_AntiAliasing = " UseAntiAliasing " ;
const char * STR_AS_GraphSnapshots = " EnableGraphSnapshots " ;
const char * STR_AS_Animations = " AnimationsAndTransitions " ;
const char * STR_AS_SquareWave = " SquareWavePlots " ;
const char * STR_AS_OverlayType = " OverlayType " ;
// UserSettings Strings
const char * STR_US_UnitSystem = " UnitSystem " ;
const char * STR_US_EventWindowSize = " EventWindowSize " ;
const char * STR_US_SkipEmptyDays = " SkipEmptyDays " ;
const char * STR_US_RebuildCache = " RebuildCache " ;
const char * STR_US_ShowDebug = " ShowDebug " ;
const char * STR_US_LinkGroups = " LinkGroups " ;
const char * STR_US_CalculateRDI = " CalculateRDI " ;
const char * STR_US_ShowSerialNumbers = " ShowSerialNumbers " ;