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
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifdef UNSAFE_BUFFERS_BUILD
// TODO(crbug.com/40285824): Remove this and convert code to safer constructs.
#pragma allow_unsafe_buffers
#endif
#include "remoting/host/linux/audio_pipe_reader.h"
#include <fcntl.h>
#include <stddef.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
#include <utility>
#include "base/functional/bind.h"
#include "base/logging.h"
#include "base/posix/eintr_wrapper.h"
#include "base/task/single_thread_task_runner.h"
namespace remoting {
namespace {
const int kSampleBytesPerSecond = int{AudioPipeReader::kSamplingRate} *
AudioPipeReader::kChannels *
AudioPipeReader::kBytesPerSample;
#if !defined(F_SETPIPE_SZ)
// F_SETPIPE_SZ is supported only starting linux 2.6.35, but we want to be able
// to compile this code on machines with older kernel.
#define F_SETPIPE_SZ 1031
#endif // defined(F_SETPIPE_SZ)
} // namespace
// static
scoped_refptr<AudioPipeReader> AudioPipeReader::Create(
scoped_refptr<base::SingleThreadTaskRunner> task_runner,
const base::FilePath& pipe_path) {
// Create a reference to the new AudioPipeReader before posting the
// StartOnAudioThread task, otherwise it may be deleted on the audio
// thread before we return.
scoped_refptr<AudioPipeReader> pipe_reader =
new AudioPipeReader(task_runner, pipe_path);
task_runner->PostTask(
FROM_HERE,
base::BindOnce(&AudioPipeReader::StartOnAudioThread, pipe_reader));
return pipe_reader;
}
AudioPipeReader::AudioPipeReader(
scoped_refptr<base::SingleThreadTaskRunner> task_runner,
const base::FilePath& pipe_path)
: task_runner_(task_runner),
pipe_path_(pipe_path),
observers_(new base::ObserverListThreadSafe<StreamObserver>()) {}
AudioPipeReader::~AudioPipeReader() = default;
void AudioPipeReader::AddObserver(StreamObserver* observer) {
observers_->AddObserver(observer);
}
void AudioPipeReader::RemoveObserver(StreamObserver* observer) {
observers_->RemoveObserver(observer);
}
void AudioPipeReader::StartOnAudioThread() {
DCHECK(task_runner_->BelongsToCurrentThread());
if (!file_watcher_.Watch(
pipe_path_.DirName(), base::FilePathWatcher::Type::kRecursive,
base::BindRepeating(&AudioPipeReader::OnDirectoryChanged,
base::Unretained(this)))) {
LOG(ERROR) << "Failed to watch pulseaudio directory "
<< pipe_path_.DirName().value();
}
TryOpenPipe();
}
void AudioPipeReader::OnDirectoryChanged(const base::FilePath& path,
bool error) {
DCHECK(task_runner_->BelongsToCurrentThread());
if (error) {
LOG(ERROR) << "File watcher returned an error.";
return;
}
TryOpenPipe();
}
void AudioPipeReader::TryOpenPipe() {
DCHECK(task_runner_->BelongsToCurrentThread());
base::File new_pipe(
HANDLE_EINTR(open(pipe_path_.value().c_str(), O_RDONLY | O_NONBLOCK)));
// If both |pipe_| and |new_pipe| are valid then compare inodes for the two
// file descriptors. Don't need to do anything if inode hasn't changed.
if (new_pipe.IsValid() && pipe_.IsValid()) {
struct stat old_stat;
struct stat new_stat;
if (fstat(pipe_.GetPlatformFile(), &old_stat) == 0 &&
fstat(new_pipe.GetPlatformFile(), &new_stat) == 0 &&
old_stat.st_ino == new_stat.st_ino) {
return;
}
}
pipe_watch_controller_.reset();
timer_.Stop();
pipe_ = std::move(new_pipe);
if (pipe_.IsValid()) {
// Get buffer size for the pipe.
pipe_buffer_size_ = fpathconf(pipe_.GetPlatformFile(), _PC_PIPE_BUF);
if (pipe_buffer_size_ < 0) {
PLOG(ERROR) << "fpathconf(_PC_PIPE_BUF)";
pipe_buffer_size_ = 4096;
}
// Read from the pipe twice per buffer length, to avoid starving the stream.
capture_period_ =
base::Seconds(1) * pipe_buffer_size_ / kSampleBytesPerSecond / 2;
WaitForPipeReadable();
}
}
void AudioPipeReader::StartTimer() {
DCHECK(task_runner_->BelongsToCurrentThread());
DCHECK(pipe_watch_controller_);
pipe_watch_controller_.reset();
started_time_ = base::TimeTicks::Now();
last_capture_position_ = 0;
timer_.Start(FROM_HERE, capture_period_, this, &AudioPipeReader::DoCapture);
}
void AudioPipeReader::DoCapture() {
DCHECK(task_runner_->BelongsToCurrentThread());
DCHECK(pipe_.IsValid());
// Calculate how much we need read from the pipe. Pulseaudio doesn't control
// how much data it writes to the pipe, so we need to pace the stream.
base::TimeDelta stream_position = base::TimeTicks::Now() - started_time_;
int64_t stream_position_bytes = stream_position.InMilliseconds() *
kSampleBytesPerSecond /
base::Time::kMillisecondsPerSecond;
int64_t bytes_to_read = stream_position_bytes - last_capture_position_;
std::string data = left_over_bytes_;
size_t pos = data.size();
left_over_bytes_.clear();
data.resize(pos + bytes_to_read);
while (pos < data.size()) {
int read_result =
pipe_.ReadAtCurrentPos(std::data(data) + pos, data.size() - pos);
if (read_result > 0) {
pos += read_result;
} else {
if (read_result < 0 && errno != EWOULDBLOCK && errno != EAGAIN) {
PLOG(ERROR) << "read";
}
break;
}
}
// Stop reading from the pipe if PulseAudio isn't writing anything.
if (pos == 0) {
WaitForPipeReadable();
return;
}
// Save any incomplete samples we've read for later. Each packet should
// contain integer number of samples.
int incomplete_samples_bytes = pos % (int{kChannels} * kBytesPerSample);
left_over_bytes_.assign(data, pos - incomplete_samples_bytes,
incomplete_samples_bytes);
data.resize(pos - incomplete_samples_bytes);
last_capture_position_ += data.size();
// Normally PulseAudio will keep pipe buffer full, so we should always be able
// to read |bytes_to_read| bytes, but in case it's misbehaving we need to make
// sure that |stream_position_bytes| doesn't go out of sync with the current
// stream position.
if (stream_position_bytes - last_capture_position_ > pipe_buffer_size_) {
last_capture_position_ = stream_position_bytes - pipe_buffer_size_;
}
DCHECK_LE(last_capture_position_, stream_position_bytes);
// Dispatch asynchronous notification to the stream observers.
scoped_refptr<base::RefCountedString> data_ref =
base::MakeRefCounted<base::RefCountedString>(std::move(data));
observers_->Notify(FROM_HERE, &StreamObserver::OnDataRead, data_ref);
}
void AudioPipeReader::WaitForPipeReadable() {
timer_.Stop();
DCHECK(!pipe_watch_controller_);
pipe_watch_controller_ = base::FileDescriptorWatcher::WatchReadable(
pipe_.GetPlatformFile(), base::BindRepeating(&AudioPipeReader::StartTimer,
base::Unretained(this)));
}
// static
void AudioPipeReaderTraits::Destruct(const AudioPipeReader* audio_pipe_reader) {
audio_pipe_reader->task_runner_->DeleteSoon(FROM_HERE, audio_pipe_reader);
}
} // namespace remoting
|