Improve property inheritance, first batch of SessionInitiators, rename providerId.
[shibboleth/sp.git] / shibsp / handler / impl / ChainingSessionInitiator.cpp
1 /*
2  *  Copyright 2001-2007 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  * ChainingSessionInitiator.cpp
19  * 
20  * Chains together multiple SessionInitiator handlers in sequence.
21  */
22
23 #include "internal.h"
24 #include "exceptions.h"
25 #include "handler/AbstractHandler.h"
26 #include "util/SPConstants.h"
27
28 #include <xercesc/util/XMLUniDefs.hpp>
29 #include <xmltooling/util/XMLHelper.h>
30
31 using namespace shibsp;
32 using namespace xmltooling;
33 using namespace log4cpp;
34 using namespace std;
35
36 namespace shibsp {
37
38 #if defined (_MSC_VER)
39     #pragma warning( push )
40     #pragma warning( disable : 4250 )
41 #endif
42
43     class SHIBSP_DLLLOCAL ChainingSessionInitiator : public AbstractHandler
44     {
45     public:
46         ChainingSessionInitiator(const DOMElement* e, const char* appId);
47         virtual ~ChainingSessionInitiator() {
48             for_each(m_handlers.begin(), m_handlers.end(), xmltooling::cleanup<Handler>());
49         }
50         
51         pair<bool,long> run(SPRequest& request, bool isHandler=true) const;
52
53     private:
54         vector<Handler*> m_handlers;
55     };
56
57 #if defined (_MSC_VER)
58     #pragma warning( pop )
59 #endif
60
61     Handler* SHIBSP_DLLLOCAL ChainingSessionInitiatorFactory(const pair<const DOMElement*,const char*>& p)
62     {
63         return new ChainingSessionInitiator(p.first, p.second);
64     }
65
66     static const XMLCh SessionInitiator[] = UNICODE_LITERAL_16(S,e,s,s,i,o,n,I,n,i,t,i,a,t,o,r);
67     static const XMLCh _type[] =            UNICODE_LITERAL_4(t,y,p,e);
68
69     class SHIBSP_DLLLOCAL SessionInitiatorNodeFilter : public DOMNodeFilter
70     {
71     public:
72         short acceptNode(const DOMNode* node) const {
73             if (XMLHelper::isNodeNamed(node,shibspconstants::SHIB2SPCONFIG_NS,SessionInitiator))
74                 return FILTER_REJECT;
75             return FILTER_ACCEPT;
76         }
77     };
78
79     static SHIBSP_DLLLOCAL SessionInitiatorNodeFilter g_SINFilter;
80 };
81
82 ChainingSessionInitiator::ChainingSessionInitiator(const DOMElement* e, const char* appId)
83     : AbstractHandler(e, Category::getInstance(SHIBSP_LOGCAT".SessionInitiator"), &g_SINFilter)
84 {
85     SPConfig& conf = SPConfig::getConfig();
86
87     // Load up the chain of handlers.
88     e = e ? XMLHelper::getFirstChildElement(e, SessionInitiator) : NULL;
89     while (e) {
90         auto_ptr_char type(e->getAttributeNS(NULL,_type));
91         if (type.get() && *(type.get())) {
92             m_handlers.push_back(conf.SessionInitiatorManager.newPlugin(type.get(),make_pair(e, appId)));
93             m_handlers.back()->setParent(this);
94         }
95         e = XMLHelper::getNextSiblingElement(e, SessionInitiator);
96     }
97 }
98
99 pair<bool,long> ChainingSessionInitiator::run(SPRequest& request, bool isHandler) const
100 {
101     pair<bool,long> ret;
102     for (vector<Handler*>::const_iterator i = m_handlers.begin(); i!=m_handlers.end(); ++i) {
103         ret = (*i)->run(request, isHandler);
104         if (ret.first)
105             return ret;
106     }
107     throw ConfigurationException("None of the configured SessionInitiators handled the request.");
108 }