1 From 13e85dd1763e99d21a60323671b9a5df08bdae75 Mon Sep 17 00:00:00 2001
2 From: Tanu Kaskinen <tanuk@iki.fi>
3 Date: Fri, 23 Oct 2015 12:59:53 +0300
4 Subject: [PATCH 3/4] card: move profile selection after pa_card_new()
6 I want module-alsa-card to set the availability of unavailable
7 profiles before the initial card profile gets selected, so that the
8 selection logic can use correct availability information.
9 module-alsa-card initializes the jack state after calling
10 pa_card_new(), however, and the profile selection happens in
11 pa_card_new(). This patch solves that by introducing pa_card_put() and
12 moving the profile selection code there.
14 An alternative solution would have been to move the jack
15 initialization to happen before pa_card_new() and use pa_card_new_data
16 instead of pa_card in the jack initialization code, but I disliked
17 that idea (I want to get rid of the "new data" pattern eventually).
19 The CARD_NEW hook is used when applying the initial profile policy, so
20 that was moved to pa_card_put(). That required changing the hook data
21 from pa_card_new_data to pa_card. module-card-restore now uses
22 pa_card_set_profile() instead of pa_card_new_data_set_profile(). That
23 required adding a state variable to pa_card, because
24 pa_card_set_profile() needs to distinguish between setting the initial
25 profile and setting the profile in other situations.
27 The order in which the initial profile policy is applied is reversed
28 in this patch. Previously the first one to set it won, now the last
29 one to set it wins. I think this is better, because if you have N
30 parties that want to set the profile, we avoid checking N times
31 whether someone else has already set the profile.
33 http://bugzilla.yoctoproject.org/show_bug.cgi?id=8448
35 Signed-off-by: Jussi Kukkonen <jussi.kukkonen@intel.com>
39 Upstream-Status: Denied [The patch set needs some work to be accepted.
41 http://thread.gmane.org/gmane.comp.audio.pulseaudio.general/24301]
43 Signed-off-by: Tanu Kaskinen <tanuk@iki.fi>
45 src/modules/alsa/module-alsa-card.c | 19 +++----
46 src/modules/bluetooth/module-bluez4-device.c | 18 +++----
47 src/modules/bluetooth/module-bluez5-device.c | 1 +
48 src/modules/macosx/module-coreaudio-device.c | 1 +
49 src/modules/module-card-restore.c | 24 +++++----
50 src/pulsecore/card.c | 81 +++++++++++++++-------------
51 src/pulsecore/card.h | 7 +++
52 7 files changed, 86 insertions(+), 65 deletions(-)
54 diff --git a/src/modules/alsa/module-alsa-card.c b/src/modules/alsa/module-alsa-card.c
55 index 9e8cde2..fe240f0 100644
56 --- a/src/modules/alsa/module-alsa-card.c
57 +++ b/src/modules/alsa/module-alsa-card.c
58 @@ -770,15 +770,6 @@ int pa__init(pa_module *m) {
62 - if ((profile = pa_modargs_get_value(u->modargs, "profile", NULL))) {
63 - if (pa_hashmap_get(data.profiles, profile))
64 - pa_card_new_data_set_profile(&data, profile);
66 - pa_log("No such profile: %s", profile);
71 u->card = pa_card_new(m->core, &data);
72 pa_card_new_data_done(&data);
74 @@ -789,6 +780,16 @@ int pa__init(pa_module *m) {
75 u->card->set_profile = card_set_profile;
78 + pa_card_put(u->card);
80 + if ((profile = pa_modargs_get_value(u->modargs, "profile", NULL))) {
81 + u->card->active_profile = pa_hashmap_get(u->card->profiles, profile);
82 + if (!u->card->active_profile) {
83 + pa_log("No such profile: %s", profile);
91 diff --git a/src/modules/bluetooth/module-bluez4-device.c b/src/modules/bluetooth/module-bluez4-device.c
92 index dd18217..5d0d3db 100644
93 --- a/src/modules/bluetooth/module-bluez4-device.c
94 +++ b/src/modules/bluetooth/module-bluez4-device.c
95 @@ -2304,15 +2304,6 @@ static int add_card(struct userdata *u) {
96 *d = PA_BLUEZ4_PROFILE_OFF;
97 pa_hashmap_put(data.profiles, p->name, p);
99 - if ((default_profile = pa_modargs_get_value(u->modargs, "profile", NULL))) {
100 - if (pa_hashmap_get(data.profiles, default_profile))
101 - pa_card_new_data_set_profile(&data, default_profile);
103 - pa_log("Profile '%s' not valid or not supported by device.", default_profile);
108 u->card = pa_card_new(u->core, &data);
109 pa_card_new_data_done(&data);
111 @@ -2323,6 +2314,15 @@ static int add_card(struct userdata *u) {
113 u->card->userdata = u;
114 u->card->set_profile = card_set_profile;
115 + pa_card_put(u->card);
117 + if ((default_profile = pa_modargs_get_value(u->modargs, "profile", NULL))) {
118 + u->card->active_profile = pa_hashmap_get(u->card->profiles, default_profile);
119 + if (!u->card->active_profile) {
120 + pa_log("Profile '%s' not valid or not supported by device.", default_profile);
125 d = PA_CARD_PROFILE_DATA(u->card->active_profile);
127 diff --git a/src/modules/bluetooth/module-bluez5-device.c b/src/modules/bluetooth/module-bluez5-device.c
128 index b015c67..7b90a31 100644
129 --- a/src/modules/bluetooth/module-bluez5-device.c
130 +++ b/src/modules/bluetooth/module-bluez5-device.c
131 @@ -1959,6 +1959,7 @@ static int add_card(struct userdata *u) {
133 u->card->userdata = u;
134 u->card->set_profile = set_profile_cb;
135 + pa_card_put(u->card);
137 p = PA_CARD_PROFILE_DATA(u->card->active_profile);
139 diff --git a/src/modules/macosx/module-coreaudio-device.c b/src/modules/macosx/module-coreaudio-device.c
140 index 0c92d42..7190ee9 100644
141 --- a/src/modules/macosx/module-coreaudio-device.c
142 +++ b/src/modules/macosx/module-coreaudio-device.c
143 @@ -807,6 +807,7 @@ int pa__init(pa_module *m) {
144 pa_card_new_data_done(&card_new_data);
145 u->card->userdata = u;
146 u->card->set_profile = card_set_profile;
147 + pa_card_put(u->card);
149 u->rtpoll = pa_rtpoll_new();
150 pa_thread_mq_init(&u->thread_mq, m->core->mainloop, u->rtpoll);
151 diff --git a/src/modules/module-card-restore.c b/src/modules/module-card-restore.c
152 index f906843..dce6674 100644
153 --- a/src/modules/module-card-restore.c
154 +++ b/src/modules/module-card-restore.c
155 @@ -515,34 +515,38 @@ static pa_hook_result_t port_offset_change_callback(pa_core *c, pa_device_port *
159 -static pa_hook_result_t card_new_hook_callback(pa_core *c, pa_card_new_data *new_data, struct userdata *u) {
160 +static pa_hook_result_t card_new_hook_callback(pa_core *c, pa_card *card, struct userdata *u) {
164 struct port_info *p_info;
166 - pa_assert(new_data);
171 - if (!(e = entry_read(u, new_data->name)))
172 + if (!(e = entry_read(u, card->name)))
176 - if (!new_data->active_profile) {
177 - pa_card_new_data_set_profile(new_data, e->profile);
178 - pa_log_info("Restored profile '%s' for card %s.", new_data->active_profile, new_data->name);
179 - new_data->save_profile = true;
180 + pa_card_profile *profile;
182 + profile = pa_hashmap_get(card->profiles, e->profile);
184 + pa_card_set_profile(card, profile, true);
185 + pa_log_info("Restored profile '%s' for card %s.", card->active_profile->name, card->name);
187 - pa_log_debug("Not restoring profile for card %s, because already set.", new_data->name);
188 + pa_log_debug("Tried to restore profile %s for card %s, but the card doesn't have such profile.",
189 + e->profile, card->name);
192 /* Always restore the latency offsets because their
193 * initial value is always 0 */
195 - pa_log_info("Restoring port latency offsets for card %s.", new_data->name);
196 + pa_log_info("Restoring port latency offsets for card %s.", card->name);
198 PA_HASHMAP_FOREACH(p_info, e->ports, state)
199 - if ((p = pa_hashmap_get(new_data->ports, p_info->name))) {
200 + if ((p = pa_hashmap_get(card->ports, p_info->name))) {
201 p->latency_offset = p_info->offset;
202 if (!p->preferred_profile && p_info->profile)
203 pa_device_port_set_preferred_profile(p, p_info->profile);
204 diff --git a/src/pulsecore/card.c b/src/pulsecore/card.c
205 index f92ac87..1a6e705 100644
206 --- a/src/pulsecore/card.c
207 +++ b/src/pulsecore/card.c
208 @@ -148,6 +148,7 @@ pa_card *pa_card_new(pa_core *core, pa_card_new_data *data) {
209 pa_assert(!pa_hashmap_isempty(data->profiles));
211 c = pa_xnew0(pa_card, 1);
212 + c->state = PA_CARD_STATE_INIT;
214 if (!(name = pa_namereg_register(core, data->name, PA_NAMEREG_CARD, c, data->namereg_fail))) {
216 @@ -156,12 +157,6 @@ pa_card *pa_card_new(pa_core *core, pa_card_new_data *data) {
218 pa_card_new_data_set_name(data, name);
220 - if (pa_hook_fire(&core->hooks[PA_CORE_HOOK_CARD_NEW], data) < 0) {
222 - pa_namereg_unregister(core, name);
227 c->name = pa_xstrdup(data->name);
228 c->proplist = pa_proplist_copy(data->proplist);
229 @@ -184,38 +179,43 @@ pa_card *pa_card_new(pa_core *core, pa_card_new_data *data) {
230 PA_HASHMAP_FOREACH(port, c->ports, state)
233 - if (data->active_profile)
234 - if ((c->active_profile = pa_hashmap_get(c->profiles, data->active_profile)))
235 - c->save_profile = data->save_profile;
236 + pa_device_init_description(c->proplist, c);
237 + pa_device_init_icon(c->proplist, true);
238 + pa_device_init_intended_roles(c->proplist);
240 - if (!c->active_profile) {
241 - PA_HASHMAP_FOREACH(profile, c->profiles, state) {
242 - if (profile->available == PA_AVAILABLE_NO)
247 - if (!c->active_profile || profile->priority > c->active_profile->priority)
248 - c->active_profile = profile;
250 - /* If all profiles are not available, then we still need to pick one */
251 - if (!c->active_profile) {
252 - PA_HASHMAP_FOREACH(profile, c->profiles, state)
253 - if (!c->active_profile || profile->priority > c->active_profile->priority)
254 - c->active_profile = profile;
256 - pa_assert(c->active_profile);
257 +void pa_card_put(pa_card *card) {
258 + pa_card_profile *profile;
263 + PA_HASHMAP_FOREACH(profile, card->profiles, state) {
264 + if (profile->available == PA_AVAILABLE_NO)
267 + if (!card->active_profile || profile->priority > card->active_profile->priority)
268 + card->active_profile = profile;
271 - pa_device_init_description(c->proplist, c);
272 - pa_device_init_icon(c->proplist, true);
273 - pa_device_init_intended_roles(c->proplist);
274 + /* If all profiles are unavailable, then we still need to pick one */
275 + if (!card->active_profile) {
276 + PA_HASHMAP_FOREACH(profile, card->profiles, state)
277 + if (!card->active_profile || profile->priority > card->active_profile->priority)
278 + card->active_profile = profile;
280 + pa_assert(card->active_profile);
282 - pa_assert_se(pa_idxset_put(core->cards, c, &c->index) >= 0);
283 + pa_hook_fire(&card->core->hooks[PA_CORE_HOOK_CARD_NEW], card);
285 - pa_log_info("Created %u \"%s\"", c->index, c->name);
286 - pa_subscription_post(core, PA_SUBSCRIPTION_EVENT_CARD|PA_SUBSCRIPTION_EVENT_NEW, c->index);
287 + pa_assert_se(pa_idxset_put(card->core->cards, card, &card->index) >= 0);
288 + card->state = PA_CARD_STATE_LINKED;
290 - pa_hook_fire(&core->hooks[PA_CORE_HOOK_CARD_PUT], c);
292 + pa_log_info("Created %u \"%s\"", card->index, card->name);
293 + pa_hook_fire(&card->core->hooks[PA_CORE_HOOK_CARD_PUT], card);
294 + pa_subscription_post(card->core, PA_SUBSCRIPTION_EVENT_CARD|PA_SUBSCRIPTION_EVENT_NEW, card->index);
297 void pa_card_free(pa_card *c) {
298 @@ -306,20 +306,27 @@ int pa_card_set_profile(pa_card *c, pa_card_profile *profile, bool save) {
302 - if ((r = c->set_profile(c, profile)) < 0)
303 + /* If we're setting the initial profile, we shouldn't call set_profile(),
304 + * because the implementations don't expect that (for historical reasons).
305 + * We should just set c->active_profile, and the implementations will
306 + * properly set up that profile after pa_card_put() has returned. It would
307 + * be probably good to change this so that also the initial profile can be
308 + * set up in set_profile(), but if set_profile() fails, that would need
309 + * some better handling than what we do here currently. */
310 + if (c->state != PA_CARD_STATE_INIT && (r = c->set_profile(c, profile)) < 0)
313 - pa_subscription_post(c->core, PA_SUBSCRIPTION_EVENT_CARD|PA_SUBSCRIPTION_EVENT_CHANGE, c->index);
315 - pa_log_info("Changed profile of card %u \"%s\" to %s", c->index, c->name, profile->name);
317 c->active_profile = profile;
318 c->save_profile = save;
321 update_port_preferred_profile(c);
323 - pa_hook_fire(&c->core->hooks[PA_CORE_HOOK_CARD_PROFILE_CHANGED], c);
324 + if (c->state != PA_CARD_STATE_INIT) {
325 + pa_log_info("Changed profile of card %u \"%s\" to %s", c->index, c->name, profile->name);
326 + pa_hook_fire(&c->core->hooks[PA_CORE_HOOK_CARD_PROFILE_CHANGED], c);
327 + pa_subscription_post(c->core, PA_SUBSCRIPTION_EVENT_CARD|PA_SUBSCRIPTION_EVENT_CHANGE, c->index);
332 diff --git a/src/pulsecore/card.h b/src/pulsecore/card.h
333 index fff9057..a944301 100644
334 --- a/src/pulsecore/card.h
335 +++ b/src/pulsecore/card.h
336 @@ -34,6 +34,11 @@ typedef enum pa_available {
337 PA_AVAILABLE_YES = 2,
340 +typedef enum pa_card_state {
341 + PA_CARD_STATE_INIT,
342 + PA_CARD_STATE_LINKED,
345 struct pa_card_profile {
348 @@ -66,6 +71,7 @@ struct pa_card_profile {
352 + pa_card_state_t state;
356 @@ -120,6 +126,7 @@ void pa_card_new_data_set_profile(pa_card_new_data *data, const char *profile);
357 void pa_card_new_data_done(pa_card_new_data *data);
359 pa_card *pa_card_new(pa_core *c, pa_card_new_data *data);
360 +void pa_card_put(pa_card *c);
361 void pa_card_free(pa_card *c);
363 void pa_card_add_profile(pa_card *c, pa_card_profile *profile);