Improve property inheritance, first batch of SessionInitiators, rename providerId.
[shibboleth/sp.git] / shibsp / util / DOMPropertySet.h
1 /*
2  *  Copyright 2001-2007 Internet2
3  * 
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 /**
18  * @file shibsp/util/DOMPropertySet.h
19  * 
20  * DOM-based property set implementation.
21  */
22
23 #ifndef __shibsp_dompropset_h__
24 #define __shibsp_dompropset_h__
25
26 #include <shibsp/util/PropertySet.h>
27 #include <log4cpp/Category.hh>
28
29 namespace shibsp {
30
31     /**
32      * DOM-based property set implementation.
33      */
34     class SHIBSP_API DOMPropertySet : public virtual PropertySet
35     {
36     public:
37         DOMPropertySet() : m_parent(NULL), m_root(NULL) {}
38         
39         virtual ~DOMPropertySet();
40
41         void setParent(const PropertySet* parent) {
42             m_parent = parent;
43         }
44
45         std::pair<bool,bool> getBool(const char* name, const char* ns=NULL) const;
46         std::pair<bool,const char*> getString(const char* name, const char* ns=NULL) const;
47         std::pair<bool,const XMLCh*> getXMLString(const char* name, const char* ns=NULL) const;
48         std::pair<bool,unsigned int> getUnsignedInt(const char* name, const char* ns=NULL) const;
49         std::pair<bool,int> getInt(const char* name, const char* ns=NULL) const;
50         const PropertySet* getPropertySet(const char* name, const char* ns="urn:mace:shibboleth:sp:config:2.0") const;
51
52         const xercesc::DOMElement* getElement() const {
53             return m_root;
54         }
55
56         /**
57          * Loads the property set from a DOM element.
58          * 
59          * @param e         root element of property set
60          * @param log       log object for tracing
61          * @param filter    optional filter controls what child elements to include as nested PropertySets
62          * @param remapper  optional map of property rename rules for legacy property support
63          */
64         void load(
65             const xercesc::DOMElement* e,
66             log4cpp::Category& log,
67             xercesc::DOMNodeFilter* filter,
68             const std::map<std::string,std::string>* remapper=NULL
69             );
70
71     private:
72         const PropertySet* m_parent;
73         const xercesc::DOMElement* m_root;
74         std::map<std::string,std::pair<char*,const XMLCh*> > m_map;
75         std::map<std::string,DOMPropertySet*> m_nested;
76     };
77
78 };
79
80 #endif /* __shibsp_dompropset_h__ */