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 254 255 256
|
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROMEOS_ASH_COMPONENTS_DBUS_AUDIO_FAKE_CRAS_AUDIO_CLIENT_H_
#define CHROMEOS_ASH_COMPONENTS_DBUS_AUDIO_FAKE_CRAS_AUDIO_CLIENT_H_
#include <stdint.h>
#include <vector>
#include "base/component_export.h"
#include "base/memory/weak_ptr.h"
#include "base/observer_list.h"
#include "chromeos/ash/components/dbus/audio/cras_audio_client.h"
#include "chromeos/ash/components/dbus/audio/voice_isolation_ui_appearance.h"
namespace ash {
// The CrasAudioClient implementation used on Linux desktop.
class COMPONENT_EXPORT(DBUS_AUDIO) FakeCrasAudioClient
: public CrasAudioClient {
public:
using ClientTypeToInputStreamCount = base::flat_map<std::string, uint32_t>;
FakeCrasAudioClient();
FakeCrasAudioClient(const FakeCrasAudioClient&) = delete;
FakeCrasAudioClient& operator=(const FakeCrasAudioClient&) = delete;
~FakeCrasAudioClient() override;
static FakeCrasAudioClient* Get();
void SetVoiceIsolationUIAppearance(VoiceIsolationUIAppearance appearance);
bool GetVoiceIsolationUIEnabled();
uint32_t GetVoiceIsolationUIPreferredEffect();
void SetNoiseCancellationSupported(bool noise_cancellation_supported);
uint32_t GetNoiseCancellationEnabledCount();
void SetStyleTransferSupported(bool style_transfer_supported);
bool GetStyleTransferEnabled();
void SetHfpMicSrSupported(bool hfp_mic_sr_supported);
uint32_t GetHfpMicSrEnabled();
void SetSpatialAudioSupported(bool spatial_audio_supported);
// CrasAudioClient overrides:
void AddObserver(Observer* observer) override;
void RemoveObserver(Observer* observer) override;
bool HasObserver(const Observer* observer) const override;
void GetVolumeState(
chromeos::DBusMethodCallback<VolumeState> callback) override;
void GetDefaultOutputBufferSize(
chromeos::DBusMethodCallback<int> callback) override;
void GetSystemAecSupported(
chromeos::DBusMethodCallback<bool> callback) override;
void GetSystemAecGroupId(
chromeos::DBusMethodCallback<int32_t> callback) override;
void GetSystemNsSupported(
chromeos::DBusMethodCallback<bool> callback) override;
void GetSystemAgcSupported(
chromeos::DBusMethodCallback<bool> callback) override;
void GetNodes(chromeos::DBusMethodCallback<AudioNodeList> callback) override;
void GetNumberOfNonChromeOutputStreams(
chromeos::DBusMethodCallback<int32_t> callback) override;
void GetNumberOfActiveOutputStreams(
chromeos::DBusMethodCallback<int> callback) override;
void GetNumberOfInputStreamsWithPermission(
chromeos::DBusMethodCallback<ClientTypeToInputStreamCount>) override;
void GetSpeakOnMuteDetectionEnabled(
chromeos::DBusMethodCallback<bool> callback) override;
void SetOutputNodeVolume(uint64_t node_id, int32_t volume) override;
void SetOutputUserMute(bool mute_on) override;
void SetInputNodeGain(uint64_t node_id, int32_t gain) override;
void SetInputMute(bool mute_on) override;
void GetAudioEffectDlcs(
chromeos::DBusMethodCallback<std::string> callback) override;
void GetVoiceIsolationUIAppearance(
chromeos::DBusMethodCallback<VoiceIsolationUIAppearance> callback)
override;
void SetVoiceIsolationUIEnabled(bool voice_isolation_on) override;
void SetVoiceIsolationUIPreferredEffect(uint32_t effect_mode) override;
void SetNoiseCancellationEnabled(bool noise_cancellation_on) override;
void GetNoiseCancellationSupported(
chromeos::DBusMethodCallback<bool> callback) override;
void SetStyleTransferEnabled(bool style_transfer_on) override;
void GetStyleTransferSupported(
chromeos::DBusMethodCallback<bool> callback) override;
void SetActiveOutputNode(uint64_t node_id) override;
void SetActiveInputNode(uint64_t node_id) override;
void SetHotwordModel(uint64_t node_id,
const std::string& hotword_model,
chromeos::VoidDBusMethodCallback callback) override;
void SetFixA2dpPacketSize(bool enabled) override;
void SetFlossEnabled(bool enabled) override;
void SetSpeakOnMuteDetection(bool enabled) override;
void SetEwmaPowerReportEnabled(bool enabled) override;
void SetSidetoneEnabled(bool enabled) override;
void GetSidetoneSupported(
chromeos::DBusMethodCallback<bool> callback) override;
void AddActiveInputNode(uint64_t node_id) override;
void RemoveActiveInputNode(uint64_t node_id) override;
void AddActiveOutputNode(uint64_t node_id) override;
void RemoveActiveOutputNode(uint64_t node_id) override;
void SwapLeftRight(uint64_t node_id, bool swap) override;
void SetDisplayRotation(uint64_t node_id,
cras::DisplayRotation rotation) override;
void SetGlobalOutputChannelRemix(int32_t channels,
const std::vector<double>& mixer) override;
void SetPlayerPlaybackStatus(const std::string& playback_status) override;
void SetPlayerIdentity(const std::string& playback_identity) override;
void SetPlayerPosition(const int64_t& position) override;
void SetPlayerDuration(const int64_t& duration) override;
void SetPlayerMetadata(
const std::map<std::string, std::string>& metadata) override;
void ResendBluetoothBattery() override;
void WaitForServiceToBeAvailable(
chromeos::WaitForServiceToBeAvailableCallback callback) override;
void SetForceRespectUiGains(bool force_respect_ui_gains_enabled) override;
void GetNumStreamIgnoreUiGains(
chromeos::DBusMethodCallback<int> callback) override;
void GetNumberOfArcStreams(
chromeos::DBusMethodCallback<int> callback) override;
void SetHfpMicSrEnabled(bool hfp_mic_sr_on) override;
void GetHfpMicSrSupported(
chromeos::DBusMethodCallback<bool> callback) override;
void SetSpatialAudio(bool spatial_audio_enabled) override;
void GetSpatialAudioSupported(
chromeos::DBusMethodCallback<bool> callback) override;
// Sets the number of non chrome audio streams in output mode.
void SetNumberOfNonChromeOutputStreams(int32_t streams);
// Modifies an AudioNode from |node_list_| based on |audio_node.id|.
// if the |audio_node.id| cannot be found in list, Add an
// AudioNode to |node_list_|
void InsertAudioNodeToList(const AudioNode& audio_node);
// Removes an AudioNode from |node_list_| based on |node_id|.
void RemoveAudioNodeFromList(const uint64_t& node_id);
// Updates |node_list_| to contain |audio_nodes|.
void SetAudioNodesForTesting(const AudioNodeList& audio_nodes);
// Calls SetAudioNodesForTesting() and additionally notifies |observers_|.
void SetAudioNodesAndNotifyObserversForTesting(
const AudioNodeList& new_nodes);
// Generates fake signal for OutputNodeVolumeChanged.
void NotifyOutputNodeVolumeChangedForTesting(uint64_t node_id, int volume);
// Generates fake signal for InputNodeGainChanged.
void NotifyInputNodeGainChangedForTesting(uint64_t node_id, int gain);
// Generates fake hotword signal for HotwordTriggered.
void NotifyHotwordTriggeredForTesting(uint64_t tv_sec, uint64_t tv_nsec);
// Set a mock battery level for ResendBatteryLevel.
void SetBluetoothBattteryLevelForTesting(uint32_t level);
// Sets a mock mapping from client type to number of active input streams per
// the client type.
void SetActiveInputStreamsWithPermission(
const ClientTypeToInputStreamCount& input_streams);
// Generates fake signal for SurveyTriggered.
void NotifySurveyTriggered(
const base::flat_map<std::string, std::string>& survey_specific_data);
// Sets the number of ARC streams.
void SetNumberOfArcStreams(int32_t streams);
void SetAudioEffectDlcsForTesting(const std::string& audio_effect_dlcs);
const AudioNodeList& node_list() const { return node_list_; }
const uint64_t& active_input_node_id() const { return active_input_node_id_; }
const uint64_t& active_output_node_id() const {
return active_output_node_id_;
}
// By default the observers are informed when `SetOutputNodeVolume` is
// invoked. This disables that. You can then manually invoke the observers by
// calling `NotifyOutputNodeVolumeChangedForTesting`.
void disable_volume_change_events() { enable_volume_change_events_ = false; }
// The real `CrasAudioClient` sends the volume change events asynchronously,
// so this method instructs our fake to do the same.
void send_volume_change_events_asynchronous() {
send_volume_change_events_synchronous_ = false;
}
// By default the observers are informed when `SetInputGain` is
// invoked. This disables that. You can then manually invoke the observers by
// calling `NotifyInputNodeGainChangedForTesting`.
void disable_gain_change_events() { enable_gain_change_events_ = false; }
bool noise_cancellation_enabled() const {
return voice_isolation_ui_enabled_;
}
bool style_transfer_enabled() const { return voice_isolation_ui_enabled_; }
bool speak_on_mute_detection_enabled() const {
return speak_on_mute_detection_enabled_;
}
bool force_respect_ui_gains_enabled() const {
return force_respect_ui_gains_enabled_;
}
bool hfp_mic_sr_enabled() const { return hfp_mic_sr_enabled_; }
bool spatial_audio_enabled() const { return spatial_audio_enabled_; }
private:
// Finds a node in the list based on the id.
AudioNodeList::iterator FindNode(uint64_t node_id);
VolumeState volume_state_;
AudioNodeList node_list_;
VoiceIsolationUIAppearance voice_isolation_ui_appearance_;
uint64_t active_input_node_id_ = 0;
uint64_t active_output_node_id_ = 0;
bool enable_volume_change_events_ = true;
// TODO(b/273520282): Change default behavior to send events asynchronously.
bool send_volume_change_events_synchronous_ = true;
bool enable_gain_change_events_ = true;
bool noise_cancellation_supported_ = false;
bool style_transfer_supported_ = false;
uint32_t battery_level_ = 0;
uint32_t noise_cancellation_enabled_counter_ = 0;
int32_t number_non_chrome_output_streams_ = 0;
bool voice_isolation_ui_enabled_ = false;
uint32_t voice_isolation_preferred_effect_ = 0;
bool speak_on_mute_detection_enabled_ = false;
bool ewma_power_report_enabled_ = false;
bool sidetone_enabled_ = false;
bool sidetone_supported_ = false;
bool force_respect_ui_gains_enabled_ = false;
bool hfp_mic_sr_enabled_ = false;
bool hfp_mic_sr_supported_ = false;
bool spatial_audio_enabled_ = false;
bool spatial_audio_supported_ = false;
// Maps audio client type to the number of active input streams for clients
// with the type specified
ClientTypeToInputStreamCount active_input_streams_;
int32_t number_arc_streams_ = 0;
std::string audio_effect_dlcs_;
base::ObserverList<Observer>::Unchecked observers_;
base::WeakPtrFactory<FakeCrasAudioClient> weak_ptr_factory_{this};
};
} // namespace ash
#endif // CHROMEOS_ASH_COMPONENTS_DBUS_AUDIO_FAKE_CRAS_AUDIO_CLIENT_H_
|