1 //******************************************************************
3 // Copyright 2015 Samsung Electronics All Rights Reserved.
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
7 // Licensed under the Apache License, Version 2.0 (the "License");
8 // you may not use this file except in compliance with the License.
9 // You may obtain a copy of the License at
11 // http://www.apache.org/licenses/LICENSE-2.0
13 // Unless required by applicable law or agreed to in writing, software
14 // distributed under the License is distributed on an "AS IS" BASIS,
15 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 // See the License for the specific language governing permissions and
17 // limitations under the License.
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
21 #ifndef CONFIGURATION_H_
22 #define CONFIGURATION_H_
32 #include "rapidxml/rapidxml.hpp"
33 #include "rapidxml/rapidxml_print.hpp"
41 typedef vector< map< string, string > > configInfo;
49 map< string, vector< map< string, string > > > resourceProperty;
56 Configuration(string configFile);
59 bool isLoaded() const;
60 bool isHasInput(std::string & bundleId) const;
61 void getConfiguredBundles(configInfo *configOutput);
62 void getBundleConfiguration(string bundleId, configInfo *configOutput);
63 void getResourceConfiguration(string bundleId, vector< resourceInfo > *configOutput);
66 void getConfigDocument(string pathConfigFile);
69 string m_pathConfigFile;
70 string m_strConfigData;
71 rapidxml::xml_document< char > m_xmlDoc;
72 std::map<std::string, bool> m_mapisHasInput; // bundleId, isHasInput
77 #endif /* CONFIGURATION_H_ */