blob: dfb20b52745313bf4940cfc8c8658e52be9ee23a [file] [log] [blame]
François Gaffie2110e042015-03-24 08:41:51 +01001/*
2 * Copyright (C) 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#pragma once
18
19#include <AudioPolicyManagerObserver.h>
François Gaffied0ba9ed2018-11-05 11:50:42 +010020#include <media/AudioProductStrategy.h>
François Gaffie4b2018b2018-11-07 11:18:59 +010021#include <media/AudioVolumeGroup.h>
Eric Laurentf5aa58d2019-02-22 18:20:11 -080022#include <IVolumeCurves.h>
François Gaffiedc7553f2018-11-02 10:39:57 +010023#include <policy.h>
François Gaffie2110e042015-03-24 08:41:51 +010024#include <Volume.h>
25#include <HwModule.h>
26#include <DeviceDescriptor.h>
27#include <system/audio.h>
28#include <system/audio_policy.h>
29#include <utils/Errors.h>
30#include <utils/Vector.h>
31
32namespace android {
33
François Gaffiedc7553f2018-11-02 10:39:57 +010034using DeviceStrategyMap = std::map<product_strategy_t, DeviceVector>;
35using StrategyVector = std::vector<product_strategy_t>;
François Gaffie251c7f02018-11-07 10:41:08 +010036using VolumeGroupVector = std::vector<volume_group_t>;
François Gaffiedc7553f2018-11-02 10:39:57 +010037
François Gaffie2110e042015-03-24 08:41:51 +010038/**
39 * This interface is dedicated to the policy manager that a Policy Engine shall implement.
40 */
Mikhail Naganove13c6792019-05-14 10:32:51 -070041class EngineInterface
François Gaffie2110e042015-03-24 08:41:51 +010042{
43public:
44 /**
45 * Checks if the engine was correctly initialized.
46 *
47 * @return NO_ERROR if initialization has been done correctly, error code otherwise..
48 */
49 virtual status_t initCheck() = 0;
50
51 /**
52 * Sets the Manager observer that allows the engine to retrieve information on collection
53 * of devices, streams, HwModules, ...
54 *
55 * @param[in] observer handle on the manager.
56 */
57 virtual void setObserver(AudioPolicyManagerObserver *observer) = 0;
58
59 /**
François Gaffie2110e042015-03-24 08:41:51 +010060 * Set the Telephony Mode.
61 *
62 * @param[in] mode: Android Phone state (normal, ringtone, csv, in communication)
63 *
64 * @return NO_ERROR if Telephony Mode set correctly, error code otherwise.
65 */
66 virtual status_t setPhoneState(audio_mode_t mode) = 0;
67
68 /**
69 * Get the telephony Mode
70 *
71 * @return the current telephony mode
72 */
73 virtual audio_mode_t getPhoneState() const = 0;
74
75 /**
76 * Set Force Use config for a given usage.
77 *
78 * @param[in] usage for which a configuration shall be forced.
79 * @param[in] config wished to be forced for the given usage.
80 *
François Gaffie20f06f92015-03-24 09:01:14 +010081 * @return NO_ERROR if the Force Use config was set correctly, error code otherwise (e.g. config
82 * not allowed a given usage...)
François Gaffie2110e042015-03-24 08:41:51 +010083 */
84 virtual status_t setForceUse(audio_policy_force_use_t usage,
85 audio_policy_forced_cfg_t config) = 0;
86
87 /**
88 * Get Force Use config for a given usage.
89 *
90 * @param[in] usage for which a configuration shall be forced.
91 *
92 * @return config wished to be forced for the given usage.
93 */
94 virtual audio_policy_forced_cfg_t getForceUse(audio_policy_force_use_t usage) const = 0;
95
96 /**
97 * Set the connection state of device(s).
98 *
99 * @param[in] devDesc for which the state has changed.
100 * @param[in] state of availability of this(these) device(s).
101 *
102 * @return NO_ERROR if devices criterion updated correctly, error code otherwise.
103 */
104 virtual status_t setDeviceConnectionState(const android::sp<android::DeviceDescriptor> devDesc,
105 audio_policy_dev_state_t state) = 0;
106
François Gaffiedc7553f2018-11-02 10:39:57 +0100107 /**
108 * Get the strategy selected for a given audio attributes.
109 *
110 * @param[in] audio attributes to get the selected @product_strategy_t followed by.
111 *
112 * @return @product_strategy_t to be followed.
113 */
114 virtual product_strategy_t getProductStrategyForAttributes(
115 const audio_attributes_t &attr) const = 0;
116
117 /**
118 * @brief getOutputDevicesForAttributes retrieves the devices to be used for given
119 * audio attributes.
120 * @param attributes of the output requesting Device(s) selection
121 * @param preferedDevice valid reference if a prefered device is requested, nullptr otherwise.
122 * @param fromCache if true, the device is returned from internal cache,
123 * otherwise it is determined by current state (device connected,phone state,
124 * force use, a2dp output...)
125 * @return vector of selected device descriptors.
126 * Appropriate device for streams handled by the specified audio attributes according
127 * to current phone state, forced states, connected devices...
128 * if fromCache is true, the device is returned from internal cache,
129 * otherwise it is determined by current state (device connected,phone state, force use,
130 * a2dp output...)
131 * This allows to:
132 * 1 speed up process when the state is stable (when starting or stopping an output)
133 * 2 access to either current device selection (fromCache == true) or
134 * "future" device selection (fromCache == false) when called from a context
135 * where conditions are changing (setDeviceConnectionState(), setPhoneState()...) AND
136 * before manager updates its outputs.
137 */
138 virtual DeviceVector getOutputDevicesForAttributes(
139 const audio_attributes_t &attributes,
140 const sp<DeviceDescriptor> &preferedDevice = nullptr,
141 bool fromCache = false) const = 0;
142
143 /**
144 * @brief getOutputDevicesForStream Legacy function retrieving devices from a stream type.
145 * @param stream type of the output requesting Device(s) selection
146 * @param fromCache if true, the device is returned from internal cache,
147 * otherwise it is determined by current state (device connected,phone state,
148 * force use, a2dp output...)
149 * @return appropriate device for streams handled by the specified audio attributes according
150 * to current phone state, forced states, connected devices...
151 * if fromCache is true, the device is returned from internal cache,
152 * otherwise it is determined by current state (device connected,phone state, force use,
153 * a2dp output...)
154 * This allows to:
155 * 1 speed up process when the state is stable (when starting or stopping an output)
156 * 2 access to either current device selection (fromCache == true) or
157 * "future" device selection (fromCache == false) when called from a context
158 * where conditions are changing (setDeviceConnectionState(), setPhoneState()...) AND
159 * before manager updates its outputs.
160 */
161 virtual DeviceVector getOutputDevicesForStream(audio_stream_type_t stream,
162 bool fromCache = false) const = 0;
163
164 /**
165 * Get the input device selected for given audio attributes.
166 *
167 * @param[in] attr audio attributes to consider
168 * @param[out] mix to be used if a mix has been installed for the given audio attributes.
169 * @return selected input device for the audio attributes, may be null if error.
170 */
171 virtual sp<DeviceDescriptor> getInputDeviceForAttributes(
Mikhail Naganovbfac5832019-03-05 16:55:28 -0800172 const audio_attributes_t &attr, sp<AudioPolicyMix> *mix = nullptr) const = 0;
François Gaffiedc7553f2018-11-02 10:39:57 +0100173
174 /**
175 * Get the legacy stream type for a given audio attributes.
176 *
177 * @param[in] audio attributes to get the associated audio_stream_type_t.
178 *
179 * @return audio_stream_type_t associated to the attributes.
180 */
181 virtual audio_stream_type_t getStreamTypeForAttributes(
182 const audio_attributes_t &attr) const = 0;
183
184 /**
185 * @brief getAttributesForStream get the audio attributes from legacy stream type
François Gaffie251c7f02018-11-07 10:41:08 +0100186 * Attributes returned might only be used to check upon routing decision, not volume decisions.
François Gaffiedc7553f2018-11-02 10:39:57 +0100187 * @param stream to consider
188 * @return audio attributes matching the legacy stream type
189 */
190 virtual audio_attributes_t getAttributesForStreamType(audio_stream_type_t stream) const = 0;
191
192 /**
193 * @brief getStreamTypesForProductStrategy retrieves the list of legacy stream type following
194 * the given product strategy
195 * @param ps product strategy to consider
196 * @return associated legacy Stream Types vector of the given product strategy
197 */
198 virtual StreamTypeVector getStreamTypesForProductStrategy(product_strategy_t ps) const = 0;
199
200 /**
201 * @brief getAllAttributesForProductStrategy retrieves all the attributes following the given
202 * product strategy. Any attributes that "matches" with this one will follow the product
203 * strategy.
204 * "matching" means the usage shall match if reference attributes has a defined usage, AND
205 * content type shall match if reference attributes has a defined content type AND
206 * flags shall match if reference attributes has defined flags AND
207 * tags shall match if reference attributes has defined tags.
208 * @param ps product strategy to consider
209 * @return vector of product strategy ids, empty if unknown strategy.
210 */
211 virtual AttributesVector getAllAttributesForProductStrategy(product_strategy_t ps) const = 0;
212
213 /**
214 * @brief getOrderedAudioProductStrategies
215 * @return priority ordered product strategies to help the AudioPolicyManager evaluating the
216 * device selection per output according to the prioritized strategies.
217 */
218 virtual StrategyVector getOrderedProductStrategies() const = 0;
219
220 /**
221 * @brief updateDeviceSelectionCache. Device selection for AudioAttribute / Streams is cached
222 * in the engine in order to speed up process when the audio system is stable.
223 * When a device is connected, the android mode is changed, engine is notified and can update
224 * the cache.
225 * When starting / stopping an output with a stream that can affect notification, the engine
226 * needs to update the cache upon this function call.
227 */
228 virtual void updateDeviceSelectionCache() = 0;
229
François Gaffied0ba9ed2018-11-05 11:50:42 +0100230 /**
231 * @brief listAudioProductStrategies. Introspection API to retrieve a collection of
232 * AudioProductStrategyVector that allows to build AudioAttributes according to a
233 * product_strategy which is just an index. It has also a human readable name to help the
234 * Car/Oem/AudioManager identiying the use case.
235 * @param strategies collection.
236 * @return OK if the list has been retrieved, error code otherwise
237 */
238 virtual status_t listAudioProductStrategies(AudioProductStrategyVector &strategies) const = 0;
239
Eric Laurentf5aa58d2019-02-22 18:20:11 -0800240 /**
241 * @brief getVolumeCurvesForAttributes retrieves the Volume Curves interface for the
242 * requested Audio Attributes.
243 * @param attr to be considered
244 * @return IVolumeCurves interface pointer if found, nullptr otherwise
245 */
François Gaffie251c7f02018-11-07 10:41:08 +0100246 virtual IVolumeCurves *getVolumeCurvesForAttributes(const audio_attributes_t &attr) const = 0;
Eric Laurentf5aa58d2019-02-22 18:20:11 -0800247
248 /**
249 * @brief getVolumeCurvesForStreamType retrieves the Volume Curves interface for the stream
250 * @param stream to be considered
251 * @return IVolumeCurves interface pointer if found, nullptr otherwise
252 */
François Gaffie251c7f02018-11-07 10:41:08 +0100253 virtual IVolumeCurves *getVolumeCurvesForStreamType(audio_stream_type_t stream) const = 0;
254
255 /**
256 * @brief getVolumeCurvesForVolumeGroup retrieves the Volume Curves interface for volume group
257 * @param group to be considered
258 * @return IVolumeCurves interface pointer if found, nullptr otherwise
259 */
260 virtual IVolumeCurves *getVolumeCurvesForVolumeGroup(volume_group_t group) const = 0;
261
262 /**
263 * @brief getVolumeGroups retrieves the collection of volume groups.
264 * @return vector of volume groups
265 */
266 virtual VolumeGroupVector getVolumeGroups() const = 0;
267
268 /**
269 * @brief getVolumeGroupForAttributes gets the appropriate volume group to be used for a given
270 * Audio Attributes.
271 * @param attr to be considered
272 * @return volume group associated to the given audio attributes, default group if none
273 * applicable, VOLUME_GROUP_NONE if no default group defined.
274 */
275 virtual volume_group_t getVolumeGroupForAttributes(const audio_attributes_t &attr) const = 0;
276
277 /**
278 * @brief getVolumeGroupForStreamType gets the appropriate volume group to be used for a given
279 * legacy stream type
280 * @param stream type to be considered
281 * @return volume group associated to the given stream type, default group if none applicable,
282 * VOLUME_GROUP_NONE if no default group defined.
283 */
284 virtual volume_group_t getVolumeGroupForStreamType(audio_stream_type_t stream) const = 0;
285
François Gaffie4b2018b2018-11-07 11:18:59 +0100286 /**
287 * @brief listAudioVolumeGroups introspection API to get the Audio Volume Groups, aka
288 * former stream aliases in Audio Service, defining volume curves attached to one or more
289 * Audio Attributes.
290 * @param groups
291 * @return NO_ERROR if the volume groups were retrieved successfully, error code otherwise
292 */
293 virtual status_t listAudioVolumeGroups(AudioVolumeGroupVector &groups) const = 0;
294
Jean-Michel Trivi2deb4782019-11-01 11:04:15 -0700295 /**
296 * @brief setPreferredDeviceForStrategy sets the default device to be used for a
297 * strategy when available
298 * @param strategy the audio strategy whose routing will be affected
299 * @param device the audio device to route to when available
300 * @return BAD_VALUE if the strategy is invalid,
301 * or NO_ERROR if the preferred device was set
302 */
303 virtual status_t setPreferredDeviceForStrategy(product_strategy_t strategy,
304 const AudioDeviceTypeAddr &device) = 0;
305
306 /**
307 * @brief removePreferredDeviceForStrategy removes the preferred device previously set
308 * for the given strategy
309 * @param strategy the audio strategy whose routing will be affected
310 * @return BAD_VALUE if the strategy is invalid,
311 * or NO_ERROR if the preferred device was removed
312 */
313 virtual status_t removePreferredDeviceForStrategy(product_strategy_t strategy) = 0;
314
315 /**
316 * @brief getPreferredDeviceForStrategy queries which device is set as the
317 * preferred device for the given strategy
318 * @param strategy the strategy to query
319 * @param device returns configured as the preferred device if one was set
320 * @return BAD_VALUE if the strategy is invalid,
321 * or NAME_NOT_FOUND if no preferred device was set
322 * or NO_ERROR if the device parameter was initialized to the preferred device
323 */
324 virtual status_t getPreferredDeviceForStrategy(product_strategy_t strategy,
325 AudioDeviceTypeAddr &device) const = 0;
326
327
François Gaffiedc7553f2018-11-02 10:39:57 +0100328 virtual void dump(String8 *dst) const = 0;
329
François Gaffie2110e042015-03-24 08:41:51 +0100330protected:
Mikhail Naganove13c6792019-05-14 10:32:51 -0700331 virtual ~EngineInterface() {}
François Gaffie2110e042015-03-24 08:41:51 +0100332};
333
Mikhail Naganove13c6792019-05-14 10:32:51 -0700334__attribute__((visibility("default")))
335extern "C" EngineInterface* createEngineInstance();
336
337__attribute__((visibility("default")))
338extern "C" void destroyEngineInstance(EngineInterface *engine);
339
Mikhail Naganov1b2a7942017-12-08 10:18:09 -0800340} // namespace android