mirror of
https://gitlab.freedesktop.org/pulseaudio/pulseaudio.git
synced 2025-11-18 06:59:57 -05:00
I will modify module-switch-on-port-available so that it will keep track of which input and output port the user prefers on the card, based on the user's profile and port switches. The preference needs to be saved on disk, for which I will use module-card-restore. To facilitate communication between the two modules, this patch adds preferred_input_port and preferred_output_port fields to pa_card, and a hook for monitoring the variable changes. It would be nice if the two modules would communicate directly with each other, but implementing that would be somewhat complicated, so I chose this time for adding the functionality to the core. In theory some other routing module might want to manage the new variables instead of module-switch-on-port-available, but admittedly that's not very likely to happen...
382 lines
11 KiB
C
382 lines
11 KiB
C
/***
|
|
This file is part of PulseAudio.
|
|
|
|
Copyright 2009 Lennart Poettering
|
|
|
|
PulseAudio is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License as published
|
|
by the Free Software Foundation; either version 2.1 of the License,
|
|
or (at your option) any later version.
|
|
|
|
PulseAudio is distributed in the hope that it will be useful, but
|
|
WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
along with PulseAudio; if not, see <http://www.gnu.org/licenses/>.
|
|
***/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include <pulse/xmalloc.h>
|
|
#include <pulse/util.h>
|
|
|
|
#include <pulsecore/log.h>
|
|
#include <pulsecore/macro.h>
|
|
#include <pulsecore/core-util.h>
|
|
#include <pulsecore/namereg.h>
|
|
#include <pulsecore/device-port.h>
|
|
|
|
#include "card.h"
|
|
|
|
pa_card_profile *pa_card_profile_new(const char *name, const char *description, size_t extra) {
|
|
pa_card_profile *c;
|
|
|
|
pa_assert(name);
|
|
|
|
c = pa_xmalloc0(PA_ALIGN(sizeof(pa_card_profile)) + extra);
|
|
c->name = pa_xstrdup(name);
|
|
c->description = pa_xstrdup(description);
|
|
c->available = PA_AVAILABLE_UNKNOWN;
|
|
|
|
return c;
|
|
}
|
|
|
|
void pa_card_profile_free(pa_card_profile *c) {
|
|
pa_assert(c);
|
|
|
|
pa_xfree(c->input_name);
|
|
pa_xfree(c->output_name);
|
|
pa_xfree(c->name);
|
|
pa_xfree(c->description);
|
|
pa_xfree(c);
|
|
}
|
|
|
|
void pa_card_profile_set_available(pa_card_profile *c, pa_available_t available) {
|
|
pa_core *core;
|
|
|
|
pa_assert(c);
|
|
pa_assert(c->card); /* Modify member variable directly during creation instead of using this function */
|
|
|
|
if (c->available == available)
|
|
return;
|
|
|
|
c->available = available;
|
|
pa_log_debug("Setting card %s profile %s to availability status %s", c->card->name, c->name,
|
|
available == PA_AVAILABLE_YES ? "yes" : available == PA_AVAILABLE_NO ? "no" : "unknown");
|
|
|
|
/* Post subscriptions to the card which owns us */
|
|
pa_assert_se(core = c->card->core);
|
|
pa_subscription_post(core, PA_SUBSCRIPTION_EVENT_CARD|PA_SUBSCRIPTION_EVENT_CHANGE, c->card->index);
|
|
|
|
pa_hook_fire(&core->hooks[PA_CORE_HOOK_CARD_PROFILE_AVAILABLE_CHANGED], c);
|
|
}
|
|
|
|
pa_card_new_data* pa_card_new_data_init(pa_card_new_data *data) {
|
|
pa_assert(data);
|
|
|
|
memset(data, 0, sizeof(*data));
|
|
data->proplist = pa_proplist_new();
|
|
data->profiles = pa_hashmap_new_full(pa_idxset_string_hash_func, pa_idxset_string_compare_func, NULL, (pa_free_cb_t) pa_card_profile_free);
|
|
data->ports = pa_hashmap_new_full(pa_idxset_string_hash_func, pa_idxset_string_compare_func, NULL, (pa_free_cb_t) pa_device_port_unref);
|
|
return data;
|
|
}
|
|
|
|
void pa_card_new_data_set_name(pa_card_new_data *data, const char *name) {
|
|
pa_assert(data);
|
|
|
|
pa_xfree(data->name);
|
|
data->name = pa_xstrdup(name);
|
|
}
|
|
|
|
void pa_card_new_data_set_profile(pa_card_new_data *data, const char *profile) {
|
|
pa_assert(data);
|
|
|
|
pa_xfree(data->active_profile);
|
|
data->active_profile = pa_xstrdup(profile);
|
|
}
|
|
|
|
void pa_card_new_data_set_preferred_port(pa_card_new_data *data, pa_direction_t direction, pa_device_port *port) {
|
|
pa_assert(data);
|
|
|
|
if (direction == PA_DIRECTION_INPUT)
|
|
data->preferred_input_port = port;
|
|
else
|
|
data->preferred_output_port = port;
|
|
}
|
|
|
|
void pa_card_new_data_done(pa_card_new_data *data) {
|
|
|
|
pa_assert(data);
|
|
|
|
pa_proplist_free(data->proplist);
|
|
|
|
if (data->profiles)
|
|
pa_hashmap_free(data->profiles);
|
|
|
|
if (data->ports)
|
|
pa_hashmap_free(data->ports);
|
|
|
|
pa_xfree(data->name);
|
|
pa_xfree(data->active_profile);
|
|
}
|
|
|
|
pa_card *pa_card_new(pa_core *core, pa_card_new_data *data) {
|
|
pa_card *c;
|
|
const char *name;
|
|
void *state;
|
|
pa_card_profile *profile;
|
|
pa_device_port *port;
|
|
|
|
pa_core_assert_ref(core);
|
|
pa_assert(data);
|
|
pa_assert(data->name);
|
|
pa_assert(data->profiles);
|
|
pa_assert(!pa_hashmap_isempty(data->profiles));
|
|
|
|
c = pa_xnew0(pa_card, 1);
|
|
|
|
if (!(name = pa_namereg_register(core, data->name, PA_NAMEREG_CARD, c, data->namereg_fail))) {
|
|
pa_xfree(c);
|
|
return NULL;
|
|
}
|
|
|
|
pa_card_new_data_set_name(data, name);
|
|
|
|
if (pa_hook_fire(&core->hooks[PA_CORE_HOOK_CARD_NEW], data) < 0) {
|
|
pa_xfree(c);
|
|
pa_namereg_unregister(core, name);
|
|
return NULL;
|
|
}
|
|
|
|
c->core = core;
|
|
c->name = pa_xstrdup(data->name);
|
|
c->proplist = pa_proplist_copy(data->proplist);
|
|
c->driver = pa_xstrdup(pa_path_get_filename(data->driver));
|
|
c->module = data->module;
|
|
|
|
c->sinks = pa_idxset_new(NULL, NULL);
|
|
c->sources = pa_idxset_new(NULL, NULL);
|
|
|
|
/* As a minor optimization we just steal the list instead of
|
|
* copying it here */
|
|
pa_assert_se(c->profiles = data->profiles);
|
|
data->profiles = NULL;
|
|
pa_assert_se(c->ports = data->ports);
|
|
data->ports = NULL;
|
|
|
|
PA_HASHMAP_FOREACH(profile, c->profiles, state)
|
|
profile->card = c;
|
|
|
|
PA_HASHMAP_FOREACH(port, c->ports, state)
|
|
port->card = c;
|
|
|
|
c->preferred_input_port = data->preferred_input_port;
|
|
c->preferred_output_port = data->preferred_output_port;
|
|
|
|
if (data->active_profile)
|
|
if ((c->active_profile = pa_hashmap_get(c->profiles, data->active_profile)))
|
|
c->save_profile = data->save_profile;
|
|
|
|
if (!c->active_profile) {
|
|
PA_HASHMAP_FOREACH(profile, c->profiles, state) {
|
|
if (profile->available == PA_AVAILABLE_NO)
|
|
continue;
|
|
|
|
if (!c->active_profile || profile->priority > c->active_profile->priority)
|
|
c->active_profile = profile;
|
|
}
|
|
/* If all profiles are not available, then we still need to pick one */
|
|
if (!c->active_profile) {
|
|
PA_HASHMAP_FOREACH(profile, c->profiles, state)
|
|
if (!c->active_profile || profile->priority > c->active_profile->priority)
|
|
c->active_profile = profile;
|
|
}
|
|
pa_assert(c->active_profile);
|
|
}
|
|
|
|
pa_device_init_description(c->proplist, c);
|
|
pa_device_init_icon(c->proplist, true);
|
|
pa_device_init_intended_roles(c->proplist);
|
|
|
|
pa_assert_se(pa_idxset_put(core->cards, c, &c->index) >= 0);
|
|
|
|
pa_log_info("Created %u \"%s\"", c->index, c->name);
|
|
pa_subscription_post(core, PA_SUBSCRIPTION_EVENT_CARD|PA_SUBSCRIPTION_EVENT_NEW, c->index);
|
|
|
|
pa_hook_fire(&core->hooks[PA_CORE_HOOK_CARD_PUT], c);
|
|
return c;
|
|
}
|
|
|
|
void pa_card_free(pa_card *c) {
|
|
pa_core *core;
|
|
|
|
pa_assert(c);
|
|
pa_assert(c->core);
|
|
|
|
core = c->core;
|
|
|
|
pa_hook_fire(&core->hooks[PA_CORE_HOOK_CARD_UNLINK], c);
|
|
|
|
pa_namereg_unregister(core, c->name);
|
|
|
|
pa_idxset_remove_by_data(c->core->cards, c, NULL);
|
|
|
|
pa_log_info("Freed %u \"%s\"", c->index, c->name);
|
|
|
|
pa_subscription_post(c->core, PA_SUBSCRIPTION_EVENT_CARD|PA_SUBSCRIPTION_EVENT_REMOVE, c->index);
|
|
|
|
pa_assert(pa_idxset_isempty(c->sinks));
|
|
pa_idxset_free(c->sinks, NULL);
|
|
pa_assert(pa_idxset_isempty(c->sources));
|
|
pa_idxset_free(c->sources, NULL);
|
|
|
|
pa_hashmap_free(c->ports);
|
|
|
|
if (c->profiles)
|
|
pa_hashmap_free(c->profiles);
|
|
|
|
pa_proplist_free(c->proplist);
|
|
pa_xfree(c->driver);
|
|
pa_xfree(c->name);
|
|
pa_xfree(c);
|
|
}
|
|
|
|
void pa_card_add_profile(pa_card *c, pa_card_profile *profile) {
|
|
pa_assert(c);
|
|
pa_assert(profile);
|
|
|
|
/* take ownership of the profile */
|
|
pa_assert_se(pa_hashmap_put(c->profiles, profile->name, profile) >= 0);
|
|
profile->card = c;
|
|
|
|
pa_subscription_post(c->core, PA_SUBSCRIPTION_EVENT_CARD|PA_SUBSCRIPTION_EVENT_CHANGE, c->index);
|
|
|
|
pa_hook_fire(&c->core->hooks[PA_CORE_HOOK_CARD_PROFILE_ADDED], profile);
|
|
}
|
|
|
|
static const char* profile_name_for_dir(pa_card_profile *cp, pa_direction_t dir) {
|
|
if (dir == PA_DIRECTION_OUTPUT && cp->output_name)
|
|
return cp->output_name;
|
|
if (dir == PA_DIRECTION_INPUT && cp->input_name)
|
|
return cp->input_name;
|
|
return cp->name;
|
|
}
|
|
|
|
static void update_port_preferred_profile(pa_card *c) {
|
|
pa_sink *sink;
|
|
pa_source *source;
|
|
uint32_t state;
|
|
|
|
PA_IDXSET_FOREACH(sink, c->sinks, state)
|
|
if (sink->active_port)
|
|
pa_device_port_set_preferred_profile(sink->active_port, profile_name_for_dir(c->active_profile, PA_DIRECTION_OUTPUT));
|
|
PA_IDXSET_FOREACH(source, c->sources, state)
|
|
if (source->active_port)
|
|
pa_device_port_set_preferred_profile(source->active_port, profile_name_for_dir(c->active_profile, PA_DIRECTION_INPUT));
|
|
}
|
|
|
|
int pa_card_set_profile(pa_card *c, pa_card_profile *profile, bool save) {
|
|
int r;
|
|
|
|
pa_assert(c);
|
|
pa_assert(profile);
|
|
pa_assert(profile->card == c);
|
|
|
|
if (!c->set_profile) {
|
|
pa_log_debug("set_profile() operation not implemented for card %u \"%s\"", c->index, c->name);
|
|
return -PA_ERR_NOTIMPLEMENTED;
|
|
}
|
|
|
|
if (c->active_profile == profile) {
|
|
if (save && !c->save_profile) {
|
|
update_port_preferred_profile(c);
|
|
c->save_profile = true;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
if ((r = c->set_profile(c, profile)) < 0)
|
|
return r;
|
|
|
|
pa_subscription_post(c->core, PA_SUBSCRIPTION_EVENT_CARD|PA_SUBSCRIPTION_EVENT_CHANGE, c->index);
|
|
|
|
pa_log_info("Changed profile of card %u \"%s\" to %s", c->index, c->name, profile->name);
|
|
|
|
c->active_profile = profile;
|
|
c->save_profile = save;
|
|
|
|
if (save)
|
|
update_port_preferred_profile(c);
|
|
|
|
pa_hook_fire(&c->core->hooks[PA_CORE_HOOK_CARD_PROFILE_CHANGED], c);
|
|
|
|
return 0;
|
|
}
|
|
|
|
void pa_card_set_preferred_port(pa_card *c, pa_direction_t direction, pa_device_port *port) {
|
|
pa_device_port *old_port;
|
|
const char *old_port_str;
|
|
const char *new_port_str;
|
|
pa_card_preferred_port_changed_hook_data data;
|
|
|
|
pa_assert(c);
|
|
|
|
if (direction == PA_DIRECTION_INPUT) {
|
|
old_port = c->preferred_input_port;
|
|
old_port_str = c->preferred_input_port ? c->preferred_input_port->name : "(unset)";
|
|
} else {
|
|
old_port = c->preferred_output_port;
|
|
old_port_str = c->preferred_output_port ? c->preferred_output_port->name : "(unset)";
|
|
}
|
|
|
|
if (port == old_port)
|
|
return;
|
|
|
|
new_port_str = port ? port->name : "(unset)";
|
|
|
|
if (direction == PA_DIRECTION_INPUT) {
|
|
c->preferred_input_port = port;
|
|
pa_log_debug("%s: preferred_input_port: %s -> %s", c->name, old_port_str, new_port_str);
|
|
} else {
|
|
c->preferred_output_port = port;
|
|
pa_log_debug("%s: preferred_output_port: %s -> %s", c->name, old_port_str, new_port_str);
|
|
}
|
|
|
|
data.card = c;
|
|
data.direction = direction;
|
|
pa_hook_fire(&c->core->hooks[PA_CORE_HOOK_CARD_PREFERRED_PORT_CHANGED], &data);
|
|
}
|
|
|
|
int pa_card_suspend(pa_card *c, bool suspend, pa_suspend_cause_t cause) {
|
|
pa_sink *sink;
|
|
pa_source *source;
|
|
uint32_t idx;
|
|
int ret = 0;
|
|
|
|
pa_assert(c);
|
|
pa_assert(cause != 0);
|
|
|
|
PA_IDXSET_FOREACH(sink, c->sinks, idx) {
|
|
int r;
|
|
|
|
if ((r = pa_sink_suspend(sink, suspend, cause)) < 0)
|
|
ret = r;
|
|
}
|
|
|
|
PA_IDXSET_FOREACH(source, c->sources, idx) {
|
|
int r;
|
|
|
|
if ((r = pa_source_suspend(source, suspend, cause)) < 0)
|
|
ret = r;
|
|
}
|
|
|
|
return ret;
|
|
}
|