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.

41 lines
906 B
C++

#include "webcc/response_parser.h"
#include "boost/algorithm/string.hpp"
#include "webcc/response.h"
#include "webcc/logger.h"
namespace webcc {
ResponseParser::ResponseParser(Response* response)
: Parser(response), response_(response) {
}
void ResponseParser::Init(Response* response) {
Parser::Init(response);
response_ = response;
}
bool ResponseParser::ParseStartLine(const std::string& line) {
std::vector<std::string> parts;
boost::split(parts, line, boost::is_any_of(" "), boost::token_compress_on);
if (parts.size() < 3) {
LOG_ERRO("Invalid HTTP response status line: %s", line.c_str());
return false;
}
std::string& status_str = parts[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