build fixes
[shibboleth/sp.git] / plugins / plugins.cpp
1 /*
2  *  Copyright 2011 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  * plugins.cpp
19  *
20  * Extension plugins for Shibboleth SP.
21  */
22
23 #include "internal.h"
24 #include <shibsp/SPConfig.h>
25 #include <shibsp/util/SPConstants.h>
26 #include <xmltooling/impl/AnyElement.h>
27
28 using namespace shibsp;
29 using namespace xmltooling;
30 using namespace std;
31
32 #ifdef WIN32
33 # define PLUGINS_EXPORTS __declspec(dllexport)
34 #else
35 # define PLUGINS_EXPORTS
36 #endif
37
38 namespace shibsp {
39 #ifdef HAVE_GSSAPI_NAMINGEXTS
40     PluginManager<AttributeExtractor,string,const DOMElement*>::Factory GSSAPIAttributeExtractorFactory;
41 #endif
42 };
43
44 extern "C" int PLUGINS_EXPORTS xmltooling_extension_init(void*)
45 {
46 #ifdef HAVE_GSSAPI_NAMINGEXTS
47     SPConfig::getConfig().AttributeExtractorManager.registerFactory("GSSAPI", GSSAPIAttributeExtractorFactory);
48     static const XMLCh _GSSAPI[] = UNICODE_LITERAL_6(G,S,S,A,P,I);
49     XMLObjectBuilder::registerBuilder(xmltooling::QName(shibspconstants::SHIB2ATTRIBUTEMAP_NS, _GSSAPI), new AnyElementBuilder());
50 #endif
51     return 0;   // signal success
52 }
53
54 extern "C" void PLUGINS_EXPORTS xmltooling_extension_term()
55 {
56     // Factories normally get unregistered during library shutdown, so no work usually required here.
57 }