Change license header, remove stale pkg files.
[shibboleth/cpp-opensaml.git] / saml / internal.h
1 /**
2  * Licensed to the University Corporation for Advanced Internet
3  * Development, Inc. (UCAID) under one or more contributor license
4  * agreements. See the NOTICE file distributed with this work for
5  * additional information regarding copyright ownership.
6  *
7  * UCAID licenses this file to you under the Apache License,
8  * Version 2.0 (the "License"); you may not use this file except
9  * in compliance with the License. You may obtain a copy of the
10  * License at
11  *
12  * http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing,
15  * software distributed under the License is distributed on an
16  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
17  * either express or implied. See the License for the specific
18  * language governing permissions and limitations under the License.
19  */
20
21 /*
22  *  internal.h - internally visible classes
23  */
24
25 #ifndef __saml_internal_h__
26 #define __saml_internal_h__
27
28 #ifdef WIN32
29 # define _CRT_SECURE_NO_DEPRECATE 1
30 # define _CRT_NONSTDC_NO_DEPRECATE 1
31 #endif
32
33 // Export public APIs
34 #define SAML_EXPORTS
35
36 // eventually we might be able to support autoconf via cygwin...
37 #if defined (_MSC_VER) || defined(__BORLANDC__)
38 # include "config_win32.h"
39 #else
40 # include "config.h"
41 #endif
42
43 #include "base.h"
44 #include "SAMLConfig.h"
45
46 #include <limits.h>
47
48 using namespace xercesc;
49
50 // C99 defines LLONG_MIN, LLONG_MAX and ULLONG_MAX, but this part of
51 // C99 is not yet included into the C++ standard.
52 // GCC defines LONG_LONG_MIN, LONG_LONG_MAX and ULONG_LONG_MAX.
53 // Some compilers (such as Comeau C++ up to and including version 4.3.3)
54 // define nothing.  In this last case we make a reasonable guess.
55 #ifndef LLONG_MIN
56 #if defined(LONG_LONG_MIN)
57 #define LLONG_MIN LONG_LONG_MIN
58 #elif SIZEOF_LONG_LONG == 8
59 #define LLONG_MIN 0x8000000000000000LL
60 #endif
61 #endif
62  
63 #ifndef LLONG_MAX
64 #if defined(LONG_LONG_MAX)
65 #define LLONG_MAX LONG_LONG_MAX
66 #elif SIZEOF_LONG_LONG == 8
67 #define LLONG_MAX 0x7fffffffffffffffLL
68 #endif
69 #endif
70  
71 #ifndef ULLONG_MAX
72 #if defined(ULONG_LONG_MAX)
73 #define ULLONG_MAX ULONG_LONG_MAX
74 #elif SIZEOF_UNSIGNED_LONG_LONG == 8
75 #define ULLONG_MAX 0xffffffffffffffffULL
76 #endif
77 #endif
78
79 #if SIZEOF_TIME_T == 8
80 # define SAMLTIME_MAX LLONG_MAX
81 #elif SIZEOF_TIME_T == 4
82 # define SAMLTIME_MAX INT_MAX
83 #endif
84
85 #define SAML_LOGCAT "OpenSAML"
86
87 namespace xmltooling {
88     class XMLTOOL_API Mutex;
89 };
90
91 namespace opensaml {
92     
93     /// @cond OFF
94     class SAML_DLLLOCAL SAMLInternalConfig : public SAMLConfig
95     {
96     public:
97         SAMLInternalConfig();
98         ~SAMLInternalConfig();
99
100         static SAMLInternalConfig& getInternalConfig();
101
102         // global per-process setup and shutdown of runtime
103         bool init(bool initXMLTooling=true);
104         void term(bool termXMLTooling=true);
105
106         void generateRandomBytes(void* buf, unsigned int len);
107         void generateRandomBytes(std::string& buf, unsigned int len);
108         XMLCh* generateIdentifier();
109         std::string hashSHA1(const char* data, bool toHex=false);
110
111     private:
112         int m_initCount;
113         xmltooling::Mutex* m_lock;
114     };
115     /// @endcond
116
117 };
118
119 #endif /* __saml_internal_h__ */