Multi-line svn commit, see body.
[shibboleth/cpp-opensaml.git] / saml / saml2 / metadata / AbstractMetadataProvider.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 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 <xmltooling/security/Credential.h>
29 #include <xmltooling/security/CredentialCriteria.h>
30 #include <xmltooling/util/Threads.h>
31
32 namespace opensaml {
33     namespace saml2md {
34         
35         class SAML_API MetadataFilter;
36
37         /**
38          * Base class for caching metadata providers.
39          */
40         class SAML_API AbstractMetadataProvider : public ObservableMetadataProvider
41         {
42         protected:
43             /**
44              * Constructor.
45              * 
46              * If a DOM is supplied, a set of default logic will be used to identify
47              * and build a KeyInfoResolver plugin and install it into the provider.
48              * 
49              * The following XML content is supported:
50              * 
51              * <ul>
52              *  <li>&lt;KeyInfoResolver&gt; elements with a type attribute
53              * </ul>
54              * 
55              * XML namespaces are ignored in the processing of these elements.
56              * 
57              * @param e DOM to supply configuration for provider
58              */
59             AbstractMetadataProvider(const xercesc::DOMElement* e=NULL);
60             
61         public:
62             virtual ~AbstractMetadataProvider();
63             
64             using MetadataProvider::getEntityDescriptor;
65             using MetadataProvider::getEntitiesDescriptor;
66
67             void emitChangeEvent() const;
68             const EntityDescriptor* getEntityDescriptor(const char* id, bool requireValidMetadata=true) const;
69             const EntityDescriptor* getEntityDescriptor(const SAMLArtifact* artifact) const;
70             const EntitiesDescriptor* getEntitiesDescriptor(const char* name, bool requireValidMetadata=true) const;
71             const xmltooling::Credential* resolve(const xmltooling::CredentialCriteria* criteria=NULL) const;
72             std::vector<const xmltooling::Credential*>::size_type resolve(
73                 std::vector<const xmltooling::Credential*>& results, const xmltooling::CredentialCriteria* criteria=NULL
74                 ) const;
75
76         protected:
77             /** Embedded KeyInfoResolver instance. */
78             xmltooling::KeyInfoResolver* m_resolver;
79
80             /**
81              * Loads an entity into the cache for faster lookup. This includes
82              * processing known reverse lookup strategies for artifacts.
83              * 
84              * @param site          entity definition
85              * @param validUntil    expiration time of the entity definition
86              */
87             virtual void index(EntityDescriptor* site, time_t validUntil);
88
89             /**
90              * Loads a group of entities into the cache for faster lookup.
91              * 
92              * @param group         group definition
93              * @param validUntil    expiration time of the group definition
94              */
95             virtual void index(EntitiesDescriptor* group, time_t validUntil);
96         
97             /**
98              * Clear the cache of known entities and groups.
99              */
100             virtual void clearDescriptorIndex();
101
102         private:
103             typedef std::multimap<std::string,const EntityDescriptor*> sitemap_t;
104             typedef std::multimap<std::string,const EntitiesDescriptor*> groupmap_t;
105             sitemap_t m_sites;
106             sitemap_t m_sources;
107             groupmap_t m_groups;
108
109             mutable xmltooling::Mutex* m_credentialLock;
110             typedef std::map< const RoleDescriptor*, std::vector<xmltooling::Credential*> > credmap_t;
111             mutable credmap_t m_credentialMap;
112             const credmap_t::mapped_type& resolveCredentials(const RoleDescriptor& role) const;
113         };
114         
115     };
116 };
117
118 #endif /* __saml2_absmetadataprov_h__ */