OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "content/browser/loader/stream_writer.h" | 5 #include "content/browser/loader/stream_writer.h" |
6 | 6 |
7 #include "base/guid.h" | 7 #include "base/guid.h" |
8 #include "content/browser/loader/resource_controller.h" | 8 #include "content/browser/loader/resource_controller.h" |
9 #include "content/browser/streams/stream.h" | 9 #include "content/browser/streams/stream.h" |
10 #include "content/browser/streams/stream_registry.h" | 10 #include "content/browser/streams/stream_registry.h" |
11 #include "net/base/io_buffer.h" | 11 #include "net/base/io_buffer.h" |
12 #include "url/gurl.h" | 12 #include "url/gurl.h" |
13 #include "url/url_constants.h" | 13 #include "url/url_constants.h" |
14 | 14 |
15 namespace content { | 15 namespace content { |
16 | 16 |
17 StreamWriter::StreamWriter() : controller_(nullptr), immediate_mode_(false) { | 17 StreamWriter::StreamWriter() : immediate_mode_(false) {} |
18 } | |
19 | 18 |
20 StreamWriter::~StreamWriter() { | 19 StreamWriter::~StreamWriter() { |
21 if (stream_.get()) | 20 if (stream_.get()) |
22 Finalize(0); | 21 Finalize(0); |
23 } | 22 } |
24 | 23 |
25 void StreamWriter::InitializeStream(StreamRegistry* registry, | 24 void StreamWriter::InitializeStream(StreamRegistry* registry, |
26 const GURL& origin) { | 25 const GURL& origin, |
| 26 const base::Closure& cancel_callback) { |
| 27 cancel_callback_ = cancel_callback; |
27 DCHECK(!stream_.get()); | 28 DCHECK(!stream_.get()); |
28 | 29 |
29 // TODO(tyoshino): Find a way to share this with the blob URL creation in | 30 // TODO(tyoshino): Find a way to share this with the blob URL creation in |
30 // WebKit. | 31 // WebKit. |
31 GURL url(std::string(url::kBlobScheme) + ":" + origin.spec() + | 32 GURL url(std::string(url::kBlobScheme) + ":" + origin.spec() + |
32 base::GenerateGUID()); | 33 base::GenerateGUID()); |
33 stream_ = new Stream(registry, this, url); | 34 stream_ = new Stream(registry, this, url); |
34 } | 35 } |
35 | 36 |
36 void StreamWriter::OnWillRead(scoped_refptr<net::IOBuffer>* buf, | 37 void StreamWriter::OnWillRead(scoped_refptr<net::IOBuffer>* buf, |
37 int* buf_size, | 38 int* buf_size, |
38 int min_size) { | 39 int min_size) { |
39 static const int kReadBufSize = 32768; | 40 static const int kReadBufSize = 32768; |
40 | 41 |
41 DCHECK(buf); | 42 DCHECK(buf); |
42 DCHECK(buf_size); | 43 DCHECK(buf_size); |
43 DCHECK_LE(min_size, kReadBufSize); | 44 DCHECK_LE(min_size, kReadBufSize); |
44 if (!read_buffer_.get()) | 45 if (!read_buffer_.get()) |
45 read_buffer_ = new net::IOBuffer(kReadBufSize); | 46 read_buffer_ = new net::IOBuffer(kReadBufSize); |
46 *buf = read_buffer_.get(); | 47 *buf = read_buffer_.get(); |
47 *buf_size = kReadBufSize; | 48 *buf_size = kReadBufSize; |
48 } | 49 } |
49 | 50 |
50 void StreamWriter::OnReadCompleted(int bytes_read, bool* defer) { | 51 void StreamWriter::OnReadCompleted( |
51 if (!bytes_read) | 52 int bytes_read, |
| 53 const base::Closure& need_more_data_callback) { |
| 54 DCHECK(!need_more_data_callback_); |
| 55 if (!bytes_read) { |
| 56 need_more_data_callback.Run(); |
52 return; | 57 return; |
| 58 } |
53 | 59 |
54 // We have more data to read. | 60 // We have more data to read. |
55 DCHECK(read_buffer_.get()); | 61 DCHECK(read_buffer_.get()); |
56 | 62 |
57 // Release the ownership of the buffer, and store a reference | 63 // Release the ownership of the buffer, and store a reference |
58 // to it. A new one will be allocated in OnWillRead(). | 64 // to it. A new one will be allocated in OnWillRead(). |
59 scoped_refptr<net::IOBuffer> buffer; | 65 scoped_refptr<net::IOBuffer> buffer; |
60 read_buffer_.swap(buffer); | 66 read_buffer_.swap(buffer); |
61 stream_->AddData(buffer, bytes_read); | 67 stream_->AddData(buffer, bytes_read); |
62 | 68 |
63 if (immediate_mode_) | 69 if (immediate_mode_) |
64 stream_->Flush(); | 70 stream_->Flush(); |
65 | 71 |
66 if (!stream_->can_add_data()) | 72 if (!stream_->can_add_data()) { |
67 *defer = true; | 73 need_more_data_callback_ = need_more_data_callback; |
| 74 return; |
| 75 } |
| 76 need_more_data_callback.Run(); |
68 } | 77 } |
69 | 78 |
70 void StreamWriter::Finalize(int status) { | 79 void StreamWriter::Finalize(int status) { |
71 DCHECK(stream_.get()); | 80 DCHECK(stream_.get()); |
72 stream_->Finalize(status); | 81 stream_->Finalize(status); |
73 stream_->RemoveWriteObserver(this); | 82 stream_->RemoveWriteObserver(this); |
74 stream_ = nullptr; | 83 stream_ = nullptr; |
75 } | 84 } |
76 | 85 |
77 void StreamWriter::OnSpaceAvailable(Stream* stream) { | 86 void StreamWriter::OnSpaceAvailable(Stream* stream) { |
78 controller_->Resume(); | 87 need_more_data_callback_.Run(); |
79 } | 88 } |
80 | 89 |
81 void StreamWriter::OnClose(Stream* stream) { | 90 void StreamWriter::OnClose(Stream* stream) { |
82 controller_->Cancel(); | 91 cancel_callback_.Run(); |
83 } | 92 } |
84 | 93 |
85 } // namespace content | 94 } // namespace content |
OLD | NEW |