HttpSkipResponseCommand.cc 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. /* <!-- copyright */
  2. /*
  3. * aria2 - The high speed download utility
  4. *
  5. * Copyright (C) 2006 Tatsuhiro Tsujikawa
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. *
  21. * In addition, as a special exception, the copyright holders give
  22. * permission to link the code of portions of this program with the
  23. * OpenSSL library under certain conditions as described in each
  24. * individual source file, and distribute linked combinations
  25. * including the two.
  26. * You must obey the GNU General Public License in all respects
  27. * for all of the code used other than OpenSSL. If you modify
  28. * file(s) with this exception, you may extend this exception to your
  29. * version of the file(s), but you are not obligated to do so. If you
  30. * do not wish to do so, delete this exception statement from your
  31. * version. If you delete this exception statement from all source
  32. * files in the program, then also delete it here.
  33. */
  34. /* copyright --> */
  35. #include "HttpSkipResponseCommand.h"
  36. #include "HttpConnection.h"
  37. #include "HttpResponse.h"
  38. #include "message.h"
  39. #include "SocketCore.h"
  40. #include "Decoder.h"
  41. #include "DlRetryEx.h"
  42. #include "Request.h"
  43. #include "DownloadEngine.h"
  44. #include "Logger.h"
  45. #include "HttpRequest.h"
  46. #include "Segment.h"
  47. #include "Util.h"
  48. #include "StringFormat.h"
  49. #include "DlAbortEx.h"
  50. #include "HttpHeader.h"
  51. #include "prefs.h"
  52. #include "Option.h"
  53. #include "CookieStorage.h"
  54. #include "AuthConfigFactory.h"
  55. namespace aria2 {
  56. HttpSkipResponseCommand::HttpSkipResponseCommand
  57. (int cuid,
  58. const SharedHandle<Request>& req,
  59. RequestGroup* requestGroup,
  60. const SharedHandle<HttpConnection>& httpConnection,
  61. const SharedHandle<HttpResponse>& httpResponse,
  62. DownloadEngine* e,
  63. const SharedHandle<SocketCore>& s):
  64. AbstractCommand(cuid, req, requestGroup, e, s),
  65. _httpConnection(httpConnection),
  66. _httpResponse(httpResponse),
  67. _totalLength(_httpResponse->getEntityLength()),
  68. _receivedBytes(0)
  69. {}
  70. HttpSkipResponseCommand::~HttpSkipResponseCommand() {}
  71. void HttpSkipResponseCommand::setTransferEncodingDecoder
  72. (const SharedHandle<Decoder>& decoder)
  73. {
  74. _transferEncodingDecoder = decoder;
  75. }
  76. bool HttpSkipResponseCommand::executeInternal()
  77. {
  78. if(req->getMethod() == Request::METHOD_HEAD ||
  79. (_totalLength == 0 && _transferEncodingDecoder.isNull())) {
  80. // If request method is HEAD or content-length header is present and
  81. // it's value is 0, then pool socket for reuse.
  82. // If content-length header is not present, then EOF is expected in the end.
  83. // In this case, the content is thrown away and socket cannot be pooled.
  84. if(req->getMethod() == Request::METHOD_HEAD ||
  85. _httpResponse->getHttpHeader()->defined(HttpHeader::CONTENT_LENGTH)) {
  86. poolConnection();
  87. }
  88. return processResponse();
  89. }
  90. const size_t BUFSIZE = 16*1024;
  91. unsigned char buf[BUFSIZE];
  92. size_t bufSize = BUFSIZE;
  93. try {
  94. socket->readData(buf, bufSize);
  95. if(_transferEncodingDecoder.isNull()) {
  96. _receivedBytes += bufSize;
  97. } else {
  98. // _receivedBytes is not updated if transferEncoding is set.
  99. // The return value is safely ignored here.
  100. _transferEncodingDecoder->decode(buf, bufSize);
  101. }
  102. if(_totalLength != 0 && bufSize == 0 &&
  103. !socket->wantRead() && !socket->wantWrite()) {
  104. throw DlRetryEx(EX_GOT_EOF);
  105. }
  106. } catch(RecoverableException& e) {
  107. logger->debug(EX_EXCEPTION_CAUGHT, e);
  108. return processResponse();
  109. }
  110. bool finished = false;
  111. if(_transferEncodingDecoder.isNull()) {
  112. if(bufSize == 0) {
  113. if(!socket->wantRead() && !socket->wantWrite()) {
  114. return processResponse();
  115. }
  116. } else {
  117. finished = (_totalLength == _receivedBytes);
  118. }
  119. } else {
  120. finished = _transferEncodingDecoder->finished();
  121. }
  122. if(finished) {
  123. poolConnection();
  124. return processResponse();
  125. } else {
  126. setWriteCheckSocketIf(socket, socket->wantWrite());
  127. e->commands.push_back(this);
  128. return false;
  129. }
  130. }
  131. void HttpSkipResponseCommand::poolConnection() const
  132. {
  133. if(req->supportsPersistentConnection()) {
  134. e->poolSocket(req, isProxyDefined(), socket);
  135. }
  136. }
  137. bool HttpSkipResponseCommand::processResponse()
  138. {
  139. if(_httpResponse->isRedirect()) {
  140. unsigned int rnum =
  141. _httpResponse->getHttpRequest()->getRequest()->getRedirectCount();
  142. if(rnum >= Request::MAX_REDIRECT) {
  143. throw DlAbortEx(StringFormat("Too many redirects: count=%u", rnum).str());
  144. }
  145. _httpResponse->processRedirect();
  146. return prepareForRetry(0);
  147. } else if(_httpResponse->hasRetryAfter()) {
  148. return prepareForRetry(_httpResponse->getRetryAfter());
  149. } else if(_httpResponse->getResponseStatus() >= HttpHeader::S400) {
  150. if(_httpResponse->getResponseStatus() == HttpHeader::S401) {
  151. throw DlAbortEx(EX_AUTH_FAILED);
  152. }else if(_httpResponse->getResponseStatus() == HttpHeader::S404) {
  153. throw DlAbortEx(MSG_RESOURCE_NOT_FOUND,
  154. DownloadResult::RESOURCE_NOT_FOUND);
  155. } else {
  156. throw DlAbortEx(StringFormat(EX_BAD_STATUS, Util::parseUInt(_httpResponse->getResponseStatus())).str());
  157. }
  158. } else {
  159. return prepareForRetry(0);
  160. }
  161. }
  162. void HttpSkipResponseCommand::disableSocketCheck()
  163. {
  164. disableReadCheckSocket();
  165. disableWriteCheckSocket();
  166. }
  167. } // namespace aria2