/* */ #include "HttpHeaderProcessor.h" #include "HttpHeader.h" #include "message.h" #include "Util.h" #include "DlRetryEx.h" #include "DlAbortEx.h" namespace aria2 { HttpHeaderProcessor::HttpHeaderProcessor():_limit(4096) {} HttpHeaderProcessor::~HttpHeaderProcessor() {} void HttpHeaderProcessor::update(const unsigned char* data, int32_t length) { checkHeaderLimit(length); strm.write(reinterpret_cast(data), length); } void HttpHeaderProcessor::update(const std::string& data) { checkHeaderLimit(data.size()); strm << data; } void HttpHeaderProcessor::checkHeaderLimit(int32_t incomingLength) { strm.seekg(0, std::ios::end); if((int32_t)strm.tellg()+incomingLength > _limit) { throw new DlAbortEx("Too large http header"); } } bool HttpHeaderProcessor::eoh() const { std::string str = strm.str(); if(str.find("\r\n\r\n") == std::string::npos && str.find("\n\n") == std::string::npos) { return false; } else { return true; } } int32_t HttpHeaderProcessor::getPutBackDataLength() const { std::string str = strm.str(); std::string::size_type delimpos = std::string::npos; if((delimpos = str.find("\r\n\r\n")) != std::string::npos) { return str.size()-(delimpos+4); } else if((delimpos = str.find("\n\n")) != std::string::npos) { return str.size()-(delimpos+2); } else { return 0; } } void HttpHeaderProcessor::clear() { strm.str(""); } std::pair HttpHeaderProcessor::getHttpStatusHeader() { strm.seekg(0, std::ios::beg); std::string line; getline(strm, line); // check HTTP status value if(line.size() <= 12) { throw new DlRetryEx(EX_NO_STATUS_HEADER); } std::string status = line.substr(9, 3); HttpHeaderHandle httpHeader = new HttpHeader(); while(getline(strm, line)) { line = Util::trim(line); if(line.empty()) { break; } std::pair hp; Util::split(hp, line, ':'); httpHeader->put(hp.first, hp.second); } return std::pair(status, httpHeader); } std::string HttpHeaderProcessor::getHeaderString() const { std::string str = strm.str(); std::string::size_type delimpos = std::string::npos; if((delimpos = str.find("\r\n\r\n")) != std::string::npos || (delimpos = str.find("\n\n")) != std::string::npos) { return str.substr(0, delimpos); } else { return str; } } } // namespace aria2