OSCAR-code/SleepLib/preferences.cpp

305 lines
7.9 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 <QString>
#include <QDomDocument>
#include <QDomElement>
#include <QDomNode>
2011-06-26 08:30:44 +00:00
#include <QVariant>
#include <QDateTime>
#include <QDir>
#include <QDesktopServices>
2011-07-01 10:10:44 +00:00
#include <QDebug>
#ifdef Q_WS_WIN32
#include "windows.h"
#include "lmcons.h"
#endif
2011-06-26 08:30:44 +00:00
#include "preferences.h"
const QString & getUserName()
{
static QString userName;
userName=getenv("USER");
if (userName.isEmpty()) {
userName=QObject::tr("Windows User");
2011-06-26 08:30:44 +00:00
#if defined (Q_WS_WIN32)
2011-06-26 08:30:44 +00:00
#if defined(UNICODE)
if (QSysInfo::WindowsVersion >= QSysInfo::WV_NT) {
2011-06-26 08:30:44 +00:00
TCHAR winUserName[UNLEN + 1]; // UNLEN is defined in LMCONS.H
DWORD winUserNameSize = sizeof(winUserName);
GetUserNameW( winUserName, &winUserNameSize );
userName = QString::fromStdWString( winUserName );
2011-06-26 08:30:44 +00:00
} 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;
}
2011-06-26 08:30:44 +00:00
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)
2011-06-26 08:30:44 +00:00
{
int prefcode=0;
for (QHash<int,QString>::iterator i=p_codes.begin(); i!=p_codes.end(); i++) {
if (i.value()==s) return i.key();
2011-06-26 08:30:44 +00:00
prefcode++;
}
p_codes[prefcode]=s;
return prefcode;
}*/
2011-06-26 08:30:44 +00:00
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+=QDir::separator();
2011-06-26 08:30:44 +00:00
} else {
temp+=Get(ref);
}
t=a.section(cbr,1);
}
temp+=t;
temp.replace("}}","}"); // Make things look a bit better when escaping braces.
return temp;
}
2011-06-26 08:30:44 +00:00
bool Preferences::Open(QString filename)
{
if (!filename.isEmpty())
p_filename=filename;
2011-06-26 08:30:44 +00:00
QDomDocument doc(p_name);
QFile file(p_filename);
2011-10-01 12:54:20 +00:00
qDebug() << "Scanning " << p_filename;
if (!file.open(QIODevice::ReadOnly)) {
qWarning() << "Could not open" << p_filename;
2011-06-26 08:30:44 +00:00
return false;
}
if (!doc.setContent(&file)) {
qWarning() << "Invalid XML Content in" << p_filename;
return false;
}
file.close();
2011-06-26 08:30:44 +00:00
QDomElement root=doc.documentElement();
if (root.tagName() != AppName) {
return false;
}
2011-06-26 08:30:44 +00:00
root=root.firstChildElement();
if (root.tagName() != p_name) {
return false;
}
2011-06-26 08:30:44 +00:00
bool ok;
p_preferences.clear();
QDomNode n=root.firstChild();
while (!n.isNull()) {
QDomElement e=n.toElement();
if (!e.isNull()) {
QString name=e.tagName();
QString type=e.attribute("type").toLower();
QString value=e.text();;
2011-06-26 08:30:44 +00:00
if (type=="double") {
double d;
d=value.toDouble(&ok);
if (ok) {
p_preferences[name]=d;
} else {
qDebug() << "XML Error:" << name << "=" << value << "??";
}
2011-08-05 07:52:32 +00:00
} else if (type=="qlonglong") {
qint64 d;
d=value.toLongLong(&ok);
if (ok) {
p_preferences[name]=d;
} else {
qDebug() << "XML Error:" << name << "=" << value << "??";
}
2011-08-05 07:52:32 +00:00
} else if (type=="int") {
int d;
d=value.toInt(&ok);
if (ok) {
p_preferences[name]=d;
} else {
qDebug() << "XML Error:" << name << "=" << value << "??";
}
} else
if (type=="bool") {
QString v=value.toLower();
if ((v=="true") || (v=="on") || (v=="yes")) {
p_preferences[name]=true;
2011-06-27 15:00:00 +00:00
} else
if ((v=="false") || (v=="off") || (v=="no")) {
p_preferences[name]=false;
} else {
int d;
d=value.toInt(&ok);
if (ok) {
p_preferences[name]=d!=0;
} else {
qDebug() << "XML Error:" << name << "=" << value << "??";
}
}
2011-06-27 15:00:00 +00:00
} else if (type=="qdatetime") {
2011-06-26 08:30:44 +00:00
QDateTime d;
2011-08-05 07:52:32 +00:00
d=QDateTime::fromString(value,"yyyy-MM-dd HH:mm:ss");
2011-06-26 08:30:44 +00:00
if (d.isValid())
p_preferences[name]=d;
2011-06-26 08:30:44 +00:00
else
qWarning() << "XML Error: Invalid DateTime record" << name << value;
2011-06-26 08:30:44 +00:00
2011-08-05 07:52:32 +00:00
} else if (type=="qtime") {
QTime d;
d=QTime::fromString(value,"hh:mm:ss");
if (d.isValid())
p_preferences[name]=d;
else
qWarning() << "XML Error: Invalid Time record" << name << value;
} else {
p_preferences[name]=value;
2011-06-26 08:30:44 +00:00
}
2011-06-26 08:30:44 +00:00
}
n=n.nextSibling();
2011-06-26 08:30:44 +00:00
}
root=root.nextSiblingElement();
ExtraLoad(root);
2011-06-26 08:30:44 +00:00
return true;
}
bool Preferences::Save(QString filename)
{
if (!filename.isEmpty())
p_filename=filename;
QDomDocument doc(p_name);
QDomElement droot = doc.createElement(AppName);
doc.appendChild( droot );
QDomElement root=doc.createElement(p_name);
droot.appendChild(root);
2011-06-26 08:30:44 +00:00
for (QHash<QString,QVariant>::iterator i=p_preferences.begin(); i!=p_preferences.end(); i++) {
QVariant::Type type=i.value().type();
2011-06-26 08:30:44 +00:00
if (type==QVariant::Invalid) continue;
QDomElement cn=doc.createElement(i.key());
cn.setAttribute("type",i.value().typeName());
2011-06-26 08:30:44 +00:00
if (type==QVariant::DateTime) {
cn.appendChild(doc.createTextNode(i.value().toDateTime().toString("yyyy-MM-dd HH:mm:ss")));
2011-08-05 07:52:32 +00:00
} else if (type==QVariant::Time) {
cn.appendChild(doc.createTextNode(i.value().toTime().toString("hh:mm:ss")));
2011-06-26 08:30:44 +00:00
} else {
cn.appendChild(doc.createTextNode(i.value().toString()));
2011-06-26 08:30:44 +00:00
}
root.appendChild(cn);
}
droot.appendChild(ExtraSave(doc));
QFile file(p_filename);
if (!file.open(QIODevice::WriteOnly)) {
return false;
2011-06-26 08:30:44 +00:00
}
QTextStream ts(&file);
ts << doc.toString();
file.close();
2011-06-26 08:30:44 +00:00
return true;
}