2 * module-murphy-ivi -- PulseAudio module for providing audio routing support
3 * Copyright (c) 2012, Intel Corporation.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU Lesser General Public License,
7 * version 2.1, as published by the Free Software Foundation.
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE.
12 * See the GNU Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public License
15 * along with this program; if not, write to the
16 * Free Software Foundation, Inc., 51 Franklin St - Fifth Floor, Boston,
30 #include <sys/types.h>
31 #include <sys/socket.h>
33 #include <pulsecore/pulsecore-config.h>
35 #include <pulsecore/core-util.h>
36 #include <pulsecore/card.h>
37 #include <pulsecore/sink.h>
38 #include <pulsecore/source.h>
39 #include <pulsecore/sink-input.h>
40 #include <pulsecore/source-output.h>
47 #define DEFAULT_NULL_SINK_NAME "null.mir"
51 uint32_t module_index;
56 static uint32_t stamp;
58 static char *stream_name(pa_proplist *);
61 pa_null_sink *pa_utils_create_null_sink(struct userdata *u, const char *name)
72 pa_assert_se((core = u->core));
76 name = DEFAULT_NULL_SINK_NAME;
79 snprintf(args, sizeof(args), "sink_name=\"%s\" channels=2", name);
80 module = pa_module_load(core, "module-null-sink", args);
84 pa_log("failed to load null sink '%s'", name);
86 PA_IDXSET_FOREACH(s, core->sinks, idx) {
87 if (s->module && s->module == module) {
89 pa_log_info("mir null sink is '%s'", name);
95 ns = pa_xnew0(pa_null_sink, 1);
96 ns->name = pa_xstrdup(name);
97 ns->module_index = module ? module->index : PA_IDXSET_INVALID;
98 ns->sink_index = sink ? sink->index : PA_IDXSET_INVALID;
103 void pa_utils_destroy_null_sink(struct userdata *u)
109 if (u && (ns = u->nullsink) && (core = u->core)) {
110 if ((module = pa_idxset_get_by_index(core->modules,ns->module_index))){
111 pa_log_info("unloading null sink '%s'", ns->name);
112 pa_module_unload(core, module, FALSE);
120 pa_sink *pa_utils_get_null_sink(struct userdata *u)
126 pa_assert_se((core = u->core));
127 pa_assert_se((ns = u->nullsink));
129 return pa_idxset_get_by_index(core->sinks, ns->sink_index);
132 pa_source *pa_utils_get_null_source(struct userdata *u)
134 pa_sink *ns = pa_utils_get_null_sink(u);
136 return ns ? ns->monitor_source : NULL;
141 char *pa_utils_get_card_name(pa_card *card)
143 return (card && card->name) ? card->name : "<unknown>";
146 char *pa_utils_get_card_bus(pa_card *card)
148 const char *bus = NULL;
151 if (card && !(bus = pa_proplist_gets(card->proplist,PA_PROP_DEVICE_BUS))) {
152 name = pa_utils_get_card_name(card);
153 if (!strncmp(name, "alsa_card.", 10)) {
154 if (!strncmp(name + 10, "pci-", 4))
156 else if (!strncmp(name + 10, "usb-", 4))
164 char *pa_utils_get_sink_name(pa_sink *sink)
166 return (sink && sink->name) ? sink->name : "<unknown>";
169 char *pa_utils_get_source_name(pa_source *source)
171 return (source && source->name) ? source->name : "<unknown>";
174 char *pa_utils_get_sink_input_name(pa_sink_input *sinp)
178 if (sinp && (name = stream_name(sinp->proplist)))
184 char *pa_utils_get_sink_input_name_from_data(pa_sink_input_new_data *data)
188 if (data && (name = stream_name(data->proplist)))
195 char *pa_utils_get_source_output_name(pa_source_output *sout)
199 if (sout && (name = stream_name(sout->proplist)))
205 char *pa_utils_get_source_output_name_from_data(pa_source_output_new_data*data)
209 if (data && (name = stream_name(data->proplist)))
216 pa_bool_t pa_utils_set_stream_routing_properties(pa_proplist *pl,
225 pa_assert(styp >= 0);
227 snprintf(clid, sizeof(clid), "%d", styp);
228 clnam = mir_node_type_str(styp);
229 method = target ? PA_ROUTING_EXPLICIT : PA_ROUTING_DEFAULT;
231 if (pa_proplist_sets(pl, PA_PROP_ROUTING_CLASS_NAME, clnam ) < 0 ||
232 pa_proplist_sets(pl, PA_PROP_ROUTING_CLASS_ID , clid ) < 0 ||
233 pa_proplist_sets(pl, PA_PROP_ROUTING_METHOD , method) < 0 )
235 pa_log("failed to set some stream property");
242 pa_bool_t pa_utils_unset_stream_routing_properties(pa_proplist *pl)
246 if (pa_proplist_unset(pl, PA_PROP_ROUTING_CLASS_NAME) < 0 ||
247 pa_proplist_unset(pl, PA_PROP_ROUTING_CLASS_ID ) < 0 ||
248 pa_proplist_unset(pl, PA_PROP_ROUTING_METHOD ) < 0 )
250 pa_log("failed to unset some stream property");
257 void pa_utils_set_stream_routing_method_property(pa_proplist *pl,
260 const char *method = explicit ? PA_ROUTING_EXPLICIT : PA_ROUTING_DEFAULT;
264 if (pa_proplist_sets(pl, PA_PROP_ROUTING_METHOD, method) < 0) {
265 pa_log("failed to set routing method property on sink-input");
269 pa_bool_t pa_utils_stream_has_default_route(pa_proplist *pl)
275 method = pa_proplist_gets(pl, PA_PROP_ROUTING_METHOD);
277 if (method && pa_streq(method, PA_ROUTING_DEFAULT))
283 int pa_utils_get_stream_class(pa_proplist *pl)
285 const char *clid_str;
287 unsigned long int clid = 0;
291 if ((clid_str = pa_proplist_gets(pl, PA_PROP_ROUTING_CLASS_ID))) {
292 clid = strtoul(clid_str, &e, 10);
301 void pa_utils_set_port_properties(pa_device_port *port, mir_node *node)
306 pa_assert(port->proplist);
309 snprintf(nodeidx, sizeof(nodeidx), "%u", node->index);
311 pa_proplist_sets(port->proplist, PA_PROP_NODE_INDEX, nodeidx);
314 mir_node *pa_utils_get_node_from_port(struct userdata *u,
315 pa_device_port *port)
319 uint32_t index = PA_IDXSET_INVALID;
320 mir_node *node = NULL;
324 pa_assert(port->proplist);
326 if ((value = pa_proplist_gets(port->proplist, PA_PROP_NODE_INDEX))) {
327 index = strtoul(value, &e, 10);
329 if (value[0] && !e[0])
330 node = mir_node_find_by_index(u, index);
336 mir_node *pa_utils_get_node_from_stream(struct userdata *u,
341 pa_source_output *sout;
344 const char *index_str;
345 uint32_t index = PA_IDXSET_INVALID;
351 pa_assert(type == mir_input || type == mir_output);
353 if (type == mir_input) {
354 sinp = (pa_sink_input *)ptr;
356 snprintf(name, sizeof(name), "sink-input.%u", sinp->index);
359 sout = (pa_source_output *)ptr;
361 snprintf(name, sizeof(name), "source-output.%u", sout->index);
365 if ((index_str = pa_proplist_gets(pl, PA_PROP_NODE_INDEX))) {
366 index = strtoul(index_str, &e, 10);
367 if (e != index_str && *e == '\0') {
368 if ((node = mir_node_find_by_index(u, index)))
371 pa_log_debug("can't find find node for %s", name);
378 mir_node *pa_utils_get_node_from_data(struct userdata *u,
382 pa_sink_input_new_data *sinp;
383 pa_source_output_new_data *sout;
386 const char *index_str;
387 uint32_t index = PA_IDXSET_INVALID;
393 pa_assert(type == mir_input || type == mir_output);
395 if (type == mir_input) {
396 sinp = (pa_sink_input_new_data *)ptr;
398 snprintf(name, sizeof(name), "sink-input");
401 sout = (pa_source_output_new_data *)ptr;
403 snprintf(name, sizeof(name), "source-output");
407 if ((index_str = pa_proplist_gets(pl, PA_PROP_NODE_INDEX))) {
408 index = strtoul(index_str, &e, 10);
409 if (e != index_str && *e == '\0') {
410 if ((node = mir_node_find_by_index(u, index)))
413 pa_log_debug("can't find find node for %s", name);
420 static char *stream_name(pa_proplist *pl)
425 if ((appnam = pa_proplist_gets(pl, PA_PROP_APPLICATION_NAME)))
426 return (char *)appnam;
428 if ((binnam = pa_proplist_gets(pl, PA_PROP_APPLICATION_PROCESS_BINARY)))
429 return (char *)binnam;
435 const char *pa_utils_file_path(const char *dir, const char *file,
436 char *buf, size_t len)
442 snprintf(buf, len, "%s/%s", dir, file);
448 uint32_t pa_utils_new_stamp(void)
453 uint32_t pa_utils_get_stamp(void)
464 * indent-tabs-mode: nil