summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlexander Baldeck <alexander@archlinux.org>2004-12-30 21:39:53 +0000
committerAlexander Baldeck <alexander@archlinux.org>2004-12-30 21:39:53 +0000
commit62161ab3531cc33699e6c5f990acc3e1a099a786 (patch)
tree9ff2425ba210e39740a19232a3c0826dd717453c /src
parentd0fca301c35ddd1e0091b31e36547143ecbf7076 (diff)
downloadmana-client-62161ab3531cc33699e6c5f990acc3e1a099a786.tar.gz
mana-client-62161ab3531cc33699e6c5f990acc3e1a099a786.tar.bz2
mana-client-62161ab3531cc33699e6c5f990acc3e1a099a786.tar.xz
mana-client-62161ab3531cc33699e6c5f990acc3e1a099a786.zip
- ported Configuration from lists to map
Diffstat (limited to 'src')
-rw-r--r--src/configuration.cpp92
-rw-r--r--src/configuration.h7
2 files changed, 31 insertions, 68 deletions
diff --git a/src/configuration.cpp b/src/configuration.cpp
index 4debdb16..5fb1e752 100644
--- a/src/configuration.cpp
+++ b/src/configuration.cpp
@@ -53,30 +53,21 @@ void Configuration::init(std::string filename) {
while(inBuffer.find(" ", 0) != std::string::npos) {
inBuffer.replace(inBuffer.find(" ", 0), 1, "");
}
- optionTmp.key = inBuffer.substr(0, position);
+ std::string key = inBuffer.substr(0, position);
optionTmp.stringValue = inBuffer.substr(position+1, inBuffer.length());
inBuffer = inBuffer.substr(position+1, inBuffer.length());
optionTmp.numericValue = atof(inBuffer.c_str());
- if(!keyExists(optionTmp.key)) {
- iniOptions.push_back(optionTmp);
- } else {
- iter->key = optionTmp.key;
- iter->stringValue = optionTmp.stringValue;
- iter->numericValue = optionTmp.numericValue;
- }
+ iniOptions[key] = optionTmp;
+
+ #ifdef __DEBUG
+ std::cout << "Configuration::init(" << key << ", \"" << optionTmp.stringValue << "\" / " << optionTmp.numericValue << ")\n";
+ #endif
}
}
}
inFile.close();
-
- #ifdef __DEBUG
- for (iter = iniOptions.begin(); iter != iniOptions.end(); iter++) {
- optionTmp = *iter;
- std::cout << "Configuration::init(" << optionTmp.key << ", \"" << optionTmp.stringValue << "\" / " << optionTmp.numericValue << ")\n";
- }
- #endif
}
/**
@@ -89,19 +80,18 @@ bool Configuration::write(std::string filename) {
INI_OPTION optionTmp;
for (iter = iniOptions.begin(); iter != iniOptions.end(); iter++) {
- optionTmp = *iter;
- out.write(optionTmp.key.c_str(), optionTmp.key.length());
+ out.write(iter->first.c_str(), iter->first.length());
out.write("=", 1);
if(optionTmp.numericValue == 0) {
- out.write(optionTmp.stringValue.c_str(), optionTmp.stringValue.length());
+ out.write(iter->second.stringValue.c_str(), iter->second.stringValue.length());
}else{
- sprintf(tmp, "%f", optionTmp.numericValue);
+ sprintf(tmp, "%f", iter->second.numericValue);
out.write(tmp, strlen(tmp));
strcpy(tmp, "");
}
#ifdef __DEBUG
- std::cout << "Configuration::write(" << optionTmp.key << ", \"" << optionTmp.stringValue << "\" / " << optionTmp.numericValue << ")\n";
+ std::cout << "Configuration::write(" << iter->first.c_str() << ", \"" << iter->second.stringValue << "\" / " << iter->second.numericValue << ")\n";
#endif
out.write("\n", 1);
}
@@ -117,22 +107,12 @@ bool Configuration::write(std::string filename) {
*/
void Configuration::setValue(std::string key, std::string value) {
INI_OPTION optionTmp;
- if(!keyExists(key)) {
- #ifdef __DEBUG
- std::cout << "Configuration::setValue(" << key << ", \"" << value << "\") newly set\n";
- #endif
- optionTmp.key = key;
- optionTmp.stringValue = value;
- optionTmp.numericValue = 0;
-
- iniOptions.push_back(optionTmp);
- } else {
- #ifdef __DEBUG
- std::cout << "Configuration::setValue(" << key << ", \"" << value << "\") reset\n";
- #endif
- iter->stringValue = value;
- iter->numericValue = 0;
- }
+ #ifdef __DEBUG
+ std::cout << "Configuration::setValue(" << key << ", " << value << ")\n";
+ #endif
+ optionTmp.stringValue = value;
+ optionTmp.numericValue = 0;
+ iniOptions[key] = optionTmp;
}
/**
@@ -142,21 +122,12 @@ void Configuration::setValue(std::string key, std::string value) {
*/
void Configuration::setValue(std::string key, float value) {
INI_OPTION optionTmp;
- if(!keyExists(key)) {
- #ifdef __DEBUG
- std::cout << "Configuration::setValue(" << key << ", " << value << ") newly set\n";
- #endif
- optionTmp.key = key;
- optionTmp.numericValue = value;
-
- iniOptions.push_back(optionTmp);
- } else {
- #ifdef __DEBUG
- std::cout << "Configuration::setValue(" << key << ", " << value << ") reset\n";
- #endif
- iter->stringValue = "";
- iter->numericValue = value;
- }
+ #ifdef __DEBUG
+ std::cout << "Configuration::setValue(" << key << ", " << value << ")\n";
+ #endif
+ optionTmp.stringValue = "";
+ optionTmp.numericValue = value;
+ iniOptions[key] = optionTmp;
}
/**
@@ -165,8 +136,9 @@ void Configuration::setValue(std::string key, float value) {
\param deflt default option if not there or error
*/
std::string Configuration::getValue(std::string key, std::string deflt) {
- if(keyExists(key)) {
- return iter->stringValue;
+ iter = iniOptions.find(key);
+ if(iter != iniOptions.end()) {
+ return iniOptions[key].stringValue;
}
return deflt;
}
@@ -177,17 +149,9 @@ std::string Configuration::getValue(std::string key, std::string deflt) {
\param deflt default option if not there or error
*/
float Configuration::getValue(std::string key, float deflt) {
- if(keyExists(key)) {
- return iter->numericValue;
+ iter = iniOptions.find(key);
+ if(iter != iniOptions.end()) {
+ return iniOptions[key].numericValue;
}
return deflt;
}
-
-
-bool Configuration::keyExists(std::string key) {
- for (iter = iniOptions.begin(); iter != iniOptions.end(); iter++) {
- if(iter->key == key)
- return true;
- }
- return false;
-}
diff --git a/src/configuration.h b/src/configuration.h
index 45c443f8..e4239ef0 100644
--- a/src/configuration.h
+++ b/src/configuration.h
@@ -25,7 +25,7 @@
#define INI_DELIMITER "="
#define INI_COMMENTER "#"
-#include <list>
+#include <map>
#include <string>
#include <iostream>
#include <fstream>
@@ -50,13 +50,12 @@ class Configuration {
bool keyExists(std::string);
typedef struct INI_OPTION {
- std::string key;
std::string stringValue;
float numericValue;
};
- std::list<INI_OPTION> iniOptions;
- std::list<INI_OPTION>::iterator iter;
+ std::map<std::string, INI_OPTION> iniOptions;
+ std::map<std::string, INI_OPTION>::iterator iter;
};
#endif