Switched to xmltooling cred resolver.
[shibboleth/cpp-sp.git] / xmlproviders / XMLProviders.cpp
1 /*
2  *  Copyright 2001-2005 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 /* XMLProviders.cpp - bootstraps the extension library
18
19    Scott Cantor
20    2/14/04
21
22    $History:$
23 */
24
25 #ifdef WIN32
26 # define XML_EXPORTS __declspec(dllexport)
27 #else
28 # define XML_EXPORTS
29 #endif
30
31 #include "internal.h"
32 #include <shib-target/shib-target.h>
33 #include <log4cpp/Category.hh>
34 #include <openssl/err.h>
35
36 using namespace saml;
37 using namespace shibboleth;
38 using namespace log4cpp;
39 using namespace std;
40
41 // Metadata Factories
42
43 PlugManager::Factory TargetedIDFactory;
44 PlugManager::Factory XMLCredentialsFactory;
45 PlugManager::Factory XMLAAPFactory;
46 PlugManager::Factory XMLAccessControlFactory;
47
48 extern "C" int XML_EXPORTS saml_extension_init(void*)
49 {
50     // Register extension schemas.
51     saml::XML::registerSchema(::XML::SHIB_NS,::XML::SHIB_SCHEMA_ID);
52
53     // Register metadata factories (some are legacy aliases)
54     SAMLConfig& conf=SAMLConfig::getConfig();
55     conf.getPlugMgr().regFactory("edu.internet2.middleware.shibboleth.common.provider.TargetedIDFactory",&TargetedIDFactory);
56     conf.getPlugMgr().regFactory("edu.internet2.middleware.shibboleth.common.Credentials",&XMLCredentialsFactory);
57     conf.getPlugMgr().regFactory("edu.internet2.middleware.shibboleth.aap.provider.XMLAAP",&XMLAAPFactory);
58     conf.getPlugMgr().regFactory("edu.internet2.middleware.shibboleth.target.provider.XMLAAP",&XMLAAPFactory);
59     conf.getPlugMgr().regFactory(shibtarget::XML::XMLAccessControlType,&XMLAccessControlFactory);
60
61     return 0;
62 }
63
64 extern "C" void XML_EXPORTS saml_extension_term()
65 {
66     // Unregister metadata factories
67     SAMLConfig& conf=SAMLConfig::getConfig();
68     conf.getPlugMgr().unregFactory("edu.internet2.middleware.shibboleth.common.provider.TargetedIDFactory");
69     conf.getPlugMgr().unregFactory("edu.internet2.middleware.shibboleth.common.Credentials");
70     conf.getPlugMgr().unregFactory("edu.internet2.middleware.shibboleth.aap.provider.XMLAAP");
71     conf.getPlugMgr().unregFactory("edu.internet2.middleware.shibboleth.target.provider.XMLAAP");
72     conf.getPlugMgr().unregFactory(shibtarget::XML::XMLAccessControlType);
73 }