-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmongrel_request_parser.cpp
85 lines (77 loc) · 2.72 KB
/
mongrel_request_parser.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*------------------------------------------------------------------------------
*
* This file is part of rendermq
*
* Author: [email protected]
*
* Copyright 2010-1 Mapquest, Inc. All Rights reserved.
*
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*
*-----------------------------------------------------------------------------*/
#include "mongrel_request_parser.hpp"
#include "mongrel_request_grammar.hpp"
// boost
#include <boost/foreach.hpp>
// boost
#include <boost/xpressive/xpressive.hpp>
#include "logging/logger.hpp"
namespace rendermq
{
struct request_parser::pimpl {
boost::xpressive::sregex rex_;
keys_and_values<std::string::iterator> kv_grammar_;
};
request_parser::request_parser()
: impl(new pimpl) {
impl->rex_ = boost::xpressive::sregex::compile( "([\\w-]+) (\\d+) (.*) \\d+:\\{(.*)\\},\\d+:,");
}
request_parser::~request_parser() {
}
bool request_parser::operator() (mongrel_request & request, std::string const& input) const
{
using namespace boost::xpressive;
LOG_FINER(boost::format("INPUT = `%1%'") % input);
smatch what;
if( regex_match( input, what, impl->rex_ ))
{
request.set_uuid(what[1].str());
request.set_id(what[2].str());
request.set_path(what[3].str());
std::string headers(what[4].str());
std::string::iterator begin = headers.begin();
std::string::iterator end = headers.end();
bool result = qi::phrase_parse(begin, end, impl->kv_grammar_, qi::space, request.headers()); // returns true if successful
if (result)
{
#ifdef RENDERMQ_DEBUG
LOG_FINER("------------------ HTTP HEADERS ------------------");
BOOST_FOREACH(mongrel_request::cont_type::value_type &v,request.headers())
{
LOG_FINER(boost::format("%1%:%2%") % v.first % v.second);
}
LOG_FINER("--------------------------------------------------");
#endif
return true;
}
else
{
LOG_ERROR(boost::format("Failed to parse headers: %1%") % headers) ;
}
}
return false;
}
}