/* */ #include "HttpHeaderProcessor.h" #include "HttpHeader.h" #include "message.h" #include "Util.h" #include "DlRetryEx.h" #include "DlAbortEx.h" #include "A2STR.h" namespace aria2 { HttpHeaderProcessor::HttpHeaderProcessor():_limit(4096) {} HttpHeaderProcessor::~HttpHeaderProcessor() {} void HttpHeaderProcessor::update(const unsigned char* data, size_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(size_t incomingLength) { strm.seekg(0, std::ios::end); if((size_t)strm.tellg()+incomingLength > _limit) { throw 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; } } size_t HttpHeaderProcessor::getPutBackDataLength() const { 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(A2STR::NIL); } SharedHandle HttpHeaderProcessor::getHttpResponseHeader() { strm.seekg(0, std::ios::beg); std::string line; getline(strm, line); // check HTTP status value if(line.size() <= 12) { throw DlRetryEx(EX_NO_STATUS_HEADER); } HttpHeaderHandle httpHeader(new HttpHeader()); httpHeader->setResponseStatus(line.substr(9, 3)); httpHeader->setVersion(line.substr(0, 8)); httpHeader->fill(strm); return 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