You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
847 B
C++
36 lines
847 B
C++
#include "webcc/http_response_parser.h"
|
|
|
|
#include "boost/algorithm/string.hpp"
|
|
|
|
#include "webcc/logger.h"
|
|
#include "webcc/http_response.h"
|
|
|
|
namespace webcc {
|
|
|
|
HttpResponseParser::HttpResponseParser(HttpResponse* response)
|
|
: HttpParser(response), response_(response) {
|
|
}
|
|
|
|
bool HttpResponseParser::ParseStartLine(const std::string& line) {
|
|
std::vector<std::string> splitted;
|
|
boost::split(splitted, line, boost::is_any_of(" "), boost::token_compress_on);
|
|
|
|
if (splitted.size() < 3) {
|
|
LOG_ERRO("Invalid HTTP response status line: %s", line.c_str());
|
|
return false;
|
|
}
|
|
|
|
std::string& status_str = splitted[1];
|
|
|
|
try {
|
|
response_->set_status(std::stoi(status_str));
|
|
} catch (const std::exception&) {
|
|
LOG_ERRO("Invalid HTTP status code: %s", status_str.c_str());
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
} // namespace webcc
|