Fix backslashes in SHIBSP_PREFIX variable by manually creating it during the script...
[shibboleth/sp.git] / shibsp / AbstractSPRequest.h
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  * @file shibsp/AbstractSPRequest.h
19  * 
20  * Abstract base for SPRequest implementations  
21  */
22
23 #ifndef __shibsp_abstreq_h__
24 #define __shibsp_abstreq_h__
25
26 #include <shibsp/exceptions.h>
27 #include <shibsp/SPRequest.h>
28 #include <shibsp/util/CGIParser.h>
29
30 namespace shibsp {
31     
32 #if defined (_MSC_VER)
33     #pragma warning( push )
34     #pragma warning( disable : 4251 )
35 #endif
36
37     /**
38      * Abstract base for SPRequest implementations
39      */
40     class SHIBSP_API AbstractSPRequest : public virtual SPRequest
41     {
42     protected:
43         /**
44          * Constructor.
45          *
46          * @param category  logging category to use
47          */
48         AbstractSPRequest(const char* category);
49         
50         /**
51          * Stores a normalized request URI to ensure it contains no %-encoded characters
52          * or other undesirable artifacts, such as ;jsessionid appendage.
53          *
54          * @param uri   the request URI as obtained from the client
55          */
56         void setRequestURI(const char* uri);
57
58     public:
59         virtual ~AbstractSPRequest();
60
61         const ServiceProvider& getServiceProvider() const {
62             return *m_sp;
63         }
64
65         RequestMapper::Settings getRequestSettings() const;
66
67         const Application& getApplication() const;
68         
69         Session* getSession(bool checkTimeout=true, bool ignoreAddress=false, bool cache=true) const;
70
71         const char* getRequestURI() const {
72             return m_uri.c_str();
73         }
74
75         const char* getRequestURL() const;
76         
77         const char* getParameter(const char* name) const;
78
79         std::vector<const char*>::size_type getParameters(const char* name, std::vector<const char*>& values) const;
80
81         const char* getHandlerURL(const char* resource=NULL) const;
82
83         void log(SPLogLevel level, const std::string& msg) const;
84
85         bool isPriorityEnabled(SPLogLevel level) const;
86
87     private:
88         ServiceProvider* m_sp;
89         mutable RequestMapper* m_mapper;
90         mutable RequestMapper::Settings m_settings;
91         mutable const Application* m_app;
92         mutable bool m_sessionTried;
93         mutable Session* m_session;
94         std::string m_uri;
95         mutable std::string m_url;
96         void* m_log; // declared void* to avoid log4cpp header conflicts in Apache
97         mutable std::string m_handlerURL;
98         mutable CGIParser* m_parser;
99     };
100
101 #if defined (_MSC_VER)
102     #pragma warning( pop )
103 #endif
104
105 };
106
107 #endif /* __shibsp_abstreq_h__ */