ServletRequest.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054 #ifndef SERVLET_REQUEST_H
00055 #define SERVLET_REQUEST_H
00056
00057 #include <memory>
00058 #include <string>
00059 #include <vector>
00060 #include <map>
00061 #include <memory>
00062 #include <iostream>
00063 #include <boost/shared_ptr.hpp>
00064
00065 namespace servlet {
00066
00067 class RequestDispatcher;
00068
00069
00090 class ServletRequest {
00091 public:
00092 virtual ~ServletRequest(){}
00093
00120 virtual boost::shared_ptr<void> getAttribute(const std::string& name)=0;
00121 template <typename T>
00122 T getAttribute(const std::string& name);
00123
00147 virtual bool hasAttribute(const std::string& name) const = 0;
00148
00161 virtual std::auto_ptr< std::vector<std::string> > getAttributeNames() const=0;
00162
00187 virtual void setAttribute(const std::string& name, boost::shared_ptr<void> o)=0;
00188 template <typename T>
00189 void setAttribute(const std::string& name, boost::shared_ptr<T> o)
00190 {
00191 setAttribute(name, static_cast<boost::shared_ptr<void> >(o));
00192 }
00193 template <typename T>
00194 void setAttribute(const std::string& name, const T& o);
00195
00212 virtual void removeAttribute(const std::string& name)=0;
00213
00225 virtual std::string getCharacterEncoding() const=0;
00226
00237 virtual void setCharacterEncoding(const std::string& env) =0;
00238
00249 virtual int getContentLength() const=0;
00250
00261 virtual std::string getContentType() const=0;
00262
00277 virtual std::istream& getInputStream()=0;
00278
00307 virtual std::string getParameter(const std::string& name) const=0;
00308
00324 virtual std::auto_ptr< std::vector<std::string> > getParameterNames() const=0;
00325
00343 virtual std::auto_ptr< std::vector<std::string> > getParameterValues(const std::string& name) const=0;
00344
00356 virtual std::auto_ptr< std::multimap<std::string,std::string> > getParameterMap() const=0;
00357
00369 virtual std::string getProtocol() const=0;
00370
00382 virtual std::string getScheme() const=0;
00383
00392 virtual std::string getServerName() const=0;
00393
00403 virtual int getServerPort() const=0;
00404
00415 virtual std::string getRemoteAddr() const=0;
00416
00429 virtual std::string getRemoteHost() const=0;
00430
00471 virtual bool isSecure() const=0;
00472
00505 virtual RequestDispatcher* getRequestDispatcher(const std::string& path)=0;
00506
00515 virtual int getRemotePort() const=0;
00516
00526 virtual std::string getLocalName() const=0;
00527
00538 virtual std::string getLocalAddr() const=0;
00539
00548 virtual int getLocalPort() const=0;
00549 };
00550
00551 template<typename T>
00552 T ServletRequest::getAttribute(const std::string& name) {
00553 const boost::shared_ptr<void> value = getAttribute(name);
00554 if(!value)
00555 return T();
00556 return *boost::static_pointer_cast<T>(value);
00557 }
00558 template<typename T>
00559 void ServletRequest::setAttribute(const std::string& name, const T& o) {
00560 setAttribute(name,boost::shared_ptr<void>(new T(o)));
00561 }
00562
00563 }
00564
00565 #endif