Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00040 #include <ArbitraryMappingsHolder.h>
00041
00042
00043 namespace beliefstate {
00044 ArbitraryMappingsHolder::ArbitraryMappingsHolder() {
00045 }
00046
00047 ArbitraryMappingsHolder::~ArbitraryMappingsHolder() {
00048 for(CKeyValuePair* ckvpMapping : m_lstArbitraryMappings) {
00049 delete ckvpMapping;
00050 }
00051
00052 m_lstArbitraryMappings.clear();
00053 }
00054
00055 void ArbitraryMappingsHolder::parseBranch(libconfig::Setting& sBranch) {
00056
00057
00058 }
00059
00060 bool ArbitraryMappingsHolder::loadArbitraryMappingsFile(std::string strFilepath) {
00061 if(this->fileExists(strFilepath)) {
00062 libconfig::Config cfgConfig;
00063
00064 try {
00065 cfgConfig.readFile(strFilepath.c_str());
00066
00067 if(cfgConfig.exists("arbitrary-mappings")) {
00068 libconfig::Setting &sArbitraryMappings = cfgConfig.lookup("arbitrary-mappings");
00069
00070 if(sArbitraryMappings.exists("mappings")) {
00071 libconfig::Setting &sMappings = sArbitraryMappings["mappings"];
00072
00073 for(int nI = 0; nI < sMappings.getLength(); nI++) {
00074 this->parseBranch(sMappings[nI]);
00075 }
00076 }
00077 }
00078
00079 return true;
00080 } catch(libconfig::ParseException e) {
00081 std::stringstream sts;
00082 sts << e.getLine();
00083
00084 this->fail("Error while parsing arbitrary mappings file '" + strFilepath + "': " + e.getError() + ", on line " + sts.str());
00085 } catch(...) {
00086 this->fail("Undefined error while parsing arbitrary mappings file '" + strFilepath + "'");
00087 }
00088 } else {
00089 this->fail("Arbitrary mappings file not found: '" + strFilepath + "'.");
00090 }
00091
00092 return false;
00093 }
00094
00095 std::list<CKeyValuePair*> ArbitraryMappingsHolder::arbitraryMappings() {
00096 return m_lstArbitraryMappings;
00097 }
00098 }