bluetooth-policy: Revise role according to Tizen policy
[platform/upstream/pulseaudio.git] / src / modules / bluetooth / module-bluetooth-policy.c
1 /***
2   This file is part of PulseAudio.
3
4   Copyright 2006 Lennart Poettering
5   Copyright 2009 Canonical Ltd
6   Copyright (C) 2012 Intel Corporation
7
8   PulseAudio is free software; you can redistribute it and/or modify
9   it under the terms of the GNU Lesser General Public License as published
10   by the Free Software Foundation; either version 2.1 of the License,
11   or (at your option) any later version.
12
13   PulseAudio is distributed in the hope that it will be useful, but
14   WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16   General Public License for more details.
17
18   You should have received a copy of the GNU Lesser General Public License
19   along with PulseAudio; if not, write to the Free Software
20   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21   USA.
22 ***/
23
24 #ifdef HAVE_CONFIG_H
25 #include <config.h>
26 #endif
27
28 #include <pulse/xmalloc.h>
29
30 #include <pulsecore/core.h>
31 #include <pulsecore/modargs.h>
32 #include <pulsecore/source-output.h>
33 #include <pulsecore/source.h>
34 #include <pulsecore/core-util.h>
35
36 #include "module-bluetooth-policy-symdef.h"
37
38 PA_MODULE_AUTHOR("Frédéric Dalleau");
39 PA_MODULE_DESCRIPTION("When a bluetooth sink or source is added, load module-loopback");
40 PA_MODULE_VERSION(PACKAGE_VERSION);
41 PA_MODULE_LOAD_ONCE(true);
42 PA_MODULE_USAGE(
43         "a2dp_source=<Handle a2dp_source card profile (sink role)?> "
44         "hfgw=<Handle hfgw card profile (headset role)?>");
45
46 static const char* const valid_modargs[] = {
47     "a2dp_source",
48     "hfgw",
49     NULL
50 };
51
52 struct userdata {
53     bool enable_a2dp_source;
54     bool enable_hfgw;
55     pa_hook_slot *source_put_slot;
56     pa_hook_slot *sink_put_slot;
57     pa_hook_slot *profile_available_changed_slot;
58 };
59
60 /* When a source is created, loopback it to default sink */
61 static pa_hook_result_t source_put_hook_callback(pa_core *c, pa_source *source, void *userdata) {
62     struct userdata *u = userdata;
63     const char *s;
64     const char *role;
65     char *args;
66
67     pa_assert(c);
68     pa_assert(source);
69
70     /* Only consider bluetooth sinks and sources */
71     s = pa_proplist_gets(source->proplist, PA_PROP_DEVICE_BUS);
72     if (!s)
73         return PA_HOOK_OK;
74
75     if (!pa_streq(s, "bluetooth"))
76         return PA_HOOK_OK;
77
78     s = pa_proplist_gets(source->proplist, "bluetooth.protocol");
79     if (!s)
80         return PA_HOOK_OK;
81
82     if (u->enable_a2dp_source && pa_streq(s, "a2dp_source")) /* A2DP profile (we're doing sink role) */
83 #ifdef __TIZEN__
84         role = "media";
85 #else
86         role = "music";
87 #endif
88     else if (u->enable_hfgw && pa_streq(s, "hfgw")) /* HFP profile (we're doing headset role) */
89         role = "phone";
90     else {
91         pa_log_debug("Profile %s cannot be selected for loopback", s);
92         return PA_HOOK_OK;
93     }
94
95     /* Load module-loopback */
96     args = pa_sprintf_malloc("source=\"%s\" source_dont_move=\"true\" sink_input_properties=\"media.role=%s\" adjust_time=0", source->name, role);
97     (void) pa_module_load(c, "module-loopback", args);
98     pa_xfree(args);
99
100     return PA_HOOK_OK;
101 }
102
103 /* When a sink is created, loopback it to default source */
104 static pa_hook_result_t sink_put_hook_callback(pa_core *c, pa_sink *sink, void *userdata) {
105     struct userdata *u = userdata;
106     const char *s;
107     const char *role;
108     char *args;
109
110     pa_assert(c);
111     pa_assert(sink);
112
113     /* Only consider bluetooth sinks and sources */
114     s = pa_proplist_gets(sink->proplist, PA_PROP_DEVICE_BUS);
115     if (!s)
116         return PA_HOOK_OK;
117
118     if (!pa_streq(s, "bluetooth"))
119         return PA_HOOK_OK;
120
121     s = pa_proplist_gets(sink->proplist, "bluetooth.protocol");
122     if (!s)
123         return PA_HOOK_OK;
124
125     if (u->enable_hfgw && pa_streq(s, "hfgw")) /* HFP profile (we're doing headset role) */
126         role = "phone";
127     else {
128         pa_log_debug("Profile %s cannot be selected for loopback", s);
129         return PA_HOOK_OK;
130     }
131
132     /* Load module-loopback */
133     args = pa_sprintf_malloc("sink=\"%s\" sink_dont_move=\"true\" source_output_properties=\"media.role=%s\" adjust_time=0", sink->name, role);
134     (void) pa_module_load(c, "module-loopback", args);
135     pa_xfree(args);
136
137     return PA_HOOK_OK;
138 }
139
140 static pa_card_profile *find_best_profile(pa_card *card) {
141     void *state;
142     pa_card_profile *profile;
143     pa_card_profile *result = card->active_profile;
144     pa_card_profile *off;
145
146     pa_assert_se(off = pa_hashmap_get(card->profiles, "off"));
147
148     PA_HASHMAP_FOREACH(profile, card->profiles, state) {
149         if (profile->available == PA_AVAILABLE_NO || profile == off)
150             continue;
151
152         if (result == NULL ||
153             (profile->available == PA_AVAILABLE_YES && result->available == PA_AVAILABLE_UNKNOWN) ||
154             (profile->available == result->available && profile->priority > result->priority))
155             result = profile;
156     }
157
158     return result ? result : off;
159 }
160
161 static pa_hook_result_t profile_available_hook_callback(pa_core *c, pa_card_profile *profile, void *userdata) {
162     pa_card *card;
163     const char *s;
164     bool is_active_profile;
165     pa_card_profile *selected_profile;
166
167     pa_assert(c);
168     pa_assert(profile);
169     pa_assert_se((card = profile->card));
170
171     /* Only consider bluetooth cards */
172     s = pa_proplist_gets(card->proplist, PA_PROP_DEVICE_BUS);
173     if (!s || !pa_streq(s, "bluetooth"))
174         return PA_HOOK_OK;
175
176     /* Do not automatically switch profiles for headsets, just in case */
177     if (pa_streq(profile->name, "hsp") || pa_streq(profile->name, "a2dp_sink"))
178         return PA_HOOK_OK;
179
180     is_active_profile = card->active_profile == profile;
181
182     if (profile->available == PA_AVAILABLE_YES) {
183         if (is_active_profile)
184             return PA_HOOK_OK;
185
186         if (card->active_profile->available == PA_AVAILABLE_YES && card->active_profile->priority >= profile->priority)
187             return PA_HOOK_OK;
188
189         selected_profile = profile;
190     } else {
191         if (!is_active_profile)
192             return PA_HOOK_OK;
193
194         pa_assert_se((selected_profile = find_best_profile(card)));
195
196         if (selected_profile == card->active_profile)
197             return PA_HOOK_OK;
198     }
199
200     pa_log_debug("Setting card '%s' to profile '%s'", card->name, selected_profile->name);
201
202     if (pa_card_set_profile(card, selected_profile, false) != 0)
203         pa_log_warn("Could not set profile '%s'", selected_profile->name);
204
205     return PA_HOOK_OK;
206 }
207
208 static void handle_all_profiles(pa_core *core) {
209     pa_card *card;
210     uint32_t state;
211
212     PA_IDXSET_FOREACH(card, core->cards, state) {
213         pa_card_profile *profile;
214         void *state2;
215
216         PA_HASHMAP_FOREACH(profile, card->profiles, state2)
217             profile_available_hook_callback(core, profile, NULL);
218     }
219 }
220
221 int pa__init(pa_module *m) {
222     pa_modargs *ma;
223     struct userdata *u;
224
225     pa_assert(m);
226
227     if (!(ma = pa_modargs_new(m->argument, valid_modargs))) {
228         pa_log_error("Failed to parse module arguments");
229         return -1;
230     }
231
232     m->userdata = u = pa_xnew0(struct userdata, 1);
233
234     u->enable_a2dp_source = true;
235     if (pa_modargs_get_value_boolean(ma, "a2dp_source", &u->enable_a2dp_source) < 0) {
236         pa_log("Failed to parse a2dp_source argument.");
237         goto fail;
238     }
239
240     u->enable_hfgw = true;
241     if (pa_modargs_get_value_boolean(ma, "hfgw", &u->enable_hfgw) < 0) {
242         pa_log("Failed to parse hfgw argument.");
243         goto fail;
244     }
245
246     u->source_put_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SOURCE_PUT], PA_HOOK_NORMAL, (pa_hook_cb_t) source_put_hook_callback, u);
247
248     u->sink_put_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_SINK_PUT], PA_HOOK_NORMAL, (pa_hook_cb_t) sink_put_hook_callback, u);
249
250     u->profile_available_changed_slot = pa_hook_connect(&m->core->hooks[PA_CORE_HOOK_CARD_PROFILE_AVAILABLE_CHANGED],
251                                                         PA_HOOK_NORMAL, (pa_hook_cb_t) profile_available_hook_callback, u);
252
253     handle_all_profiles(m->core);
254
255     pa_modargs_free(ma);
256     return 0;
257
258 fail:
259     pa_modargs_free(ma);
260     return -1;
261 }
262
263 void pa__done(pa_module *m) {
264     struct userdata *u;
265
266     pa_assert(m);
267
268     if (!(u = m->userdata))
269         return;
270
271     if (u->source_put_slot)
272         pa_hook_slot_free(u->source_put_slot);
273
274     if (u->sink_put_slot)
275         pa_hook_slot_free(u->sink_put_slot);
276
277     if (u->profile_available_changed_slot)
278         pa_hook_slot_free(u->profile_available_changed_slot);
279
280     pa_xfree(u);
281 }