1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
media / mojo / common / mojo_data_pipe_read_write.cc [blame]
// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "media/mojo/common/mojo_data_pipe_read_write.h"
#include <memory>
#include "base/compiler_specific.h"
#include "base/functional/bind.h"
#include "base/logging.h"
#include "base/memory/ptr_util.h"
#include "base/task/sequenced_task_runner.h"
#include "media/mojo/common/mojo_pipe_read_write_util.h"
using media::mojo_pipe_read_write_util::IsPipeReadWriteError;
namespace media {
// MojoDataPipeReader
MojoDataPipeReader::MojoDataPipeReader(
mojo::ScopedDataPipeConsumerHandle consumer_handle)
: consumer_handle_(std::move(consumer_handle)),
pipe_watcher_(FROM_HERE,
mojo::SimpleWatcher::ArmingPolicy::MANUAL,
base::SequencedTaskRunner::GetCurrentDefault()) {
DVLOG(1) << __func__;
MojoResult result = pipe_watcher_.Watch(
consumer_handle_.get(), MOJO_HANDLE_SIGNAL_NEW_DATA_READABLE,
base::BindRepeating(&MojoDataPipeReader::TryReadData,
base::Unretained(this)));
if (result != MOJO_RESULT_OK) {
DVLOG(1) << __func__
<< ": Failed to start watching the pipe. result=" << result;
consumer_handle_.reset();
}
}
MojoDataPipeReader::~MojoDataPipeReader() {
DVLOG(1) << __func__;
}
void MojoDataPipeReader::CompleteCurrentRead() {
DVLOG(4) << __func__;
DCHECK(done_cb_);
current_buffer_ = nullptr;
current_buffer_size_ = 0;
std::move(done_cb_).Run(true);
}
void MojoDataPipeReader::Read(uint8_t* buffer,
uint32_t num_bytes,
DoneCB done_cb) {
DVLOG(3) << __func__;
// Read() can not be called when there is another reading request in process.
DCHECK(!current_buffer_size_);
DCHECK(done_cb);
if (!num_bytes) {
std::move(done_cb).Run(true);
return;
}
if (!consumer_handle_.is_valid()) {
VLOG(1) << __func__ << ": Data pipe was closed.";
std::move(done_cb).Run(false);
return;
}
current_buffer_size_ = num_bytes;
current_buffer_ = buffer;
bytes_read_ = 0;
done_cb_ = std::move(done_cb);
// Try reading data immediately to reduce latency.
TryReadData(MOJO_RESULT_OK);
}
void MojoDataPipeReader::TryReadData(MojoResult result) {
if (result != MOJO_RESULT_OK) {
OnPipeError(result);
return;
}
DCHECK_GT(current_buffer_size_, bytes_read_);
size_t num_bytes = current_buffer_size_ - bytes_read_;
if (current_buffer_) {
// SAFETY: Depending on the caller of Read to provide a valid ptr+size.
//
// TODO(lukasza): Consider removing the whole `MojoDataPipeReader` class:
// * It is only used from test code (from unit tests of
// `MojoDataPipeWriter`)
// * It uses `UNSAFE_BUFFERS` + it is the only caller of `DiscardData`
base::span<uint8_t> buffer =
UNSAFE_BUFFERS(base::span(current_buffer_.get(), current_buffer_size_));
buffer = buffer.subspan(bytes_read_);
result =
consumer_handle_->ReadData(MOJO_READ_DATA_FLAG_NONE, buffer, num_bytes);
} else {
result = consumer_handle_->DiscardData(num_bytes, num_bytes);
}
if (IsPipeReadWriteError(result)) {
OnPipeError(result);
} else {
if (result == MOJO_RESULT_OK) {
DCHECK_GT(num_bytes, 0u);
bytes_read_ += num_bytes;
if (bytes_read_ == current_buffer_size_) {
CompleteCurrentRead();
return;
}
}
pipe_watcher_.ArmOrNotify();
}
}
void MojoDataPipeReader::OnPipeError(MojoResult result) {
DVLOG(1) << __func__ << "(" << result << ")";
DCHECK(IsPipeReadWriteError(result));
consumer_handle_.reset();
if (current_buffer_) {
DVLOG(1) << __func__ << ": reading from data pipe failed. result=" << result
<< ", buffer size=" << current_buffer_size_
<< ", num_bytes(read)=" << bytes_read_;
bytes_read_ = 0;
current_buffer_ = nullptr;
current_buffer_size_ = 0;
DCHECK(done_cb_);
std::move(done_cb_).Run(false);
}
}
bool MojoDataPipeReader::IsPipeValid() const {
return consumer_handle_.is_valid();
}
void MojoDataPipeReader::Close() {
consumer_handle_.reset();
}
// MojoDataPipeWriter
MojoDataPipeWriter::MojoDataPipeWriter(
mojo::ScopedDataPipeProducerHandle producer_handle)
: producer_handle_(std::move(producer_handle)),
pipe_watcher_(FROM_HERE,
mojo::SimpleWatcher::ArmingPolicy::MANUAL,
base::SequencedTaskRunner::GetCurrentDefault()) {
DVLOG(1) << __func__;
MojoResult result =
pipe_watcher_.Watch(producer_handle_.get(), MOJO_HANDLE_SIGNAL_WRITABLE,
base::BindRepeating(&MojoDataPipeWriter::TryWriteData,
base::Unretained(this)));
if (result != MOJO_RESULT_OK) {
DVLOG(1) << __func__
<< ": Failed to start watching the pipe. result=" << result;
producer_handle_.reset();
}
}
MojoDataPipeWriter::~MojoDataPipeWriter() {
DVLOG(1) << __func__;
}
void MojoDataPipeWriter::Write(const uint8_t* buffer,
uint32_t buffer_size,
DoneCB done_cb) {
DVLOG(3) << __func__;
// Write() can not be called when another writing request is in process.
DCHECK(current_buffer_.empty());
DCHECK(done_cb);
if (!buffer_size) {
std::move(done_cb).Run(true);
return;
}
DCHECK(buffer);
// Cannot write if the pipe is already closed.
if (!producer_handle_.is_valid()) {
DVLOG(1) << __func__
<< ": Failed to write buffer because the pipe is already closed";
std::move(done_cb).Run(false);
return;
}
// TODO(lukasza): Take `span` instead of `buffer` + `buffer_size`.
current_buffer_ =
UNSAFE_TODO(base::span<const uint8_t>(buffer, size_t{buffer_size}));
done_cb_ = std::move(done_cb);
// Try writing data immediately to reduce latency.
TryWriteData(MOJO_RESULT_OK);
}
void MojoDataPipeWriter::TryWriteData(MojoResult result) {
if (result != MOJO_RESULT_OK) {
OnPipeError(result);
return;
}
DCHECK(!current_buffer_.empty());
size_t actually_written_bytes = 0;
result = producer_handle_->WriteData(
current_buffer_, MOJO_WRITE_DATA_FLAG_NONE, actually_written_bytes);
if (IsPipeReadWriteError(result)) {
OnPipeError(result);
} else {
if (result == MOJO_RESULT_OK) {
DCHECK_GT(actually_written_bytes, 0u);
current_buffer_ = current_buffer_.subspan(actually_written_bytes);
if (current_buffer_.empty()) {
CompleteCurrentWrite();
return;
}
}
pipe_watcher_.ArmOrNotify();
}
}
void MojoDataPipeWriter::CompleteCurrentWrite() {
DVLOG(4) << __func__;
DCHECK(done_cb_);
current_buffer_ = base::span<const uint8_t>();
std::move(done_cb_).Run(true);
}
void MojoDataPipeWriter::OnPipeError(MojoResult result) {
DVLOG(1) << __func__ << "(" << result << ")";
DCHECK(IsPipeReadWriteError(result));
producer_handle_.reset();
if (!current_buffer_.empty()) {
DVLOG(1) << __func__ << ": writing to data pipe failed. result=" << result
<< ", current_buffer_.size()=" << current_buffer_.size();
current_buffer_ = base::span<const uint8_t>();
DCHECK(done_cb_);
std::move(done_cb_).Run(false);
}
}
bool MojoDataPipeWriter::IsPipeValid() const {
return producer_handle_.is_valid();
}
void MojoDataPipeWriter::Close() {
producer_handle_.reset();
}
} // namespace media