Initial check-in.
[shibboleth/resolver.git] / shibresolver / base.h
1 /*
2  *  Copyright 2010 JANET(UK)
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 shibresolver/base.h
19  *
20  * Base header file definitions
21  * Must be included prior to including any other header
22  */
23
24 #ifndef __shibresolver_base_h__
25 #define __shibresolver_base_h__
26
27 #include <shibsp/base.h>
28
29 // Windows and GCC4 Symbol Visibility Macros
30 #ifdef WIN32
31   #define SHIBRESOLVER_IMPORT __declspec(dllimport)
32   #define SHIBRESOLVER_EXPORT __declspec(dllexport)
33   #define SHIBRESOLVER_DLLLOCAL
34   #define SHIBRESOLVER_DLLPUBLIC
35 #else
36   #define SHIBRESOLVER_IMPORT
37   #ifdef GCC_HASCLASSVISIBILITY
38     #define SHIBRESOLVER_EXPORT __attribute__ ((visibility("default")))
39     #define SHIBRESOLVER_DLLLOCAL __attribute__ ((visibility("hidden")))
40     #define SHIBRESOLVER_DLLPUBLIC __attribute__ ((visibility("default")))
41   #else
42     #define SHIBRESOLVER_EXPORT
43     #define SHIBRESOLVER_DLLLOCAL
44     #define SHIBRESOLVER_DLLPUBLIC
45   #endif
46 #endif
47
48 // Define SHIBRESOLVER_API for DLL builds
49 #ifdef SHIBRESOLVER_EXPORTS
50   #define SHIBRESOLVER_API SHIBRESOLVER_EXPORT
51 #else
52   #define SHIBRESOLVER_API SHIBRESOLVER_IMPORT
53 #endif
54
55 // Throwable classes must always be visible on GCC in all binaries
56 #ifdef WIN32
57   #define SHIBRESOLVER_EXCEPTIONAPI(api) api
58 #elif defined(GCC_HASCLASSVISIBILITY)
59   #define SHIBRESOLVER_EXCEPTIONAPI(api) SHIBRESOLVER_EXPORT
60 #else
61   #define SHIBRESOLVER_EXCEPTIONAPI(api)
62 #endif
63
64 /** Logging category for Service Provider functions. */
65 #define SHIBRESOLVER_LOGCAT "ShibbolethResolver"
66
67 #endif /* __shibresolver_base_h__ */