https://bugs.internet2.edu/jira/browse/SSPCPP-320
[shibboleth/sp.git] / shibsp / AbstractSPRequest.h
index 82849b3..6d497bd 100644 (file)
@@ -1,5 +1,5 @@
 /*
- *  Copyright 2001-2006 Internet2
+ *  Copyright 2001-2010 Internet2
  * 
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
 /**
  * @file shibsp/AbstractSPRequest.h
  * 
- * Abstract base for SPRequest implementations  
+ * Abstract base for SPRequest implementations.
  */
 
 #ifndef __shibsp_abstreq_h__
 #define __shibsp_abstreq_h__
 
-#include <shibsp/exceptions.h>
 #include <shibsp/SPRequest.h>
 
 namespace shibsp {
-
-    class SHIBSP_API CGIParser;
     
+    class SHIBSP_API CGIParser;
+
+#if defined (_MSC_VER)
+    #pragma warning( push )
+    #pragma warning( disable : 4251 )
+#endif
+
     /**
      * Abstract base for SPRequest implementations
      */
@@ -37,41 +41,55 @@ namespace shibsp {
     {
     protected:
         /**
-         * Constructor
-         * 
-         * @param app   pointer to effective Application, if known
+         * Constructor.
+         *
+         * @param category  logging category to use
          */
-        AbstractSPRequest(const Application* app=NULL);
+        AbstractSPRequest(const char* category);
         
+        /**
+         * Stores a normalized request URI to ensure it contains no %-encoded characters
+         * or other undesirable artifacts.
+         *
+         * @param uri   the request URI as obtained from the client
+         */
+        void setRequestURI(const char* uri);
+
     public:
         virtual ~AbstractSPRequest();
-        
-        const Application& getSPApplication() const {
-            return *m_app;
-        }
 
+        // Virtual function overrides.
+        const ServiceProvider& getServiceProvider() const;
+        RequestMapper::Settings getRequestSettings() const;
+        const Application& getApplication() const;
+        Session* getSession(bool checkTimeout=true, bool ignoreAddress=false, bool cache=true);
+        const char* getRequestURI() const;
+        const char* getRequestURL() const;
+        std::string getRemoteAddr() const;
         const char* getParameter(const char* name) const;
-
         std::vector<const char*>::size_type getParameters(const char* name, std::vector<const char*>& values) const;
-
-        const char* getCookie(const char* name) const;
-
-        const char* getHandlerURL(const char* resource=NULL) const;
-
+        const char* getHandlerURL(const char* resource=nullptr) const;
         void log(SPLogLevel level, const std::string& msg) const;
-
         bool isPriorityEnabled(SPLogLevel level) const;
 
-    protected:
-        /** Holds effective Application. */
-        const Application* m_app;
-    
     private:
+        ServiceProvider* m_sp;
+        mutable RequestMapper* m_mapper;
+        mutable RequestMapper::Settings m_settings;
+        mutable const Application* m_app;
+        mutable bool m_sessionTried;
+        mutable Session* m_session;
+        std::string m_uri;
+        mutable std::string m_url;
         void* m_log; // declared void* to avoid log4cpp header conflicts in Apache
         mutable std::string m_handlerURL;
-        mutable std::map<std::string,std::string> m_cookieMap;
         mutable CGIParser* m_parser;
     };
+
+#if defined (_MSC_VER)
+    #pragma warning( pop )
+#endif
+
 };
 
 #endif /* __shibsp_abstreq_h__ */