OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef WEBKIT_GLUE_MEDIA_BUFFERED_RESOURCE_LOADER_H_ |
| 6 #define WEBKIT_GLUE_MEDIA_BUFFERED_RESOURCE_LOADER_H_ |
| 7 |
| 8 #include <string> |
| 9 |
| 10 #include "base/callback.h" |
| 11 #include "base/lock.h" |
| 12 #include "base/scoped_ptr.h" |
| 13 #include "base/timer.h" |
| 14 #include "googleurl/src/gurl.h" |
| 15 #include "media/base/seekable_buffer.h" |
| 16 #include "net/base/file_stream.h" |
| 17 #include "third_party/WebKit/WebKit/chromium/public/WebFrame.h" |
| 18 #include "third_party/WebKit/WebKit/chromium/public/WebURLLoader.h" |
| 19 #include "third_party/WebKit/WebKit/chromium/public/WebURLLoaderClient.h" |
| 20 #include "third_party/WebKit/WebKit/chromium/public/WebURLRequest.h" |
| 21 #include "webkit/glue/media/web_data_source.h" |
| 22 #include "webkit/glue/webmediaplayer_impl.h" |
| 23 |
| 24 namespace webkit_glue { |
| 25 |
| 26 const int64 kPositionNotSpecified = -1; |
| 27 |
| 28 const char kHttpScheme[] = "http"; |
| 29 const char kHttpsScheme[] = "https"; |
| 30 const char kDataScheme[] = "data"; |
| 31 |
| 32 // This class works inside demuxer thread and render thread. It contains a |
| 33 // WebURLLoader and does the actual resource loading. This object does |
| 34 // buffering internally, it defers the resource loading if buffer is full |
| 35 // and un-defers the resource loading if it is under buffered. |
| 36 class BufferedResourceLoader : |
| 37 public base::RefCountedThreadSafe<BufferedResourceLoader>, |
| 38 public WebKit::WebURLLoaderClient { |
| 39 public: |
| 40 typedef Callback0::Type NetworkEventCallback; |
| 41 |
| 42 // |url| - URL for the resource to be loaded. |
| 43 // |first_byte_position| - First byte to start loading from, |
| 44 // |kPositionNotSpecified| for not specified. |
| 45 // |last_byte_position| - Last byte to be loaded, |
| 46 // |kPositionNotSpecified| for not specified. |
| 47 BufferedResourceLoader(const GURL& url, |
| 48 int64 first_byte_position, |
| 49 int64 last_byte_position); |
| 50 |
| 51 // Start the resource loading with the specified URL and range. |
| 52 // This method operates in asynchronous mode. Once there's a response from the |
| 53 // server, success or fail |callback| is called with the result. |
| 54 // |callback| is called with the following values: |
| 55 // - net::OK |
| 56 // The request has started successfully. |
| 57 // - net::ERR_FAILED |
| 58 // The request has failed because of an error with the network. |
| 59 // - net::ERR_INVALID_RESPONSE |
| 60 // An invalid response is received from the server. |
| 61 // - (Anything else) |
| 62 // An error code that indicates the request has failed. |
| 63 // |event_callback| is called when the response is completed, data is |
| 64 // received, the request is suspended or resumed. |
| 65 virtual void Start(net::CompletionCallback* callback, |
| 66 NetworkEventCallback* event_callback, |
| 67 WebKit::WebFrame* frame); |
| 68 |
| 69 // Stop this loader, cancels and request and release internal buffer. |
| 70 virtual void Stop(); |
| 71 |
| 72 // Reads the specified |read_size| from |position| into |buffer| and when |
| 73 // the operation is done invoke |callback| with number of bytes read or an |
| 74 // error code. |
| 75 // |callback| is called with the following values: |
| 76 // - (Anything greater than or equal 0) |
| 77 // Read was successful with the indicated number of bytes read. |
| 78 // - net::ERR_FAILED |
| 79 // The read has failed because of an error with the network. |
| 80 // - net::ERR_CACHE_MISS |
| 81 // The read was made too far away from the current buffered position. |
| 82 virtual void Read(int64 position, int read_size, |
| 83 uint8* buffer, net::CompletionCallback* callback); |
| 84 |
| 85 // Returns the position of the last byte buffered. Returns |
| 86 // |kPositionNotSpecified| if such value is not available. |
| 87 virtual int64 GetBufferedPosition(); |
| 88 |
| 89 // Sets whether deferring data is allowed or disallowed. |
| 90 virtual void SetAllowDefer(bool is_allowed); |
| 91 |
| 92 // Gets the content length in bytes of the instance after this loader has been |
| 93 // started. If this value is |kPositionNotSpecified|, then content length is |
| 94 // unknown. |
| 95 virtual int64 content_length(); |
| 96 |
| 97 // Gets the original size of the file requested. If this value is |
| 98 // |kPositionNotSpecified|, then the size is unknown. |
| 99 virtual int64 instance_size(); |
| 100 |
| 101 // Returns true if the response for this loader is a partial response. |
| 102 // It means a 206 response in HTTP/HTTPS protocol. |
| 103 virtual bool partial_response(); |
| 104 |
| 105 // Returns true if network is currently active. |
| 106 virtual bool network_activity(); |
| 107 |
| 108 // Returns resulting URL. |
| 109 virtual const GURL& url(); |
| 110 |
| 111 // Used to inject a mock used for unittests. |
| 112 virtual void SetURLLoaderForTest(WebKit::WebURLLoader* mock_loader); |
| 113 |
| 114 ///////////////////////////////////////////////////////////////////////////// |
| 115 // WebKit::WebURLLoaderClient implementations. |
| 116 virtual void willSendRequest( |
| 117 WebKit::WebURLLoader* loader, |
| 118 WebKit::WebURLRequest& newRequest, |
| 119 const WebKit::WebURLResponse& redirectResponse); |
| 120 virtual void didSendData( |
| 121 WebKit::WebURLLoader* loader, |
| 122 unsigned long long bytesSent, |
| 123 unsigned long long totalBytesToBeSent); |
| 124 virtual void didReceiveResponse( |
| 125 WebKit::WebURLLoader* loader, |
| 126 const WebKit::WebURLResponse& response); |
| 127 virtual void didDownloadData( |
| 128 WebKit::WebURLLoader* loader, |
| 129 int dataLength); |
| 130 virtual void didReceiveData( |
| 131 WebKit::WebURLLoader* loader, |
| 132 const char* data, |
| 133 int dataLength); |
| 134 virtual void didReceiveCachedMetadata( |
| 135 WebKit::WebURLLoader* loader, |
| 136 const char* data, int dataLength); |
| 137 virtual void didFinishLoading( |
| 138 WebKit::WebURLLoader* loader, |
| 139 double finishTime); |
| 140 virtual void didFail( |
| 141 WebKit::WebURLLoader* loader, |
| 142 const WebKit::WebURLError&); |
| 143 |
| 144 protected: |
| 145 friend class base::RefCountedThreadSafe<BufferedResourceLoader>; |
| 146 |
| 147 virtual ~BufferedResourceLoader(); |
| 148 |
| 149 private: |
| 150 friend class BufferedResourceLoaderTest; |
| 151 |
| 152 // Defer the resource loading if the buffer is full. |
| 153 void EnableDeferIfNeeded(); |
| 154 |
| 155 // Disable defer loading if we are under-buffered. |
| 156 void DisableDeferIfNeeded(); |
| 157 |
| 158 // Returns true if the current read request can be fulfilled by what is in |
| 159 // the buffer. |
| 160 bool CanFulfillRead(); |
| 161 |
| 162 // Returns true if the current read request will be fulfilled in the future. |
| 163 bool WillFulfillRead(); |
| 164 |
| 165 // Method that does the actual read and calls the |read_callback_|, assuming |
| 166 // the request range is in |buffer_|. |
| 167 void ReadInternal(); |
| 168 |
| 169 // If we have made a range request, verify the response from the server. |
| 170 bool VerifyPartialResponse(const WebKit::WebURLResponse& response); |
| 171 |
| 172 // Returns the value for a range request header using parameters |
| 173 // |first_byte_position| and |last_byte_position|. Negative numbers other |
| 174 // than |kPositionNotSpecified| are not allowed for |first_byte_position| and |
| 175 // |last_byte_position|. |first_byte_position| should always be less than or |
| 176 // equal to |last_byte_position| if they are both not |kPositionNotSpecified|. |
| 177 // Empty string is returned on invalid parameters. |
| 178 std::string GenerateHeaders(int64 first_byte_position, |
| 179 int64 last_byte_position); |
| 180 |
| 181 // Done with read. Invokes the read callback and reset parameters for the |
| 182 // read request. |
| 183 void DoneRead(int error); |
| 184 |
| 185 // Done with start. Invokes the start callback and reset it. |
| 186 void DoneStart(int error); |
| 187 |
| 188 // Calls |event_callback_| in terms of a network event. |
| 189 void NotifyNetworkEvent(); |
| 190 |
| 191 bool HasPendingRead() { return read_callback_.get() != NULL; } |
| 192 |
| 193 // A sliding window of buffer. |
| 194 scoped_ptr<media::SeekableBuffer> buffer_; |
| 195 |
| 196 // True if resource loading was deferred. |
| 197 bool deferred_; |
| 198 |
| 199 // True if resource loader is allowed to defer, false otherwise. |
| 200 bool defer_allowed_; |
| 201 |
| 202 // True if resource loading has completed. |
| 203 bool completed_; |
| 204 |
| 205 // True if a range request was made. |
| 206 bool range_requested_; |
| 207 |
| 208 // True if response data received is a partial range. |
| 209 bool partial_response_; |
| 210 |
| 211 // Does the work of loading and sends data back to this client. |
| 212 scoped_ptr<WebKit::WebURLLoader> url_loader_; |
| 213 |
| 214 GURL url_; |
| 215 int64 first_byte_position_; |
| 216 int64 last_byte_position_; |
| 217 |
| 218 // Callback method that listens to network events. |
| 219 scoped_ptr<NetworkEventCallback> event_callback_; |
| 220 |
| 221 // Members used during request start. |
| 222 scoped_ptr<net::CompletionCallback> start_callback_; |
| 223 int64 offset_; |
| 224 int64 content_length_; |
| 225 int64 instance_size_; |
| 226 |
| 227 // Members used during a read operation. They should be reset after each |
| 228 // read has completed or failed. |
| 229 scoped_ptr<net::CompletionCallback> read_callback_; |
| 230 int64 read_position_; |
| 231 int read_size_; |
| 232 uint8* read_buffer_; |
| 233 |
| 234 // Offsets of the requested first byte and last byte in |buffer_|. They are |
| 235 // written by VerifyRead(). |
| 236 int first_offset_; |
| 237 int last_offset_; |
| 238 |
| 239 // Used to ensure mocks for unittests are used instead of reset in Start(). |
| 240 bool keep_test_loader_; |
| 241 |
| 242 DISALLOW_COPY_AND_ASSIGN(BufferedResourceLoader); |
| 243 }; |
| 244 |
| 245 } // namespace webkit_glue |
| 246 |
| 247 #endif // WEBKIT_GLUE_MEDIA_BUFFERED_RESOURCE_LOADER_H_ |
OLD | NEW |