Imported Upstream version 1.2.0
[platform/upstream/iotivity.git] / service / resource-container / src / Configuration.h
1 //******************************************************************
2 //
3 // Copyright 2015 Samsung Electronics All Rights Reserved.
4 //
5 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
6 //
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
10 //
11 //      http://www.apache.org/licenses/LICENSE-2.0
12 //
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.
18 //
19 //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
20
21 #ifndef CONFIGURATION_H_
22 #define CONFIGURATION_H_
23
24 #ifdef HAVE_UNISTD_H
25 #include <unistd.h>
26 #endif
27 #ifdef HAVE_STRING_H
28 #include <string.h>
29 #endif
30 #include <iostream>
31 #include <fstream>
32 #include <string>
33 #include <vector>
34 #include <map>
35
36 #include "rapidxml/rapidxml.hpp"
37 #include "rapidxml/rapidxml_print.hpp"
38
39 using namespace std;
40
41 namespace OIC
42 {
43     namespace Service
44     {
45         typedef vector< map< string, string > > configInfo;
46
47         struct resourceInfo
48         {
49             string name;
50             string uri;
51             string resourceType;
52             string address;
53             map< string, vector< map< string, string > > > resourceProperty;
54         };
55
56         class Configuration
57         {
58             public:
59                 Configuration();
60                 Configuration(string configFile);
61                 ~Configuration();
62
63                 bool isLoaded() const;
64                 bool isHasInput(std::string & bundleId) const;
65                 void getConfiguredBundles(configInfo *configOutput);
66                 void getBundleConfiguration(string bundleId, configInfo *configOutput);
67                 void getResourceConfiguration(string bundleId, vector< resourceInfo > *configOutput);
68                 void getResourceConfiguration(string bundleId, string resourceName, resourceInfo *resourceInfoOutput);
69
70             private:
71                 void getConfigDocument(string pathConfigFile);
72
73                 bool m_loaded;
74                 string m_pathConfigFile;
75                 string m_strConfigData;
76                 rapidxml::xml_document< char > m_xmlDoc;
77                 std::map<std::string, bool> m_mapisHasInput; // bundleId, isHasInput
78         };
79     }
80 }
81
82 #endif /* CONFIGURATION_H_ */