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