| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_BROWSER_LOADER_INTERCEPTING_RESOURCE_HANDLER_H_ | 5 #ifndef CONTENT_BROWSER_LOADER_INTERCEPTING_RESOURCE_HANDLER_H_ |
| 6 #define CONTENT_BROWSER_LOADER_INTERCEPTING_RESOURCE_HANDLER_H_ | 6 #define CONTENT_BROWSER_LOADER_INTERCEPTING_RESOURCE_HANDLER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/macros.h" | 11 #include "base/macros.h" |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 14 #include "content/browser/loader/layered_resource_handler.h" | 14 #include "content/browser/loader/layered_resource_handler.h" |
| 15 #include "content/browser/loader/resource_controller.h" | 15 #include "content/browser/loader/resource_controller.h" |
| 16 #include "content/browser/loader/resource_handler.h" | 16 #include "content/browser/loader/resource_handler.h" |
| 17 #include "content/common/content_export.h" | 17 #include "content/common/content_export.h" |
| 18 #include "net/base/io_buffer.h" | 18 #include "net/base/io_buffer.h" |
| 19 #include "net/url_request/url_request_status.h" | 19 #include "net/url_request/url_request_status.h" |
| 20 | 20 |
| 21 namespace net { | 21 namespace net { |
| 22 class URLRequest; | 22 class URLRequest; |
| 23 } | 23 } |
| 24 | 24 |
| 25 namespace content { | 25 namespace content { |
| 26 | 26 |
| 27 class ResourceController; |
| 28 |
| 27 // ResourceHandler that initiates special handling of the response if needed, | 29 // ResourceHandler that initiates special handling of the response if needed, |
| 28 // based on the response's MIME type (starts downloads, sends data to some | 30 // based on the response's MIME type (starts downloads, sends data to some |
| 29 // plugin types via a special channel). | 31 // plugin types via a special channel). |
| 30 // | 32 // |
| 31 // An InterceptingResourceHandler holds two handlers (|next_handler| and | 33 // An InterceptingResourceHandler holds two handlers (|next_handler| and |
| 32 // |new_handler|). It assumes the following: | 34 // |new_handler|). It assumes the following: |
| 33 // - OnResponseStarted on |next_handler| never sets |*defer|. | 35 // - OnResponseStarted on |next_handler| never sets |*defer|. |
| 34 // - OnResponseCompleted on |next_handler| never sets |*defer|. | 36 // - OnResponseCompleted on |next_handler| never sets |*defer|. |
| 35 class CONTENT_EXPORT InterceptingResourceHandler | 37 class CONTENT_EXPORT InterceptingResourceHandler |
| 36 : public LayeredResourceHandler, | 38 : public LayeredResourceHandler { |
| 37 public ResourceController { | |
| 38 public: | 39 public: |
| 39 InterceptingResourceHandler(std::unique_ptr<ResourceHandler> next_handler, | 40 InterceptingResourceHandler(std::unique_ptr<ResourceHandler> next_handler, |
| 40 net::URLRequest* request); | 41 net::URLRequest* request); |
| 41 ~InterceptingResourceHandler() override; | 42 ~InterceptingResourceHandler() override; |
| 42 | 43 |
| 43 // ResourceHandler implementation: | 44 // ResourceHandler implementation: |
| 44 void SetController(ResourceController* controller) override; | 45 void OnResponseStarted( |
| 45 bool OnResponseStarted(ResourceResponse* response, bool* defer) override; | 46 ResourceResponse* response, |
| 47 std::unique_ptr<ResourceController> controller) override; |
| 46 bool OnWillRead(scoped_refptr<net::IOBuffer>* buf, | 48 bool OnWillRead(scoped_refptr<net::IOBuffer>* buf, |
| 47 int* buf_size, | 49 int* buf_size, |
| 48 int min_size) override; | 50 int min_size) override; |
| 49 bool OnReadCompleted(int bytes_read, bool* defer) override; | 51 void OnReadCompleted(int bytes_read, |
| 50 void OnResponseCompleted(const net::URLRequestStatus& status, | 52 std::unique_ptr<ResourceController> controller) override; |
| 51 bool* defer) override; | 53 void OnResponseCompleted( |
| 54 const net::URLRequestStatus& status, |
| 55 std::unique_ptr<ResourceController> controller) override; |
| 52 | 56 |
| 53 // ResourceController implementation: | 57 void ResumeInternal(); |
| 54 void Cancel() override; | |
| 55 void CancelAndIgnore() override; | |
| 56 void CancelWithError(int error_code) override; | |
| 57 void Resume() override; | |
| 58 | 58 |
| 59 // Replaces the next handler with |new_handler|, sending | 59 // Replaces the next handler with |new_handler|, sending |
| 60 // |payload_for_old_handler| to the old handler. Must be called after | 60 // |payload_for_old_handler| to the old handler. Must be called after |
| 61 // OnWillStart and OnRequestRedirected and before OnResponseStarted. One | 61 // OnWillStart and OnRequestRedirected and before OnResponseStarted. One |
| 62 // OnWillRead call is permitted beforehand. |new_handler|'s OnWillStart and | 62 // OnWillRead call is permitted beforehand. |new_handler|'s OnWillStart and |
| 63 // OnRequestRedirected methods will not be called. | 63 // OnRequestRedirected methods will not be called. |
| 64 void UseNewHandler(std::unique_ptr<ResourceHandler> new_handler, | 64 void UseNewHandler(std::unique_ptr<ResourceHandler> new_handler, |
| 65 const std::string& payload_for_old_handler); | 65 const std::string& payload_for_old_handler); |
| 66 | 66 |
| 67 // Used in tests. | 67 // Used in tests. |
| 68 ResourceHandler* new_handler_for_testing() const { | 68 ResourceHandler* new_handler_for_testing() const { |
| 69 return new_handler_.get(); | 69 return new_handler_.get(); |
| 70 } | 70 } |
| 71 | 71 |
| 72 private: | 72 private: |
| 73 // ResourceController subclass that calls into the InterceptingResourceHandler |
| 74 // on cancel/resume. |
| 75 class Controller; |
| 76 |
| 73 enum class State { | 77 enum class State { |
| 74 // The InterceptingResourceHandler is waiting for the mime type of the | 78 // The InterceptingResourceHandler is waiting for the mime type of the |
| 75 // response to be identified, to check if the next handler should be | 79 // response to be identified, to check if the next handler should be |
| 76 // replaced with an appropriate one. | 80 // replaced with an appropriate one. |
| 77 STARTING, | 81 STARTING, |
| 78 | 82 |
| 79 // The InterceptingResourceHandler is sending the payload given via | 83 // The InterceptingResourceHandler is sending the payload given via |
| 80 // UseNewHandler to the old handler and waiting for its completion via | 84 // UseNewHandler to the old handler and waiting for its completion via |
| 81 // Resume(). | 85 // Resume(). |
| 82 SENDING_PAYLOAD_TO_OLD_HANDLER, | 86 SENDING_PAYLOAD_TO_OLD_HANDLER, |
| (...skipping 18 matching lines...) Expand all Loading... |
| 101 // the new handler and waiting for its completion via Resume(). | 105 // the new handler and waiting for its completion via Resume(). |
| 102 SENDING_BUFFER_TO_NEW_HANDLER, | 106 SENDING_BUFFER_TO_NEW_HANDLER, |
| 103 | 107 |
| 104 // The InterceptingResourceHandler has replaced its next ResourceHandler if | 108 // The InterceptingResourceHandler has replaced its next ResourceHandler if |
| 105 // needed, and has ensured the buffered read data was properly transmitted | 109 // needed, and has ensured the buffered read data was properly transmitted |
| 106 // to the new ResourceHandler. The InterceptingResourceHandler now acts as | 110 // to the new ResourceHandler. The InterceptingResourceHandler now acts as |
| 107 // a pass-through ResourceHandler. | 111 // a pass-through ResourceHandler. |
| 108 PASS_THROUGH, | 112 PASS_THROUGH, |
| 109 }; | 113 }; |
| 110 | 114 |
| 111 // Runs necessary operations depending on |state_|. Returns false when an | 115 // Runs necessary operations depending on |state_|. |
| 112 // error happens, and set |*defer| to true if the operation continues upon | 116 void DoLoop(); |
| 113 // return. | |
| 114 bool DoLoop(bool* defer); | |
| 115 | 117 |
| 116 // The return value and |defer| has the same meaning as DoLoop. | 118 void SendPayloadToOldHandler(); |
| 117 bool SendPayloadToOldHandler(bool* defer); | 119 void SendFirstReadBufferToNewHandler(); |
| 118 bool SendFirstReadBufferToNewHandler(bool* defer); | 120 void SendOnResponseStartedToNewHandler(); |
| 119 bool SendOnResponseStartedToNewHandler(bool* defer); | |
| 120 | 121 |
| 121 State state_ = State::STARTING; | 122 State state_ = State::STARTING; |
| 122 | 123 |
| 123 std::unique_ptr<ResourceHandler> new_handler_; | 124 std::unique_ptr<ResourceHandler> new_handler_; |
| 124 std::string payload_for_old_handler_; | 125 std::string payload_for_old_handler_; |
| 125 size_t payload_bytes_written_ = 0; | 126 size_t payload_bytes_written_ = 0; |
| 126 | 127 |
| 127 // Result of the first read, that may have to be passed to an alternate | 128 // Result of the first read, that may have to be passed to an alternate |
| 128 // ResourceHandler instead of the original ResourceHandler. | 129 // ResourceHandler instead of the original ResourceHandler. |
| 129 scoped_refptr<net::IOBuffer> first_read_buffer_; | 130 scoped_refptr<net::IOBuffer> first_read_buffer_; |
| 130 // Instead of |first_read_buffer_|, this handler creates a new IOBuffer with | 131 // Instead of |first_read_buffer_|, this handler creates a new IOBuffer with |
| 131 // the same size and return it to the client. | 132 // the same size and return it to the client. |
| 132 scoped_refptr<net::IOBuffer> first_read_buffer_double_; | 133 scoped_refptr<net::IOBuffer> first_read_buffer_double_; |
| 133 size_t first_read_buffer_size_ = 0; | 134 size_t first_read_buffer_size_ = 0; |
| 134 size_t first_read_buffer_bytes_read_ = 0; | 135 size_t first_read_buffer_bytes_read_ = 0; |
| 135 size_t first_read_buffer_bytes_written_ = 0; | 136 size_t first_read_buffer_bytes_written_ = 0; |
| 136 | 137 |
| 137 scoped_refptr<ResourceResponse> response_; | 138 scoped_refptr<ResourceResponse> response_; |
| 138 | 139 |
| 139 DISALLOW_COPY_AND_ASSIGN(InterceptingResourceHandler); | 140 DISALLOW_COPY_AND_ASSIGN(InterceptingResourceHandler); |
| 140 }; | 141 }; |
| 141 | 142 |
| 142 } // namespace content | 143 } // namespace content |
| 143 | 144 |
| 144 #endif // CONTENT_BROWSER_LOADER_INTERCEPTING_RESOURCE_HANDLER_H_ | 145 #endif // CONTENT_BROWSER_LOADER_INTERCEPTING_RESOURCE_HANDLER_H_ |
| OLD | NEW |