Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(18)

Side by Side Diff: webkit/glue/media/buffered_data_source.cc

Issue 5756004: Separate BufferedDataSource and BufferedResourceLoader into two files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: removing the constants and methods I added to http_util.h Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 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 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 #include "base/callback.h" 5 #include "webkit/glue/media/buffered_data_source.h"
6 #include "base/compiler_specific.h" 6
7 #include "base/format_macros.h"
8 #include "base/message_loop.h"
9 #include "base/process_util.h"
10 #include "base/stl_util-inl.h"
11 #include "base/string_number_conversions.h"
12 #include "base/string_util.h"
13 #include "media/base/filter_host.h" 7 #include "media/base/filter_host.h"
14 #include "media/base/media_format.h"
15 #include "net/base/load_flags.h"
16 #include "net/base/net_errors.h" 8 #include "net/base/net_errors.h"
17 #include "third_party/WebKit/WebKit/chromium/public/WebKit.h"
18 #include "third_party/WebKit/WebKit/chromium/public/WebKitClient.h"
19 #include "third_party/WebKit/WebKit/chromium/public/WebString.h"
20 #include "third_party/WebKit/WebKit/chromium/public/WebURLError.h"
21 #include "webkit/glue/media/buffered_data_source.h"
22 #include "webkit/glue/multipart_response_delegate.h"
23 #include "webkit/glue/webkit_glue.h" 9 #include "webkit/glue/webkit_glue.h"
24 #include "webkit/glue/webmediaplayer_impl.h"
25 10
26 using WebKit::WebFrame; 11 using WebKit::WebFrame;
27 using WebKit::WebString;
28 using WebKit::WebURLError;
29 using WebKit::WebURLLoader;
30 using WebKit::WebURLRequest;
31 using WebKit::WebURLResponse;
32 using webkit_glue::MultipartResponseDelegate;
33 12
34 namespace { 13 namespace {
35 14
36 const char kHttpScheme[] = "http"; 15 const char kHttpScheme[] = "http";
37 const char kHttpsScheme[] = "https"; 16 const char kHttpsScheme[] = "https";
38 const char kDataScheme[] = "data"; 17 const char kDataScheme[] = "data";
18
39 const int64 kPositionNotSpecified = -1; 19 const int64 kPositionNotSpecified = -1;
scherkus (not reviewing) 2010/12/15 16:00:36 I think we should avoid duplicating this but I hav
annacc 2010/12/15 18:34:03 Done. How do you feel about moving kHttpScheme,
scherkus (not reviewing) 2010/12/15 18:42:45 pretty indifferent.. as the other reviewers said t
40 const int kHttpOK = 200;
41 const int kHttpPartialContent = 206;
42
43 // Define the number of bytes in a megabyte.
44 const size_t kMegabyte = 1024 * 1024;
45
46 // Backward capacity of the buffer, by default 2MB.
47 const size_t kBackwardCapcity = 2 * kMegabyte;
48
49 // Forward capacity of the buffer, by default 10MB.
50 const size_t kForwardCapacity = 10 * kMegabyte;
51
52 // The threshold of bytes that we should wait until the data arrives in the
53 // future instead of restarting a new connection. This number is defined in the
54 // number of bytes, we should determine this value from typical connection speed
55 // and amount of time for a suitable wait. Now I just make a guess for this
56 // number to be 2MB.
57 // TODO(hclam): determine a better value for this.
58 const int kForwardWaitThreshold = 2 * kMegabyte;
59 20
60 // Defines how long we should wait for more data before we declare a connection 21 // Defines how long we should wait for more data before we declare a connection
61 // timeout and start a new request. 22 // timeout and start a new request.
62 // TODO(hclam): Set it to 5s, calibrate this value later. 23 // TODO(hclam): Set it to 5s, calibrate this value later.
63 const int kTimeoutMilliseconds = 5000; 24 const int kTimeoutMilliseconds = 5000;
64 25
65 // Defines how many times we should try to read from a buffered resource loader 26 // Defines how many times we should try to read from a buffered resource loader
66 // before we declare a read error. After each failure of read from a buffered 27 // before we declare a read error. After each failure of read from a buffered
67 // resource loader, a new one is created to be read. 28 // resource loader, a new one is created to be read.
68 const int kReadTrials = 3; 29 const int kReadTrials = 3;
69 30
70 // BufferedDataSource has an intermediate buffer, this value governs the initial 31 // BufferedDataSource has an intermediate buffer, this value governs the initial
71 // size of that buffer. It is set to 32KB because this is a typical read size 32 // size of that buffer. It is set to 32KB because this is a typical read size
72 // of FFmpeg. 33 // of FFmpeg.
73 const int kInitialReadBufferSize = 32768; 34 const int kInitialReadBufferSize = 32768;
74 35
75 // Returns true if |url| operates on HTTP protocol. 36 // Returns true if |url| operates on HTTP protocol.
76 bool IsHttpProtocol(const GURL& url) { 37 static bool IsHttpProtocol(const GURL& url) {
77 return url.SchemeIs(kHttpScheme) || url.SchemeIs(kHttpsScheme); 38 return url.SchemeIs(kHttpScheme) || url.SchemeIs(kHttpsScheme);
78 } 39 }
79 40
80 bool IsDataProtocol(const GURL& url) { 41 static bool IsDataProtocol(const GURL& url) {
81 return url.SchemeIs(kDataScheme); 42 return url.SchemeIs(kDataScheme);
82 } 43 }
83 44
84 } // namespace 45 } // namespace
85 46
86 namespace webkit_glue { 47 namespace webkit_glue {
87 48
88 /////////////////////////////////////////////////////////////////////////////
89 // BufferedResourceLoader
90 BufferedResourceLoader::BufferedResourceLoader(
91 const GURL& url,
92 int64 first_byte_position,
93 int64 last_byte_position)
94 : buffer_(new media::SeekableBuffer(kBackwardCapcity, kForwardCapacity)),
95 deferred_(false),
96 defer_allowed_(true),
97 completed_(false),
98 range_requested_(false),
99 partial_response_(false),
100 url_(url),
101 first_byte_position_(first_byte_position),
102 last_byte_position_(last_byte_position),
103 start_callback_(NULL),
104 offset_(0),
105 content_length_(kPositionNotSpecified),
106 instance_size_(kPositionNotSpecified),
107 read_callback_(NULL),
108 read_position_(0),
109 read_size_(0),
110 read_buffer_(NULL),
111 first_offset_(0),
112 last_offset_(0),
113 keep_test_loader_(false) {
114 }
115
116 BufferedResourceLoader::~BufferedResourceLoader() {
117 if (!completed_ && url_loader_.get())
118 url_loader_->cancel();
119 }
120
121 void BufferedResourceLoader::Start(net::CompletionCallback* start_callback,
122 NetworkEventCallback* event_callback,
123 WebFrame* frame) {
124 // Make sure we have not started.
125 DCHECK(!start_callback_.get());
126 DCHECK(!event_callback_.get());
127 DCHECK(start_callback);
128 DCHECK(event_callback);
129 CHECK(frame);
130
131 start_callback_.reset(start_callback);
132 event_callback_.reset(event_callback);
133
134 if (first_byte_position_ != kPositionNotSpecified) {
135 range_requested_ = true;
136 // TODO(hclam): server may not support range request so |offset_| may not
137 // equal to |first_byte_position_|.
138 offset_ = first_byte_position_;
139 }
140
141 // Increment the reference count right before we start the request. This
142 // reference will be release when this request has ended.
143 AddRef();
144
145 // Prepare the request.
146 WebURLRequest request(url_);
147 request.setHTTPHeaderField(WebString::fromUTF8("Range"),
148 WebString::fromUTF8(GenerateHeaders(
149 first_byte_position_,
150 last_byte_position_)));
151 frame->setReferrerForRequest(request, WebKit::WebURL());
152 // TODO(annacc): we should be using createAssociatedURLLoader() instead?
153 frame->dispatchWillSendRequest(request);
154
155 // This flag is for unittests as we don't want to reset |url_loader|
156 if (!keep_test_loader_)
157 url_loader_.reset(WebKit::webKitClient()->createURLLoader());
158
159 // Start the resource loading.
160 url_loader_->loadAsynchronously(request, this);
161 }
162
163 void BufferedResourceLoader::Stop() {
164 // Reset callbacks.
165 start_callback_.reset();
166 event_callback_.reset();
167 read_callback_.reset();
168
169 // Use the internal buffer to signal that we have been stopped.
170 // TODO(hclam): Not so pretty to do this.
171 if (!buffer_.get())
172 return;
173
174 // Destroy internal buffer.
175 buffer_.reset();
176
177 if (url_loader_.get()) {
178 if (deferred_)
179 url_loader_->setDefersLoading(false);
180 deferred_ = false;
181
182 if (!completed_) {
183 url_loader_->cancel();
184 completed_ = true;
185 }
186 }
187 }
188
189 void BufferedResourceLoader::Read(int64 position,
190 int read_size,
191 uint8* buffer,
192 net::CompletionCallback* read_callback) {
193 DCHECK(!read_callback_.get());
194 DCHECK(buffer_.get());
195 DCHECK(read_callback);
196 DCHECK(buffer);
197
198 // Save the parameter of reading.
199 read_callback_.reset(read_callback);
200 read_position_ = position;
201 read_size_ = read_size;
202 read_buffer_ = buffer;
203
204 // If read position is beyond the instance size, we cannot read there.
205 if (instance_size_ != kPositionNotSpecified &&
206 instance_size_ <= read_position_) {
207 DoneRead(0);
208 return;
209 }
210
211 // Make sure |offset_| and |read_position_| does not differ by a large
212 // amount.
213 if (read_position_ > offset_ + kint32max ||
214 read_position_ < offset_ + kint32min) {
215 DoneRead(net::ERR_CACHE_MISS);
216 return;
217 }
218
219 // Prepare the parameters.
220 first_offset_ = static_cast<int>(read_position_ - offset_);
221 last_offset_ = first_offset_ + read_size_;
222
223 // If we can serve the request now, do the actual read.
224 if (CanFulfillRead()) {
225 ReadInternal();
226 DisableDeferIfNeeded();
227 return;
228 }
229
230 // If we expected the read request to be fulfilled later, returns
231 // immediately and let more data to flow in.
232 if (WillFulfillRead())
233 return;
234
235 // Make a callback to report failure.
236 DoneRead(net::ERR_CACHE_MISS);
237 }
238
239 int64 BufferedResourceLoader::GetBufferedFirstBytePosition() {
240 if (buffer_.get())
241 return offset_ - static_cast<int>(buffer_->backward_bytes());
242 return kPositionNotSpecified;
243 }
244
245 int64 BufferedResourceLoader::GetBufferedLastBytePosition() {
246 if (buffer_.get())
247 return offset_ + static_cast<int>(buffer_->forward_bytes()) - 1;
248 return kPositionNotSpecified;
249 }
250
251 void BufferedResourceLoader::SetAllowDefer(bool is_allowed) {
252 defer_allowed_ = is_allowed;
253 DisableDeferIfNeeded();
254 }
255
256 void BufferedResourceLoader::SetURLLoaderForTest(WebURLLoader* mock_loader) {
257 url_loader_.reset(mock_loader);
258 keep_test_loader_ = true;
259 }
260
261 /////////////////////////////////////////////////////////////////////////////
262 // BufferedResourceLoader, WebKit::WebURLLoaderClient implementations.
263 void BufferedResourceLoader::willSendRequest(
264 WebURLLoader* loader,
265 WebURLRequest& newRequest,
266 const WebURLResponse& redirectResponse) {
267
268 // The load may have been stopped and |start_callback| is destroyed.
269 // In this case we shouldn't do anything.
270 if (!start_callback_.get()) {
271 // Set the url in the request to an invalid value (empty url).
272 newRequest.setURL(WebKit::WebURL());
273 return;
274 }
275
276 if (!IsProtocolSupportedForMedia(newRequest.url())) {
277 // Set the url in the request to an invalid value (empty url).
278 newRequest.setURL(WebKit::WebURL());
279 DoneStart(net::ERR_ADDRESS_INVALID);
280 Stop();
281 return;
282 }
283
284 url_ = newRequest.url();
285 }
286
287 void BufferedResourceLoader::didSendData(
288 WebURLLoader* loader,
289 unsigned long long bytes_sent,
290 unsigned long long total_bytes_to_be_sent) {
291 NOTIMPLEMENTED();
292 }
293
294 void BufferedResourceLoader::didReceiveResponse(
295 WebURLLoader* loader,
296 const WebURLResponse& response) {
297
298 // The loader may have been stopped and |start_callback| is destroyed.
299 // In this case we shouldn't do anything.
300 if (!start_callback_.get())
301 return;
302
303 // We make a strong assumption that when we reach here we have either
304 // received a response from HTTP/HTTPS protocol or the request was
305 // successful (in particular range request). So we only verify the partial
306 // response for HTTP and HTTPS protocol.
307 if (IsHttpProtocol(url_)) {
308 int error = net::OK;
309
310 if (response.httpStatusCode() == kHttpPartialContent)
311 partial_response_ = true;
312
313 if (range_requested_ && partial_response_) {
314 // If we have verified the partial response and it is correct, we will
315 // return net::OK.
316 if (!VerifyPartialResponse(response))
317 error = net::ERR_INVALID_RESPONSE;
318 } else if (response.httpStatusCode() != kHttpOK) {
319 // We didn't request a range but server didn't reply with "200 OK".
320 error = net::ERR_FAILED;
321 }
322
323 if (error != net::OK) {
324 DoneStart(error);
325 Stop();
326 return;
327 }
328 } else {
329 // For any protocol other than HTTP and HTTPS, assume range request is
330 // always fulfilled.
331 partial_response_ = range_requested_;
332 }
333
334 // Expected content length can be -1, in that case |content_length_| is
335 // not specified and this is a streaming response.
336 content_length_ = response.expectedContentLength();
337
338 // If we have not requested a range, then the size of the instance is equal
339 // to the content length.
340 if (!partial_response_)
341 instance_size_ = content_length_;
342
343 // Calls with a successful response.
344 DoneStart(net::OK);
345 }
346
347 void BufferedResourceLoader::didReceiveData(
348 WebURLLoader* loader,
349 const char* data,
350 int data_length) {
351 DCHECK(!completed_);
352 DCHECK_GT(data_length, 0);
353
354 // If this loader has been stopped, |buffer_| would be destroyed.
355 // In this case we shouldn't do anything.
356 if (!buffer_.get())
357 return;
358
359 // Writes more data to |buffer_|.
360 buffer_->Append(reinterpret_cast<const uint8*>(data), data_length);
361
362 // If there is an active read request, try to fulfill the request.
363 if (HasPendingRead() && CanFulfillRead()) {
364 ReadInternal();
365 } else if (!defer_allowed_) {
366 // If we're not allowed to defer, slide the buffer window forward instead
367 // of deferring.
368 if (buffer_->forward_bytes() > buffer_->forward_capacity()) {
369 size_t excess = buffer_->forward_bytes() - buffer_->forward_capacity();
370 bool success = buffer_->Seek(excess);
371 DCHECK(success);
372 offset_ += first_offset_ + excess;
373 }
374 }
375
376 // At last see if the buffer is full and we need to defer the downloading.
377 EnableDeferIfNeeded();
378
379 // Notify that we have received some data.
380 NotifyNetworkEvent();
381 }
382
383 void BufferedResourceLoader::didDownloadData(
384 WebKit::WebURLLoader* loader,
385 int dataLength) {
386 NOTIMPLEMENTED();
387 }
388
389 void BufferedResourceLoader::didReceiveCachedMetadata(
390 WebURLLoader* loader,
391 const char* data,
392 int data_length) {
393 NOTIMPLEMENTED();
394 }
395
396 void BufferedResourceLoader::didFinishLoading(
397 WebURLLoader* loader,
398 double finishTime) {
399 DCHECK(!completed_);
400 completed_ = true;
401
402 // If there is a start callback, calls it.
403 if (start_callback_.get()) {
404 DoneStart(net::OK);
405 }
406
407 // If there is a pending read but the request has ended, returns with what
408 // we have.
409 if (HasPendingRead()) {
410 // Make sure we have a valid buffer before we satisfy a read request.
411 DCHECK(buffer_.get());
412
413 // Try to fulfill with what is in the buffer.
414 if (CanFulfillRead())
415 ReadInternal();
416 else
417 DoneRead(net::ERR_CACHE_MISS);
418 }
419
420 // There must not be any outstanding read request.
421 DCHECK(!HasPendingRead());
422
423 // Notify that network response is completed.
424 NotifyNetworkEvent();
425
426 url_loader_.reset();
427 Release();
428 }
429
430 void BufferedResourceLoader::didFail(
431 WebURLLoader* loader,
432 const WebURLError& error) {
433 DCHECK(!completed_);
434 completed_ = true;
435
436 // If there is a start callback, calls it.
437 if (start_callback_.get()) {
438 DoneStart(error.reason);
439 }
440
441 // If there is a pending read but the request failed, return with the
442 // reason for the error.
443 if (HasPendingRead()) {
444 DoneRead(error.reason);
445 }
446
447 // Notify that network response is completed.
448 NotifyNetworkEvent();
449
450 url_loader_.reset();
451 Release();
452 }
453
454 /////////////////////////////////////////////////////////////////////////////
455 // BufferedResourceLoader, private
456 void BufferedResourceLoader::EnableDeferIfNeeded() {
457 if (!defer_allowed_)
458 return;
459
460 if (!deferred_ &&
461 buffer_->forward_bytes() >= buffer_->forward_capacity()) {
462 deferred_ = true;
463
464 if (url_loader_.get())
465 url_loader_->setDefersLoading(true);
466
467 NotifyNetworkEvent();
468 }
469 }
470
471 void BufferedResourceLoader::DisableDeferIfNeeded() {
472 if (deferred_ &&
473 (!defer_allowed_ ||
474 buffer_->forward_bytes() < buffer_->forward_capacity() / 2)) {
475 deferred_ = false;
476
477 if (url_loader_.get())
478 url_loader_->setDefersLoading(false);
479
480 NotifyNetworkEvent();
481 }
482 }
483
484 bool BufferedResourceLoader::CanFulfillRead() {
485 // If we are reading too far in the backward direction.
486 if (first_offset_ < 0 &&
487 first_offset_ + static_cast<int>(buffer_->backward_bytes()) < 0)
488 return false;
489
490 // If the start offset is too far ahead.
491 if (first_offset_ >= static_cast<int>(buffer_->forward_bytes()))
492 return false;
493
494 // At the point, we verified that first byte requested is within the buffer.
495 // If the request has completed, then just returns with what we have now.
496 if (completed_)
497 return true;
498
499 // If the resource request is still active, make sure the whole requested
500 // range is covered.
501 if (last_offset_ > static_cast<int>(buffer_->forward_bytes()))
502 return false;
503
504 return true;
505 }
506
507 bool BufferedResourceLoader::WillFulfillRead() {
508 // Reading too far in the backward direction.
509 if (first_offset_ < 0 &&
510 first_offset_ + static_cast<int>(buffer_->backward_bytes()) < 0)
511 return false;
512
513 // Try to read too far ahead.
514 if (last_offset_ > kForwardWaitThreshold)
515 return false;
516
517 // The resource request has completed, there's no way we can fulfill the
518 // read request.
519 if (completed_)
520 return false;
521
522 return true;
523 }
524
525 void BufferedResourceLoader::ReadInternal() {
526 // Seek to the first byte requested.
527 bool ret = buffer_->Seek(first_offset_);
528 DCHECK(ret);
529
530 // Then do the read.
531 int read = static_cast<int>(buffer_->Read(read_buffer_, read_size_));
532 offset_ += first_offset_ + read;
533
534 // And report with what we have read.
535 DoneRead(read);
536 }
537
538 bool BufferedResourceLoader::VerifyPartialResponse(
539 const WebURLResponse& response) {
540 int first_byte_position, last_byte_position, instance_size;
541
542 if (!MultipartResponseDelegate::ReadContentRanges(response,
543 &first_byte_position,
544 &last_byte_position,
545 &instance_size)) {
546 return false;
547 }
548
549 if (instance_size != kPositionNotSpecified) {
550 instance_size_ = instance_size;
551 }
552
553 if (first_byte_position_ != kPositionNotSpecified &&
554 first_byte_position_ != first_byte_position) {
555 return false;
556 }
557
558 // TODO(hclam): I should also check |last_byte_position|, but since
559 // we will never make such a request that it is ok to leave it unimplemented.
560 return true;
561 }
562
563 std::string BufferedResourceLoader::GenerateHeaders(
564 int64 first_byte_position,
565 int64 last_byte_position) {
566 // Construct the value for the range header.
567 std::string header;
568 if (first_byte_position > kPositionNotSpecified &&
569 last_byte_position > kPositionNotSpecified) {
570 if (first_byte_position <= last_byte_position) {
571 header = base::StringPrintf("bytes=%" PRId64 "-%" PRId64,
572 first_byte_position,
573 last_byte_position);
574 }
575 } else if (first_byte_position > kPositionNotSpecified) {
576 header = base::StringPrintf("bytes=%" PRId64 "-",
577 first_byte_position);
578 } else if (last_byte_position > kPositionNotSpecified) {
579 NOTIMPLEMENTED() << "Suffix range not implemented";
580 }
581 return header;
582 }
583
584 void BufferedResourceLoader::DoneRead(int error) {
585 read_callback_->RunWithParams(Tuple1<int>(error));
586 read_callback_.reset();
587 read_position_ = 0;
588 read_size_ = 0;
589 read_buffer_ = NULL;
590 first_offset_ = 0;
591 last_offset_ = 0;
592 }
593
594 void BufferedResourceLoader::DoneStart(int error) {
595 start_callback_->RunWithParams(Tuple1<int>(error));
596 start_callback_.reset();
597 }
598
599 void BufferedResourceLoader::NotifyNetworkEvent() {
600 if (event_callback_.get())
601 event_callback_->Run();
602 }
603
604 /////////////////////////////////////////////////////////////////////////////
605 // BufferedDataSource
606 BufferedDataSource::BufferedDataSource( 49 BufferedDataSource::BufferedDataSource(
607 MessageLoop* render_loop, 50 MessageLoop* render_loop,
608 WebFrame* frame) 51 WebFrame* frame)
609 : total_bytes_(kPositionNotSpecified), 52 : total_bytes_(kPositionNotSpecified),
610 loaded_(false), 53 loaded_(false),
611 streaming_(false), 54 streaming_(false),
612 frame_(frame), 55 frame_(frame),
613 single_origin_(true), 56 single_origin_(true),
614 loader_(NULL), 57 loader_(NULL),
615 network_activity_(false), 58 network_activity_(false),
(...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after
1150 return; 593 return;
1151 594
1152 if (network_activity != network_activity_) { 595 if (network_activity != network_activity_) {
1153 network_activity_ = network_activity; 596 network_activity_ = network_activity;
1154 host()->SetNetworkActivity(network_activity); 597 host()->SetNetworkActivity(network_activity);
1155 } 598 }
1156 host()->SetBufferedBytes(buffered_last_byte_position + 1); 599 host()->SetBufferedBytes(buffered_last_byte_position + 1);
1157 } 600 }
1158 601
1159 } // namespace webkit_glue 602 } // namespace webkit_glue
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698