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