OLD | NEW |
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 "webkit/glue/media/simple_data_source.h" |
| 6 |
5 #include "base/message_loop.h" | 7 #include "base/message_loop.h" |
6 #include "base/process_util.h" | 8 #include "base/process_util.h" |
7 #include "media/base/filter_host.h" | 9 #include "media/base/filter_host.h" |
| 10 #include "net/base/data_url.h" |
8 #include "net/base/load_flags.h" | 11 #include "net/base/load_flags.h" |
9 #include "net/base/data_url.h" | |
10 #include "net/url_request/url_request_status.h" | 12 #include "net/url_request/url_request_status.h" |
11 #include "third_party/WebKit/WebKit/chromium/public/WebKit.h" | 13 #include "third_party/WebKit/WebKit/chromium/public/WebKit.h" |
12 #include "third_party/WebKit/WebKit/chromium/public/WebKitClient.h" | 14 #include "third_party/WebKit/WebKit/chromium/public/WebKitClient.h" |
13 #include "webkit/glue/media/simple_data_source.h" | |
14 #include "webkit/glue/webkit_glue.h" | 15 #include "webkit/glue/webkit_glue.h" |
15 | 16 |
16 namespace { | 17 namespace { |
17 | 18 |
18 const char kHttpScheme[] = "http"; | |
19 const char kHttpsScheme[] = "https"; | |
20 const char kDataScheme[] = "data"; | 19 const char kDataScheme[] = "data"; |
21 | 20 |
22 // A helper method that accepts only HTTP, HTTPS and FILE protocol. | |
23 bool IsDataProtocol(const GURL& url) { | |
24 return url.SchemeIs(kDataScheme); | |
25 } | |
26 | |
27 } // namespace | 21 } // namespace |
28 | 22 |
29 namespace webkit_glue { | 23 namespace webkit_glue { |
30 | 24 |
31 SimpleDataSource::SimpleDataSource( | 25 SimpleDataSource::SimpleDataSource( |
32 MessageLoop* render_loop, | 26 MessageLoop* render_loop, |
33 WebKit::WebFrame* frame) | 27 WebKit::WebFrame* frame) |
34 : render_loop_(render_loop), | 28 : render_loop_(render_loop), |
35 frame_(frame), | 29 frame_(frame), |
36 size_(-1), | 30 size_(-1), |
(...skipping 189 matching lines...) Loading... |
226 AutoLock auto_lock(lock_); | 220 AutoLock auto_lock(lock_); |
227 | 221 |
228 // We may have stopped. | 222 // We may have stopped. |
229 if (state_ == STOPPED) | 223 if (state_ == STOPPED) |
230 return; | 224 return; |
231 | 225 |
232 CHECK(frame_); | 226 CHECK(frame_); |
233 | 227 |
234 DCHECK_EQ(state_, INITIALIZING); | 228 DCHECK_EQ(state_, INITIALIZING); |
235 | 229 |
236 if (IsDataProtocol(url_)) { | 230 if (url_.SchemeIs(kDataScheme)) { |
237 // If this using data protocol, we just need to decode it. | 231 // If this using data protocol, we just need to decode it. |
238 std::string mime_type, charset; | 232 std::string mime_type, charset; |
239 bool success = net::DataURL::Parse(url_, &mime_type, &charset, &data_); | 233 bool success = net::DataURL::Parse(url_, &mime_type, &charset, &data_); |
240 | 234 |
241 // Don't care about the mime-type just proceed if decoding was successful. | 235 // Don't care about the mime-type just proceed if decoding was successful. |
242 size_ = data_.length(); | 236 size_ = data_.length(); |
243 DoneInitialization_Locked(success); | 237 DoneInitialization_Locked(success); |
244 } else { | 238 } else { |
245 // Prepare the request. | 239 // Prepare the request. |
246 WebKit::WebURLRequest request(url_); | 240 WebKit::WebURLRequest request(url_); |
247 | 241 |
248 frame_->setReferrerForRequest(request, WebKit::WebURL()); | 242 frame_->setReferrerForRequest(request, WebKit::WebURL()); |
249 // TODO(annacc): we should be using createAssociatedURLLoader() instead? | |
250 frame_->dispatchWillSendRequest(request); | |
251 | 243 |
252 // This flag is for unittests as we don't want to reset |url_loader| | 244 // This flag is for unittests as we don't want to reset |url_loader| |
253 if (!keep_test_loader_) | 245 if (!keep_test_loader_) |
254 url_loader_.reset(WebKit::webKitClient()->createURLLoader()); | 246 url_loader_.reset(frame_->createAssociatedURLLoader()); |
255 | 247 |
256 // Start the resource loading. | 248 // Start the resource loading. |
257 url_loader_->loadAsynchronously(request, this); | 249 url_loader_->loadAsynchronously(request, this); |
258 } | 250 } |
259 } | 251 } |
260 | 252 |
261 void SimpleDataSource::CancelTask() { | 253 void SimpleDataSource::CancelTask() { |
262 DCHECK(MessageLoop::current() == render_loop_); | 254 DCHECK(MessageLoop::current() == render_loop_); |
263 AutoLock auto_lock(lock_); | 255 AutoLock auto_lock(lock_); |
264 DCHECK_EQ(state_, STOPPED); | 256 DCHECK_EQ(state_, STOPPED); |
265 | 257 |
266 // Cancel any pending requests. | 258 // Cancel any pending requests. |
267 if (url_loader_.get()) { | 259 if (url_loader_.get()) { |
268 url_loader_->cancel(); | 260 url_loader_->cancel(); |
269 url_loader_.reset(); | 261 url_loader_.reset(); |
270 } | 262 } |
271 } | 263 } |
272 | 264 |
273 void SimpleDataSource::DoneInitialization_Locked(bool success) { | 265 void SimpleDataSource::DoneInitialization_Locked(bool success) { |
274 lock_.AssertAcquired(); | 266 lock_.AssertAcquired(); |
275 if (success) { | 267 if (success) { |
276 state_ = INITIALIZED; | 268 state_ = INITIALIZED; |
277 host()->SetTotalBytes(size_); | 269 host()->SetTotalBytes(size_); |
278 host()->SetBufferedBytes(size_); | 270 host()->SetBufferedBytes(size_); |
279 // If scheme is file or data, say we are loaded. | 271 // If scheme is file or data, say we are loaded. |
280 host()->SetLoaded(url_.SchemeIsFile() || IsDataProtocol(url_)); | 272 host()->SetLoaded(url_.SchemeIsFile() || url_.SchemeIs(kDataScheme)); |
281 } else { | 273 } else { |
282 host()->SetError(media::PIPELINE_ERROR_NETWORK); | 274 host()->SetError(media::PIPELINE_ERROR_NETWORK); |
283 } | 275 } |
284 initialize_callback_->Run(); | 276 initialize_callback_->Run(); |
285 initialize_callback_.reset(); | 277 initialize_callback_.reset(); |
286 } | 278 } |
287 | 279 |
288 } // namespace webkit_glue | 280 } // namespace webkit_glue |
OLD | NEW |