summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-02-23 00:49:48 +0300
committerAndrei Karas <akaras@inbox.ru>2013-02-23 00:49:48 +0300
commit6c9e2b6ed9f67faab400f1876ada6e635f6abf9e (patch)
tree38ed163daaf39df016ccd4b84bee363276f32760
parentc4e562fffe134b86a35800dbe906afcf761879bc (diff)
downloadplus-6c9e2b6ed9f67faab400f1876ada6e635f6abf9e.tar.gz
plus-6c9e2b6ed9f67faab400f1876ada6e635f6abf9e.tar.bz2
plus-6c9e2b6ed9f67faab400f1876ada6e635f6abf9e.tar.xz
plus-6c9e2b6ed9f67faab400f1876ada6e635f6abf9e.zip
add const and some minor changes in configuration class.
-rw-r--r--src/configuration.cpp111
-rw-r--r--src/configuration.h6
2 files changed, 45 insertions, 72 deletions
diff --git a/src/configuration.cpp b/src/configuration.cpp
index 1de179f6e..2a8e4ecf5 100644
--- a/src/configuration.cpp
+++ b/src/configuration.cpp
@@ -365,34 +365,29 @@ int Configuration::getIntValue(const std::string &key) const
if (itdef != mDefaultsData->end() && itdef->second)
{
+ VariableData *const data = itdef->second;
const VariableData::DataType type = static_cast<const
- VariableData::DataType>(itdef->second->getType());
+ VariableData::DataType>(data->getType());
if (type == VariableData::DATA_INT)
{
- defaultValue = (static_cast<IntData*>(
- itdef->second))->getData();
+ defaultValue = (static_cast<IntData*>(data))->getData();
}
else if (type == VariableData::DATA_STRING)
{
defaultValue = atoi((static_cast<StringData*>(
- itdef->second))->getData().c_str());
+ data))->getData().c_str());
}
else if (type == VariableData::DATA_BOOL)
{
- if ((static_cast<BoolData*>(
- itdef->second))->getData())
- {
+ if ((static_cast<BoolData*>(data))->getData())
defaultValue = 1;
- }
else
- {
defaultValue = 0;
- }
}
else if (type == VariableData::DATA_FLOAT)
{
defaultValue = static_cast<int>(
- (static_cast<FloatData*>(itdef->second))->getData());
+ (static_cast<FloatData*>(data))->getData());
}
}
else
@@ -416,12 +411,11 @@ int Configuration::resetIntValue(const std::string &key)
if (mDefaultsData)
{
const DefaultsData::const_iterator itdef = mDefaultsData->find(key);
-
- if (itdef != mDefaultsData->end() && itdef->second
- && itdef->second->getType() == VariableData::DATA_INT)
+ VariableData *const data = itdef->second;
+ if (itdef != mDefaultsData->end() && data
+ && data->getType() == VariableData::DATA_INT)
{
- defaultValue = (static_cast<IntData*>(
- itdef->second))->getData();
+ defaultValue = (static_cast<IntData*>(data))->getData();
}
else
{
@@ -447,29 +441,24 @@ std::string Configuration::getStringValue(const std::string &key) const
if (itdef != mDefaultsData->end() && itdef->second)
{
+ VariableData *const data = itdef->second;
const VariableData::DataType type = static_cast<const
- VariableData::DataType>(itdef->second->getType());
+ VariableData::DataType>(data->getType());
if (type == VariableData::DATA_STRING)
{
- defaultValue = (static_cast<StringData*>(
- itdef->second))->getData();
+ defaultValue = (static_cast<StringData*>(data))->getData();
}
else if (type == VariableData::DATA_BOOL)
{
- if ((static_cast<BoolData*>(
- itdef->second))->getData())
- {
+ if ((static_cast<BoolData*>(data))->getData())
defaultValue = "1";
- }
else
- {
defaultValue = "0";
- }
}
else if (type == VariableData::DATA_INT)
{
defaultValue = toString((static_cast<IntData*>(
- itdef->second))->getData());
+ data))->getData());
}
}
else
@@ -501,35 +490,30 @@ float Configuration::getFloatValue(const std::string &key) const
if (itdef != mDefaultsData->end() && itdef->second)
{
+ VariableData *const data = itdef->second;
const VariableData::DataType type = static_cast<
- VariableData::DataType>(itdef->second->getType());
+ VariableData::DataType>(data->getType());
if (type == VariableData::DATA_FLOAT)
{
defaultValue = static_cast<float>(
- (static_cast<FloatData*>(itdef->second))->getData());
+ (static_cast<FloatData*>(data))->getData());
}
else if (type == VariableData::DATA_STRING)
{
defaultValue = static_cast<float>(atof((
- static_cast<StringData*>(
- itdef->second))->getData().c_str()));
+ static_cast<StringData*>(data))->getData().c_str()));
}
else if (type == VariableData::DATA_BOOL)
{
- if ((static_cast<BoolData*>(
- itdef->second))->getData())
- {
+ if ((static_cast<BoolData*>(data))->getData())
defaultValue = 1;
- }
else
- {
defaultValue = 0;
- }
}
else if (type == VariableData::DATA_INT)
{
defaultValue = static_cast<float>((static_cast<IntData*>(
- itdef->second))->getData());
+ data))->getData());
}
}
else
@@ -560,41 +544,31 @@ bool Configuration::getBoolValue(const std::string &key) const
if (itdef != mDefaultsData->end() && itdef->second)
{
+ VariableData *const data = itdef->second;
const VariableData::DataType type = static_cast<
- VariableData::DataType>(itdef->second->getType());
+ VariableData::DataType>(data->getType());
if (type == VariableData::DATA_BOOL)
{
- defaultValue = (static_cast<BoolData*>(
- itdef->second))->getData();
+ defaultValue = (static_cast<BoolData*>(data))->getData();
}
else if (type == VariableData::DATA_INT)
{
- if ((static_cast<IntData*>(
- itdef->second))->getData() != 0)
- {
+ if ((static_cast<IntData*>(data))->getData() != 0)
defaultValue = true;
- }
else
- {
defaultValue = false;
- }
}
else if (type == VariableData::DATA_STRING)
{
- if ((static_cast<StringData*>(
- itdef->second))->getData() != "0")
- {
+ if ((static_cast<StringData*>(data))->getData() != "0")
defaultValue = true;
- }
else
- {
defaultValue = false;
- }
}
if (type == VariableData::DATA_FLOAT)
{
if (static_cast<int>((static_cast<FloatData*>(
- itdef->second))->getData()) != 0)
+ data))->getData()) != 0)
{
defaultValue = true;
}
@@ -626,12 +600,12 @@ bool Configuration::resetBoolValue(const std::string &key)
if (mDefaultsData)
{
const DefaultsData::const_iterator itdef = mDefaultsData->find(key);
+ VariableData *const data = itdef->second;
- if (itdef != mDefaultsData->end() && itdef->second
- && itdef->second->getType() == VariableData::DATA_BOOL)
+ if (itdef != mDefaultsData->end() && data
+ && data->getType() == VariableData::DATA_BOOL)
{
- defaultValue = (static_cast<BoolData*>(
- itdef->second))->getData();
+ defaultValue = (static_cast<BoolData*>(data))->getData();
}
else
{
@@ -654,8 +628,8 @@ void ConfigurationObject::initFromXML(const XmlNodePtr parent_node)
if (xmlNameEqual(node, "list"))
{
// list option handling
-
- std::string name = XML::getProperty(node, "name", std::string());
+ const std::string name = XML::getProperty(node,
+ "name", std::string());
for_each_xml_child_node(subnode, node)
{
@@ -663,9 +637,7 @@ void ConfigurationObject::initFromXML(const XmlNodePtr parent_node)
&& subnode->type == XML_ELEMENT_NODE)
{
ConfigurationObject *const cobj = new ConfigurationObject;
-
cobj->initFromXML(subnode); // recurse
-
mContainerOptions[name].push_back(cobj);
}
}
@@ -674,12 +646,13 @@ void ConfigurationObject::initFromXML(const XmlNodePtr parent_node)
else if (xmlNameEqual(node, "option"))
{
// single option handling
-
- std::string name = XML::getProperty(node, "name", std::string());
- std::string value = XML::getProperty(node, "value", std::string());
-
+ const std::string name = XML::getProperty(node,
+ "name", std::string());
if (!name.empty())
- mOptions[name] = value;
+ {
+ mOptions[name] = XML::getProperty(node,
+ "value", std::string());
+ }
} // otherwise ignore
}
}
@@ -699,10 +672,10 @@ void Configuration::init(const std::string &filename, const bool useResManager)
else
{
mConfigPath = filename;
- logger->log("init 1");
+ logger->log1("init 1");
mDirectory = getRealPath(getFileDir(filename));
}
- logger->log("init 2");
+ logger->log1("init 2");
if (!doc.rootNode())
{
@@ -783,7 +756,7 @@ void ConfigurationObject::writeToXML(const XmlTextWriterPtr writer)
void Configuration::write()
{
// Do not attempt to write to file that cannot be opened for writing
- FILE *testFile = fopen(mConfigPath.c_str(), "w");
+ FILE *const testFile = fopen(mConfigPath.c_str(), "w");
if (!testFile)
{
logger->log("Configuration::write() couldn't open %s for writing",
diff --git a/src/configuration.h b/src/configuration.h
index 5d1554064..d9e3af19a 100644
--- a/src/configuration.h
+++ b/src/configuration.h
@@ -149,11 +149,11 @@ class ConfigurationObject
for (IT it = begin; it != end; it++)
{
- ConfigurationObject *wrobj
+ ConfigurationObject *const wrobj
= manager->writeConfigItem(*it, nextobj);
if (wrobj)
{ // wrote something
- assert (wrobj == nextobj);
+// assert (wrobj == nextobj);
nextobj = new ConfigurationObject;
list->push_back(wrobj);
}
@@ -181,7 +181,7 @@ class ConfigurationObject
CONT getList(const std::string &name, CONT empty,
ConfigurationListManager<T, CONT> *manager)
{
- ConfigurationList *list = &(mContainerOptions[name]);
+ ConfigurationList *const list = &(mContainerOptions[name]);
CONT container = empty;
if (!manager)