2e5a7cafa7020a8b97371b69c79cab4e96b63c9b
[shibboleth/cpp-opensaml.git] / saml / saml2 / metadata / AbstractMetadataProvider.h
1 /*
2  *  Copyright 2001-2009 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 saml/saml2/metadata/AbstractMetadataProvider.h
19  * 
20  * Base class for caching metadata providers.
21  */
22
23 #ifndef __saml2_absmetadataprov_h__
24 #define __saml2_absmetadataprov_h__
25
26 #include <saml/saml2/metadata/ObservableMetadataProvider.h>
27
28 #include <ctime>
29 #include <map>
30 #include <vector>
31 #include <string>
32
33 namespace xmltooling {
34     class XMLTOOL_API Credential;
35     class XMLTOOL_API CredentialCriteria;
36     class XMLTOOL_API KeyInfoResolver;
37     class XMLTOOL_API Mutex;
38 };
39
40 namespace opensaml {
41     namespace saml2md {
42         
43         class SAML_API MetadataFilter;
44
45 #if defined (_MSC_VER)
46         #pragma warning( push )
47         #pragma warning( disable : 4251 )
48 #endif
49
50         /**
51          * Base class for caching metadata providers.
52          */
53         class SAML_API AbstractMetadataProvider : public ObservableMetadataProvider
54         {
55         protected:
56             /**
57              * Constructor.
58              * 
59              * If a DOM is supplied, a set of default logic will be used to identify
60              * and build a KeyInfoResolver plugin and install it into the provider.
61              * 
62              * The following XML content is supported:
63              * 
64              * <ul>
65              *  <li>&lt;KeyInfoResolver&gt; elements with a type attribute
66              * </ul>
67              * 
68              * XML namespaces are ignored in the processing of these elements.
69              * 
70              * @param e DOM to supply configuration for provider
71              */
72             AbstractMetadataProvider(const xercesc::DOMElement* e=NULL);
73             
74         public:
75             virtual ~AbstractMetadataProvider();
76             
77             using MetadataProvider::getEntityDescriptor;
78             using MetadataProvider::getEntitiesDescriptor;
79
80             void emitChangeEvent() const;
81             std::pair<const EntityDescriptor*,const RoleDescriptor*> getEntityDescriptor(const Criteria& criteria) const;
82             const EntitiesDescriptor* getEntitiesDescriptor(const char* name, bool requireValidMetadata=true) const;
83             const xmltooling::Credential* resolve(const xmltooling::CredentialCriteria* criteria=NULL) const;
84             std::vector<const xmltooling::Credential*>::size_type resolve(
85                 std::vector<const xmltooling::Credential*>& results, const xmltooling::CredentialCriteria* criteria=NULL
86                 ) const;
87
88         protected:
89             /** Embedded KeyInfoResolver instance. */
90             xmltooling::KeyInfoResolver* m_resolver;
91
92             /**
93              * Loads an entity into the cache for faster lookup. This includes
94              * processing known reverse lookup strategies for artifacts.
95              * 
96              * @param site          entity definition
97              * @param validUntil    maximum expiration time of the entity definition
98              * @param replace       true iff existing entries for the same entity should be cleared/replaced
99              */
100             virtual void index(EntityDescriptor* site, time_t validUntil, bool replace=false) const;
101
102             /**
103              * Loads a group of entities into the cache for faster lookup.
104              * 
105              * @param group         group definition
106              * @param validUntil    maximum expiration time of the group definition
107              */
108             virtual void index(EntitiesDescriptor* group, time_t validUntil) const;
109         
110             /**
111              * Clear the cache of known entities and groups.
112              *
113              * @param freeSites true iff the objects cached in the site map should be freed.
114              */
115             virtual void clearDescriptorIndex(bool freeSites=false);
116
117         private:
118             typedef std::multimap<std::string,const EntityDescriptor*> sitemap_t;
119             typedef std::multimap<std::string,const EntitiesDescriptor*> groupmap_t;
120             mutable sitemap_t m_sites;
121             mutable sitemap_t m_sources;
122             mutable groupmap_t m_groups;
123
124             mutable xmltooling::Mutex* m_credentialLock;
125             typedef std::map< const RoleDescriptor*, std::vector<xmltooling::Credential*> > credmap_t;
126             mutable credmap_t m_credentialMap;
127             const credmap_t::mapped_type& resolveCredentials(const RoleDescriptor& role) const;
128         };
129
130 #if defined (_MSC_VER)
131         #pragma warning( pop )
132         #pragma warning( disable : 4251 )
133 #endif
134         
135     };
136 };
137
138 #endif /* __saml2_absmetadataprov_h__ */