OSCAR-code/SleepLib/preferences.cpp

274 lines
7.3 KiB
C++
Raw Normal View History

2011-06-26 08:30:44 +00:00
/*
SleepLib Preferences Implementation
Author: Mark Watkins <jedimark64@users.sourceforge.net>
License: GPL
*/
//#include <wx/wx.h>
//#include <wx/filename.h>
//#include <wx/stdpaths.h>
#include <QString>
#include <QVariant>
#include <QDateTime>
#include <QDir>
#include <QDesktopServices>
2011-07-01 10:10:44 +00:00
#include <QDebug>
2011-06-26 08:30:44 +00:00
#include "preferences.h"
const QString & getUserName()
{
static QString userName;
userName=getenv("USER");
if (userName.isEmpty()) {
userName="Windows User";
// FIXME: I DONT KNOW QT'S WINDOWS DEFS
#if defined (WINDOWS)
#if defined(UNICODE)
if ( qWinVersion() & Qt::WV_NT_based ) {
TCHAR winUserName[UNLEN + 1]; // UNLEN is defined in LMCONS.H
DWORD winUserNameSize = sizeof(winUserName);
GetUserName( winUserName, &winUserNameSize );
userName = qt_winQString( winUserName );
} else
#endif
{
char winUserName[UNLEN + 1]; // UNLEN is defined in LMCONS.H
DWORD winUserNameSize = sizeof(winUserName);
GetUserNameA( winUserName, &winUserNameSize );
userName = QString::fromLocal8Bit( winUserName );
}
#endif
}
return userName;
}
const QString & GetAppRoot()
{
// Should it go here: QDesktopServices::DataLocation ???
2011-06-26 08:30:44 +00:00
static QString HomeAppRoot=QDesktopServices::storageLocation(QDesktopServices::DocumentsLocation)+"/"+AppRoot;
2011-06-26 08:30:44 +00:00
return HomeAppRoot;
}
Preferences::Preferences()
{
p_name="Preferences";
p_path=GetAppRoot();
}
Preferences::Preferences(QString name,QString filename)
{
const QString xmlext=".xml";
if (name.endsWith(xmlext)) {
p_name=name.section(".",0,0);
} else {
p_name=name;
}
if (filename.isEmpty()) {
p_filename=GetAppRoot()+"/"+p_name+xmlext;
} else {
if (!filename.contains("/")) {
p_filename=GetAppRoot()+"/";
} else p_filename="";
p_filename+=filename;
if (!p_filename.endsWith(xmlext)) p_filename+=xmlext;
}
}
Preferences::~Preferences()
{
//Save(); // Don't..Save calls a virtual function.
}
int Preferences::GetCode(QString s)
{
int prefcode=0;
for (std::map<int,QString>::iterator i=p_codes.begin(); i!=p_codes.end(); i++) {
if (i->second==s) return i->first;
prefcode++;
}
p_codes[prefcode]=s;
return prefcode;
}
const QString Preferences::Get(QString name)
{
QString temp;
QChar obr=QChar('{');
QChar cbr=QChar('}');
QString t,a,ref; // How I miss Regular Expressions here..
if (p_preferences.find(name)!=p_preferences.end()) {
temp="";
t=p_preferences[name].toString();
if (p_preferences[name].type()!=QVariant::String) {
return t;
}
} else {
t=name; // parse the string..
}
while (t.contains(obr)) {
temp+=t.section(obr,0,0);
a=t.section(obr,1);
if (a.startsWith("{")) {
temp+=obr;
t=a.section(obr,1);
continue;
}
ref=a.section(cbr,0,0);
if (ref.toLower()=="home") {
temp+=GetAppRoot();
} else if (ref.toLower()=="user") {
temp+=getUserName();
} else if (ref.toLower()=="sep") { // redundant in QT
temp+="/";
} else {
temp+=Get(ref);
}
t=a.section(cbr,1);
}
temp+=t;
temp.replace("}}","}"); // Make things look a bit better when escaping braces.
return temp;
}
bool Preferences::Open(QString filename)
{
if (!filename.isEmpty()) p_filename=filename;
2011-07-01 10:10:44 +00:00
qDebug() << "Opening " << p_filename;
2011-06-26 08:30:44 +00:00
TiXmlDocument xml(p_filename.toLatin1());
if (!xml.LoadFile()) {
return false;
}
TiXmlHandle hDoc(&xml);
TiXmlElement* pElem;
TiXmlHandle hRoot(0);
p_preferences.clear();
pElem=hDoc.FirstChildElement().Element();
// should always have a valid root but handle gracefully if it does
if (!pElem) return false;
hRoot=TiXmlHandle(pElem);
std::map<QString,QString> p_types;
pElem=hRoot.FirstChild(p_name.toLatin1()).FirstChild().Element();
for( ; pElem; pElem=pElem->NextSiblingElement()) {
TiXmlAttribute *attr=pElem->FirstAttribute();
if (!attr) {
qWarning() << "Preferences::Open() attr==NULL!";
return false;
}
2011-06-26 08:30:44 +00:00
QString type=attr->Value();
2011-06-27 15:00:00 +00:00
type=type.toLower();
2011-06-26 08:30:44 +00:00
QString pKey=pElem->Value();
QString pText=pElem->GetText();
bool ok;
if (!pKey.isEmpty() && !pText.isEmpty()) {
if (type=="double") {
double d=pText.toDouble(&ok);
if (!ok)
2011-07-01 10:10:44 +00:00
qDebug() << "String to number conversion error in Preferences::Open()";
2011-06-26 08:30:44 +00:00
else
p_preferences[pKey]=d;
} else if (type=="qlonglong") {
qlonglong d=pText.toLongLong(&ok);
if (!ok)
2011-07-01 10:10:44 +00:00
qDebug() << "String to number conversion error in Preferences::Open()";
2011-06-26 08:30:44 +00:00
else
p_preferences[pKey]=d;
} else if (type=="bool") {
int d=pText.toInt(&ok);
2011-06-27 15:00:00 +00:00
if (!ok) {
if (pText.toLower()=="true")
p_preferences[pKey]=true;
else if (pText.toLower()=="false")
p_preferences[pKey]=false;
else
2011-07-01 10:10:44 +00:00
qDebug() << "String to number conversion error in Preferences::Open()";
2011-06-27 15:00:00 +00:00
} else
2011-06-26 08:30:44 +00:00
p_preferences[pKey]=(bool)d;
2011-06-27 15:00:00 +00:00
} else if (type=="qdatetime") {
2011-06-26 08:30:44 +00:00
QDateTime d;
d.fromString("yyyy-MM-dd HH:mm:ss");
if (d.isValid())
p_preferences[pKey]=d;
else
2011-07-01 10:10:44 +00:00
qWarning() << "Invalid DateTime record in " << filename;
2011-06-26 08:30:44 +00:00
} else { // Assume string
p_preferences[pKey]=pText;
}
}
}
ExtraLoad(&hRoot);
return true;
}
bool Preferences::Save(QString filename)
{
if (!filename.isEmpty())
p_filename=filename;
TiXmlDocument xml;
TiXmlElement* msg;
TiXmlComment * comment;
TiXmlDeclaration *decl=new TiXmlDeclaration( "1.0", "", "" );
xml.LinkEndChild(decl);
TiXmlElement *root=new TiXmlElement(AppName.toLatin1());
xml.LinkEndChild(root);
if (!p_comment.isEmpty()) {
comment = new TiXmlComment();
QString s=" "+p_comment+" ";
comment->SetValue(s.toLatin1());
root->LinkEndChild(comment);
}
TiXmlElement * msgs = new TiXmlElement(p_name.toLatin1());
root->LinkEndChild(msgs);
for (std::map<QString,QVariant>::iterator i=p_preferences.begin(); i!=p_preferences.end(); i++) {
QVariant::Type type=i->second.type();
if (type==QVariant::Invalid) continue;
msg=new TiXmlElement(i->first.toLatin1());
2011-07-01 10:10:44 +00:00
//qDebug() << i->first;
2011-06-26 08:30:44 +00:00
msg->SetAttribute("type",i->second.typeName());
QString t;
if (type==QVariant::DateTime) {
t=i->second.toDateTime().toString("yyyy-MM-dd HH:mm:ss");
} else {
t=i->second.toString();
}
msg->LinkEndChild(new TiXmlText(t.toLatin1()));
msgs->LinkEndChild(msg);
}
TiXmlElement *extra=ExtraSave();
if (extra) root->LinkEndChild(extra);
xml.SaveFile(p_filename.toLatin1());
return true;
}