Moved request/response APIs out.
[shibboleth/cpp-opensaml.git] / saml / util / CGIParser.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 saml/util/CGIParser.h
19  * 
20  * CGI GET/POST parameter parsing
21  */
22
23 #ifndef __saml_cgi_h__
24 #define __saml_cgi_h__
25
26 #include <saml/base.h>
27 #include <xmltooling/io/HTTPRequest.h>
28
29 namespace opensaml {
30
31     /**
32      * CGI GET/POST parameter parsing
33      */
34     class SAML_API CGIParser
35     {
36         MAKE_NONCOPYABLE(CGIParser);
37     public:
38         /**
39          * Constructor
40          * 
41          * @param request   HTTP request interface
42          */
43         CGIParser(const xmltooling::HTTPRequest& request);
44
45         ~CGIParser();
46
47         /** Alias for multimap iterator. */
48         typedef std::multimap<std::string,char*>::const_iterator walker;
49         
50         /**
51          * Returns a pair of bounded iterators around the values of a parameter.
52          * 
53          * @param name  name of parameter
54          * @return  a pair of multimap iterators surrounding the matching value(s)
55          */
56         std::pair<walker,walker> getParameters(const char* name) const;
57         
58     private:
59         char* fmakeword(char stop, unsigned int *cl, const char** ppch);
60         char* makeword(char *line, char stop);
61         void plustospace(char *str);
62
63         std::multimap<std::string,char*> kvp_map;
64     };
65 };
66
67 #endif /* __saml_cgi_h__ */