Bump version, add plugins ext library, draft of GSS-API attribute support.
[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
26 using namespace shibsp;
27 using namespace xmltooling;
28 using namespace std;
29
30 #ifdef WIN32
31 # define PLUGINS_EXPORTS __declspec(dllexport)
32 #else
33 # define PLUGINS_EXPORTS
34 #endif
35
36 namespace shibsp {
37 #ifdef HAVE_GSSAPI_NAMINGEXTS
38     PluginManager<AttributeExtractor,string,const DOMElement*>::Factory GSSAPIExtractorFactory;
39 #endif
40 };
41
42 extern "C" int PLUGINS_EXPORTS xmltooling_extension_init(void*)
43 {
44 #ifdef HAVE_GSSAPI_NAMINGEXTS
45     SPConfig::getConfig().AttributeExtractorManager.registerFactory("GSSAPI", GSSAPIExtractorFactory);
46 #endif
47     return 0;   // signal success
48 }
49
50 extern "C" void PLUGINS_EXPORTS xmltooling_extension_term()
51 {
52     // Factories normally get unregistered during library shutdown, so no work usually required here.
53 }