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
|
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "media/midi/midi_manager_android.h"
#include "base/android/build_info.h"
#include "base/feature_list.h"
#include "base/memory/ptr_util.h"
#include "base/metrics/field_trial_params.h"
#include "base/strings/stringprintf.h"
#include "jni/MidiManagerAndroid_jni.h"
#include "media/midi/midi_device_android.h"
#include "media/midi/midi_manager_usb.h"
#include "media/midi/midi_output_port_android.h"
#include "media/midi/midi_switches.h"
#include "media/midi/usb_midi_device_factory_android.h"
using base::android::JavaParamRef;
using midi::mojom::PortState;
using midi::mojom::Result;
namespace midi {
namespace {
// MidiManagerAndroid should be enabled only when the feature is enabled via
// chrome://flags on M+, or enabled by server configurations under specified
// Android versions, M+ or N+.
bool IsMidiManagerAndroidEnabled() {
// The feature is not enabled by chrome://flags or field trials.
if (!base::FeatureList::IsEnabled(features::kMidiManagerAndroid))
return false;
auto sdk_version = base::android::BuildInfo::GetInstance()->sdk_int();
// If the feature is enabled, check the RequredAndroidVersion param. If the
// param is provided and the value is "NOUGAT", use MidiManagerAndroid on N
// and later versions. This string comparison should not match when users
// enable the feature via chrome://flags.
if (base::GetFieldTrialParamValueByFeature(features::kMidiManagerAndroid,
"RequiredAndroidVersion") ==
"NOUGAT") {
return sdk_version >= base::android::SDK_VERSION_NOUGAT;
}
// Otherwise, allow to use MidiManagerAndroid on M and later versions.
return sdk_version >= base::android::SDK_VERSION_MARSHMALLOW;
}
} // namespace
MidiManager* MidiManager::Create(MidiService* service) {
if (IsMidiManagerAndroidEnabled())
return new MidiManagerAndroid(service);
return new MidiManagerUsb(service,
base::MakeUnique<UsbMidiDeviceFactoryAndroid>());
}
MidiManagerAndroid::MidiManagerAndroid(MidiService* service)
: MidiManager(service) {}
MidiManagerAndroid::~MidiManagerAndroid() {
base::AutoLock auto_lock(scheduler_lock_);
CHECK(!scheduler_);
}
void MidiManagerAndroid::StartInitialization() {
JNIEnv* env = base::android::AttachCurrentThread();
uintptr_t pointer = reinterpret_cast<uintptr_t>(this);
raw_manager_.Reset(Java_MidiManagerAndroid_create(env, pointer));
{
base::AutoLock auto_lock(scheduler_lock_);
scheduler_.reset(new MidiScheduler(this));
}
Java_MidiManagerAndroid_initialize(env, raw_manager_);
}
void MidiManagerAndroid::Finalize() {
// Destruct MidiScheduler on Chrome_IOThread.
base::AutoLock auto_lock(scheduler_lock_);
scheduler_.reset();
}
void MidiManagerAndroid::DispatchSendMidiData(MidiManagerClient* client,
uint32_t port_index,
const std::vector<uint8_t>& data,
double timestamp) {
if (port_index >= all_output_ports_.size()) {
// |port_index| is provided by a renderer so we can't believe that it is
// in the valid range.
return;
}
DCHECK_EQ(output_ports().size(), all_output_ports_.size());
if (output_ports()[port_index].state == PortState::CONNECTED) {
// We treat send call as implicit open.
// TODO(yhirano): Implement explicit open operation from the renderer.
if (all_output_ports_[port_index]->Open()) {
SetOutputPortState(port_index, PortState::OPENED);
} else {
// We cannot open the port. It's useless to send data to such a port.
return;
}
}
// output_streams_[port_index] is alive unless MidiManagerUsb is deleted.
// The task posted to the MidiScheduler will be disposed safely on deleting
// the scheduler.
scheduler_->PostSendDataTask(
client, data.size(), timestamp,
base::Bind(&MidiOutputPortAndroid::Send,
base::Unretained(all_output_ports_[port_index]), data));
}
void MidiManagerAndroid::OnReceivedData(MidiInputPortAndroid* port,
const uint8_t* data,
size_t size,
base::TimeTicks timestamp) {
const auto i = input_port_to_index_.find(port);
DCHECK(input_port_to_index_.end() != i);
ReceiveMidiData(i->second, data, size, timestamp);
}
void MidiManagerAndroid::OnInitialized(
JNIEnv* env,
const JavaParamRef<jobject>& caller,
const JavaParamRef<jobjectArray>& devices) {
jsize length = env->GetArrayLength(devices);
for (jsize i = 0; i < length; ++i) {
jobject raw_device = env->GetObjectArrayElement(devices, i);
AddDevice(base::MakeUnique<MidiDeviceAndroid>(env, raw_device, this));
}
CompleteInitialization(Result::OK);
}
void MidiManagerAndroid::OnInitializationFailed(
JNIEnv* env,
const JavaParamRef<jobject>& caller) {
CompleteInitialization(Result::INITIALIZATION_ERROR);
}
void MidiManagerAndroid::OnAttached(JNIEnv* env,
const JavaParamRef<jobject>& caller,
const JavaParamRef<jobject>& raw_device) {
AddDevice(base::MakeUnique<MidiDeviceAndroid>(env, raw_device, this));
}
void MidiManagerAndroid::OnDetached(JNIEnv* env,
const JavaParamRef<jobject>& caller,
const JavaParamRef<jobject>& raw_device) {
for (auto& device : devices_) {
if (device->HasRawDevice(env, raw_device)) {
for (auto& port : device->input_ports()) {
DCHECK(input_port_to_index_.end() !=
input_port_to_index_.find(port.get()));
size_t index = input_port_to_index_[port.get()];
SetInputPortState(index, PortState::DISCONNECTED);
}
for (auto& port : device->output_ports()) {
DCHECK(output_port_to_index_.end() !=
output_port_to_index_.find(port.get()));
size_t index = output_port_to_index_[port.get()];
SetOutputPortState(index, PortState::DISCONNECTED);
}
}
}
}
void MidiManagerAndroid::AddDevice(std::unique_ptr<MidiDeviceAndroid> device) {
for (auto& port : device->input_ports()) {
// We implicitly open input ports here, because there are no signal
// from the renderer when to open.
// TODO(yhirano): Implement open operation in Blink.
PortState state = port->Open() ? PortState::OPENED : PortState::CONNECTED;
const size_t index = all_input_ports_.size();
all_input_ports_.push_back(port.get());
// Port ID must be unique in a MIDI manager. This ID setting is
// sufficiently unique although there is no user-friendly meaning.
// TODO(yhirano): Use a hashed string as ID.
const std::string id(
base::StringPrintf("native:port-in-%ld", static_cast<long>(index)));
input_port_to_index_.insert(std::make_pair(port.get(), index));
AddInputPort(MidiPortInfo(id, device->GetManufacturer(),
device->GetProductName(),
device->GetDeviceVersion(), state));
}
for (auto& port : device->output_ports()) {
const size_t index = all_output_ports_.size();
all_output_ports_.push_back(port.get());
// Port ID must be unique in a MIDI manager. This ID setting is
// sufficiently unique although there is no user-friendly meaning.
// TODO(yhirano): Use a hashed string as ID.
const std::string id(
base::StringPrintf("native:port-out-%ld", static_cast<long>(index)));
output_port_to_index_.insert(std::make_pair(port.get(), index));
AddOutputPort(
MidiPortInfo(id, device->GetManufacturer(), device->GetProductName(),
device->GetDeviceVersion(), PortState::CONNECTED));
}
devices_.push_back(std::move(device));
}
bool MidiManagerAndroid::Register(JNIEnv* env) {
return RegisterNativesImpl(env);
}
} // namespace midi
|