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

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: inlining + removing Is...Protocol methods and getting rid of GetBufferedFirstBytePosition 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";
37 const char kHttpsScheme[] = "https";
38 const char kDataScheme[] = "data";
39 const int64 kPositionNotSpecified = -1;
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
60 // Defines how long we should wait for more data before we declare a connection 15 // Defines how long we should wait for more data before we declare a connection
61 // timeout and start a new request. 16 // timeout and start a new request.
62 // TODO(hclam): Set it to 5s, calibrate this value later. 17 // TODO(hclam): Set it to 5s, calibrate this value later.
63 const int kTimeoutMilliseconds = 5000; 18 const int kTimeoutMilliseconds = 5000;
64 19
65 // Defines how many times we should try to read from a buffered resource loader 20 // 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 21 // 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. 22 // resource loader, a new one is created to be read.
68 const int kReadTrials = 3; 23 const int kReadTrials = 3;
69 24
70 // BufferedDataSource has an intermediate buffer, this value governs the initial 25 // 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 26 // size of that buffer. It is set to 32KB because this is a typical read size
72 // of FFmpeg. 27 // of FFmpeg.
73 const int kInitialReadBufferSize = 32768; 28 const int kInitialReadBufferSize = 32768;
74 29
75 // Returns true if |url| operates on HTTP protocol. 30 } // namespace
76 bool IsHttpProtocol(const GURL& url) {
77 return url.SchemeIs(kHttpScheme) || url.SchemeIs(kHttpsScheme);
78 }
79
80 bool IsDataProtocol(const GURL& url) {
81 return url.SchemeIs(kDataScheme);
82 }
83
84 } // namespace
85 31
86 namespace webkit_glue { 32 namespace webkit_glue {
87 33
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( 34 BufferedDataSource::BufferedDataSource(
607 MessageLoop* render_loop, 35 MessageLoop* render_loop,
608 WebFrame* frame) 36 WebFrame* frame)
609 : total_bytes_(kPositionNotSpecified), 37 : total_bytes_(kPositionNotSpecified),
610 loaded_(false), 38 loaded_(false),
611 streaming_(false), 39 streaming_(false),
612 frame_(frame), 40 frame_(frame),
613 single_origin_(true), 41 single_origin_(true),
614 loader_(NULL), 42 loader_(NULL),
615 network_activity_(false), 43 network_activity_(false),
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
675 103
676 // Post a task to complete the initialization task. 104 // Post a task to complete the initialization task.
677 render_loop_->PostTask(FROM_HERE, 105 render_loop_->PostTask(FROM_HERE,
678 NewRunnableMethod(this, &BufferedDataSource::InitializeTask)); 106 NewRunnableMethod(this, &BufferedDataSource::InitializeTask));
679 } 107 }
680 108
681 bool BufferedDataSource::IsUrlSupported(const std::string& url) { 109 bool BufferedDataSource::IsUrlSupported(const std::string& url) {
682 GURL gurl(url); 110 GURL gurl(url);
683 111
684 // This data source doesn't support data:// protocol so reject it. 112 // This data source doesn't support data:// protocol so reject it.
685 return IsProtocolSupportedForMedia(gurl) && !IsDataProtocol(gurl); 113 return IsProtocolSupportedForMedia(gurl) && !gurl.SchemeIs(kDataScheme);
686 } 114 }
687 115
688 void BufferedDataSource::Stop(media::FilterCallback* callback) { 116 void BufferedDataSource::Stop(media::FilterCallback* callback) {
689 { 117 {
690 AutoLock auto_lock(lock_); 118 AutoLock auto_lock(lock_);
691 stop_signal_received_ = true; 119 stop_signal_received_ = true;
692 } 120 }
693 if (callback) { 121 if (callback) {
694 callback->Run(); 122 callback->Run();
695 delete callback; 123 delete callback;
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after
755 return; 183 return;
756 184
757 // Kick starts the watch dog task that will handle connection timeout. 185 // Kick starts the watch dog task that will handle connection timeout.
758 // We run the watch dog 2 times faster the actual timeout so as to catch 186 // We run the watch dog 2 times faster the actual timeout so as to catch
759 // the timeout more accurately. 187 // the timeout more accurately.
760 watch_dog_timer_.Start( 188 watch_dog_timer_.Start(
761 GetTimeoutMilliseconds() / 2, 189 GetTimeoutMilliseconds() / 2,
762 this, 190 this,
763 &BufferedDataSource::WatchDogTask); 191 &BufferedDataSource::WatchDogTask);
764 192
765 if (IsHttpProtocol(url_)) { 193 if (url_.SchemeIs(kHttpScheme) || url_.SchemeIs(kHttpsScheme)) {
766 // Fetch only first 1024 bytes as this usually covers the header portion 194 // Fetch only first 1024 bytes as this usually covers the header portion
767 // of a media file that gives enough information about the codecs, etc. 195 // of a media file that gives enough information about the codecs, etc.
768 // This also serve as a probe to determine server capability to serve 196 // This also serve as a probe to determine server capability to serve
769 // range request. 197 // range request.
770 // TODO(hclam): Do some experiments for the best approach. 198 // TODO(hclam): Do some experiments for the best approach.
771 loader_ = CreateResourceLoader(0, 1024); 199 loader_ = CreateResourceLoader(0, 1024);
772 loader_->Start( 200 loader_->Start(
773 NewCallback(this, &BufferedDataSource::HttpInitialStartCallback), 201 NewCallback(this, &BufferedDataSource::HttpInitialStartCallback),
774 NewCallback(this, &BufferedDataSource::NetworkEventCallback), 202 NewCallback(this, &BufferedDataSource::NetworkEventCallback),
775 frame_); 203 frame_);
776 } else { 204 } else {
777 // For all other protocols, assume they support range request. We fetch 205 // For all other protocols, assume they support range request. We fetch
778 // the full range of the resource to obtain the instance size because 206 // the full range of the resource to obtain the instance size because
779 // we won't be served HTTP headers. 207 // we won't be served HTTP headers.
780 loader_ = CreateResourceLoader(-1, -1); 208 loader_ = CreateResourceLoader(kPositionNotSpecified, kPositionNotSpecified) ;
scherkus (not reviewing) 2010/12/16 18:09:42 >80 chars
781 loader_->Start( 209 loader_->Start(
782 NewCallback(this, &BufferedDataSource::NonHttpInitialStartCallback), 210 NewCallback(this, &BufferedDataSource::NonHttpInitialStartCallback),
783 NewCallback(this, &BufferedDataSource::NetworkEventCallback), 211 NewCallback(this, &BufferedDataSource::NetworkEventCallback),
784 frame_); 212 frame_);
785 } 213 }
786 } 214 }
787 215
788 void BufferedDataSource::ReadTask( 216 void BufferedDataSource::ReadTask(
789 int64 position, int read_size, uint8* buffer, 217 int64 position, int read_size, uint8* buffer,
790 media::DataSource::ReadCallback* read_callback) { 218 media::DataSource::ReadCallback* read_callback) {
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
833 261
834 void BufferedDataSource::RestartLoadingTask() { 262 void BufferedDataSource::RestartLoadingTask() {
835 DCHECK(MessageLoop::current() == render_loop_); 263 DCHECK(MessageLoop::current() == render_loop_);
836 if (stopped_on_render_loop_) 264 if (stopped_on_render_loop_)
837 return; 265 return;
838 266
839 // If there's no outstanding read then return early. 267 // If there's no outstanding read then return early.
840 if (!read_callback_.get()) 268 if (!read_callback_.get())
841 return; 269 return;
842 270
843 loader_ = CreateResourceLoader(read_position_, -1); 271 loader_ = CreateResourceLoader(read_position_, kPositionNotSpecified);
844 loader_->SetAllowDefer(!media_is_paused_); 272 loader_->SetAllowDefer(!media_is_paused_);
845 loader_->Start( 273 loader_->Start(
846 NewCallback(this, &BufferedDataSource::PartialReadStartCallback), 274 NewCallback(this, &BufferedDataSource::PartialReadStartCallback),
847 NewCallback(this, &BufferedDataSource::NetworkEventCallback), 275 NewCallback(this, &BufferedDataSource::NetworkEventCallback),
848 frame_); 276 frame_);
849 } 277 }
850 278
851 void BufferedDataSource::WatchDogTask() { 279 void BufferedDataSource::WatchDogTask() {
852 DCHECK(MessageLoop::current() == render_loop_); 280 DCHECK(MessageLoop::current() == render_loop_);
853 if (stopped_on_render_loop_) 281 if (stopped_on_render_loop_)
(...skipping 12 matching lines...) Expand all
866 // the whole pipeline may get destroyed... 294 // the whole pipeline may get destroyed...
867 if (read_attempts_ >= kReadTrials) 295 if (read_attempts_ >= kReadTrials)
868 return; 296 return;
869 297
870 ++read_attempts_; 298 ++read_attempts_;
871 read_submitted_time_ = base::Time::Now(); 299 read_submitted_time_ = base::Time::Now();
872 300
873 // Stops the current loader and creates a new resource loader and 301 // Stops the current loader and creates a new resource loader and
874 // retry the request. 302 // retry the request.
875 loader_->Stop(); 303 loader_->Stop();
876 loader_ = CreateResourceLoader(read_position_, -1); 304 loader_ = CreateResourceLoader(read_position_, kPositionNotSpecified);
877 loader_->SetAllowDefer(!media_is_paused_); 305 loader_->SetAllowDefer(!media_is_paused_);
878 loader_->Start( 306 loader_->Start(
879 NewCallback(this, &BufferedDataSource::PartialReadStartCallback), 307 NewCallback(this, &BufferedDataSource::PartialReadStartCallback),
880 NewCallback(this, &BufferedDataSource::NetworkEventCallback), 308 NewCallback(this, &BufferedDataSource::NetworkEventCallback),
881 frame_); 309 frame_);
882 } 310 }
883 311
884 void BufferedDataSource::SetPlaybackRateTask(float playback_rate) { 312 void BufferedDataSource::SetPlaybackRateTask(float playback_rate) {
885 DCHECK(MessageLoop::current() == render_loop_); 313 DCHECK(MessageLoop::current() == render_loop_);
886 DCHECK(loader_.get()); 314 DCHECK(loader_.get());
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
966 streaming_ = (instance_size == kPositionNotSpecified) || !partial_response; 394 streaming_ = (instance_size == kPositionNotSpecified) || !partial_response;
967 } else { 395 } else {
968 // TODO(hclam): In case of failure, we can retry several times. 396 // TODO(hclam): In case of failure, we can retry several times.
969 loader_->Stop(); 397 loader_->Stop();
970 } 398 }
971 399
972 if (error == net::ERR_INVALID_RESPONSE && using_range_request_) { 400 if (error == net::ERR_INVALID_RESPONSE && using_range_request_) {
973 // Assuming that the Range header was causing the problem. Retry without 401 // Assuming that the Range header was causing the problem. Retry without
974 // the Range header. 402 // the Range header.
975 using_range_request_ = false; 403 using_range_request_ = false;
976 loader_ = CreateResourceLoader(-1, -1); 404 loader_ = CreateResourceLoader(kPositionNotSpecified, kPositionNotSpecified) ;
scherkus (not reviewing) 2010/12/16 18:09:42 > 80 chars
977 loader_->Start( 405 loader_->Start(
978 NewCallback(this, &BufferedDataSource::HttpInitialStartCallback), 406 NewCallback(this, &BufferedDataSource::HttpInitialStartCallback),
979 NewCallback(this, &BufferedDataSource::NetworkEventCallback), 407 NewCallback(this, &BufferedDataSource::NetworkEventCallback),
980 frame_); 408 frame_);
981 return; 409 return;
982 } 410 }
983 411
984 // We need to prevent calling to filter host and running the callback if 412 // We need to prevent calling to filter host and running the callback if
985 // we have received the stop signal. We need to lock down the whole callback 413 // we have received the stop signal. We need to lock down the whole callback
986 // method to prevent bad things from happening. The reason behind this is 414 // method to prevent bad things from happening. The reason behind this is
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after
1124 void BufferedDataSource::NetworkEventCallback() { 552 void BufferedDataSource::NetworkEventCallback() {
1125 DCHECK(MessageLoop::current() == render_loop_); 553 DCHECK(MessageLoop::current() == render_loop_);
1126 DCHECK(loader_.get()); 554 DCHECK(loader_.get());
1127 555
1128 // In case of non-HTTP request we don't need to report network events, 556 // In case of non-HTTP request we don't need to report network events,
1129 // so return immediately. 557 // so return immediately.
1130 if (loaded_) 558 if (loaded_)
1131 return; 559 return;
1132 560
1133 bool network_activity = loader_->network_activity(); 561 bool network_activity = loader_->network_activity();
1134 int64 buffered_last_byte_position = loader_->GetBufferedLastBytePosition(); 562 int64 buffered_position = loader_->GetBufferedPosition();
1135 563
1136 // If we get an unspecified value, return immediately. 564 // If we get an unspecified value, return immediately.
1137 if (buffered_last_byte_position == kPositionNotSpecified) 565 if (buffered_position == kPositionNotSpecified)
1138 return; 566 return;
1139 567
1140 // We need to prevent calling to filter host and running the callback if 568 // We need to prevent calling to filter host and running the callback if
1141 // we have received the stop signal. We need to lock down the whole callback 569 // we have received the stop signal. We need to lock down the whole callback
1142 // method to prevent bad things from happening. The reason behind this is 570 // method to prevent bad things from happening. The reason behind this is
1143 // that we cannot guarantee tasks on render thread have completely stopped 571 // that we cannot guarantee tasks on render thread have completely stopped
1144 // when we receive the Stop() method call. So only way to solve this is to 572 // when we receive the Stop() method call. So only way to solve this is to
1145 // let tasks on render thread to run but make sure they don't call outside 573 // let tasks on render thread to run but make sure they don't call outside
1146 // this object when Stop() method is ever called. Locking this method is safe 574 // this object when Stop() method is ever called. Locking this method is safe
1147 // because |lock_| is only acquired in tasks on render thread. 575 // because |lock_| is only acquired in tasks on render thread.
1148 AutoLock auto_lock(lock_); 576 AutoLock auto_lock(lock_);
1149 if (stop_signal_received_) 577 if (stop_signal_received_)
1150 return; 578 return;
1151 579
1152 if (network_activity != network_activity_) { 580 if (network_activity != network_activity_) {
1153 network_activity_ = network_activity; 581 network_activity_ = network_activity;
1154 host()->SetNetworkActivity(network_activity); 582 host()->SetNetworkActivity(network_activity);
1155 } 583 }
1156 host()->SetBufferedBytes(buffered_last_byte_position + 1); 584 host()->SetBufferedBytes(buffered_position + 1);
1157 } 585 }
1158 586
1159 } // namespace webkit_glue 587 } // namespace webkit_glue
OLDNEW
« no previous file with comments | « webkit/glue/media/buffered_data_source.h ('k') | webkit/glue/media/buffered_data_source_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698