d2fe3244cf3aa0b611590a55adbed0e03834bf8c
[shibboleth/cpp-sp.git] / shib-target / internal.h
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 /* internal.h - internally visible declarations
18
19    Scott Cantor
20    6/29/03
21
22    $History:$
23 */
24
25 #ifndef __shibtarget_internal_h__
26 #define __shibtarget_internal_h__
27
28 #ifdef WIN32
29 # define SHIBTARGET_EXPORTS __declspec(dllexport)
30 #endif
31
32 // eventually we might be able to support autoconf via cygwin...
33 #if defined (_MSC_VER) || defined(__BORLANDC__)
34 # include "config_win32.h"
35 #else
36 # include "config.h"
37 #endif
38
39 #include "shib-target.h"
40 #include "hresult.h"
41
42 #include <xmltooling/util/Threads.h>
43
44 #include <log4cpp/Category.hh>
45 #include <log4cpp/FixedContextCategory.hh>
46
47 #define SHIBT_L(s) shibtarget::XML::Literals::s
48 #define SHIBT_L_QNAME(p,s) shibtarget::XML::Literals::p##_##s
49 #define SHIBT_LOGCAT "shibtarget"
50 #define SHIBTRAN_LOGCAT "Shibboleth-TRANSACTION"
51
52 namespace shibtarget {
53     // ST-aware class that maps SAML artifacts to appropriate binding information
54     class STArtifactMapper : public virtual saml::SAMLBrowserProfile::ArtifactMapper
55     {
56     public:
57         STArtifactMapper(const IApplication* application) : m_app(application) {}
58         virtual ~STArtifactMapper() {}
59         saml::SAMLResponse* resolve(saml::SAMLRequest* request);
60     
61     private:
62         const IApplication* m_app;
63     };
64
65     class STConfig : public ShibTargetConfig
66     {
67     public:
68         STConfig() : m_tranLog(NULL), m_tranLogLock(NULL) {}
69         ~STConfig() {}
70         
71         bool init(const char* schemadir);
72         bool load(const char* config);
73         void shutdown();
74
75         log4cpp::Category& getTransactionLog() { m_tranLogLock->lock(); return *m_tranLog; }
76         void releaseTransactionLog() { m_tranLogLock->unlock();}
77     private:
78         log4cpp::FixedContextCategory* m_tranLog;
79         xmltooling::Mutex* m_tranLogLock;
80         static IConfig* ShibTargetConfigFactory(const DOMElement* e);
81     };
82 }
83
84 #endif