mirror of
https://git.kernel.org/pub/scm/bluetooth/bluez.git
synced 2024-11-25 21:24:16 +08:00
90ae9ec320
Remove old dbus error report function. This patch doesn't make things really really better, but is a start.
744 lines
17 KiB
C
744 lines
17 KiB
C
/*
|
|
*
|
|
* BlueZ - Bluetooth protocol stack for Linux
|
|
*
|
|
* Copyright (C) 2006-2010 Nokia Corporation
|
|
* Copyright (C) 2004-2010 Marcel Holtmann <marcel@holtmann.org>
|
|
*
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program 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 General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include <stdint.h>
|
|
#include <errno.h>
|
|
|
|
#include <bluetooth/bluetooth.h>
|
|
#include <bluetooth/sdp.h>
|
|
|
|
#include <glib.h>
|
|
#include <dbus/dbus.h>
|
|
#include <gdbus.h>
|
|
|
|
#include "log.h"
|
|
|
|
#include "device.h"
|
|
#include "avdtp.h"
|
|
#include "media.h"
|
|
#include "a2dp.h"
|
|
#include "error.h"
|
|
#include "sink.h"
|
|
#include "dbus-common.h"
|
|
#include "../src/adapter.h"
|
|
#include "../src/device.h"
|
|
|
|
#define STREAM_SETUP_RETRY_TIMER 2
|
|
|
|
struct pending_request {
|
|
DBusConnection *conn;
|
|
DBusMessage *msg;
|
|
unsigned int id;
|
|
};
|
|
|
|
struct sink {
|
|
struct audio_device *dev;
|
|
struct avdtp *session;
|
|
struct avdtp_stream *stream;
|
|
unsigned int cb_id;
|
|
guint retry_id;
|
|
avdtp_session_state_t session_state;
|
|
avdtp_state_t stream_state;
|
|
sink_state_t state;
|
|
struct pending_request *connect;
|
|
struct pending_request *disconnect;
|
|
DBusConnection *conn;
|
|
};
|
|
|
|
struct sink_state_callback {
|
|
sink_state_cb cb;
|
|
void *user_data;
|
|
unsigned int id;
|
|
};
|
|
|
|
static GSList *sink_callbacks = NULL;
|
|
|
|
static unsigned int avdtp_callback_id = 0;
|
|
|
|
static char *str_state[] = {
|
|
"SINK_STATE_DISCONNECTED",
|
|
"SINK_STATE_CONNECTING",
|
|
"SINK_STATE_CONNECTED",
|
|
"SINK_STATE_PLAYING",
|
|
};
|
|
|
|
static const char *state2str(sink_state_t state)
|
|
{
|
|
switch (state) {
|
|
case SINK_STATE_DISCONNECTED:
|
|
return "disconnected";
|
|
case SINK_STATE_CONNECTING:
|
|
return "connecting";
|
|
case SINK_STATE_CONNECTED:
|
|
return "connected";
|
|
case SINK_STATE_PLAYING:
|
|
return "playing";
|
|
default:
|
|
error("Invalid sink state %d", state);
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
static void sink_set_state(struct audio_device *dev, sink_state_t new_state)
|
|
{
|
|
struct sink *sink = dev->sink;
|
|
const char *state_str;
|
|
sink_state_t old_state = sink->state;
|
|
GSList *l;
|
|
|
|
sink->state = new_state;
|
|
|
|
state_str = state2str(new_state);
|
|
if (state_str)
|
|
emit_property_changed(dev->conn, dev->path,
|
|
AUDIO_SINK_INTERFACE, "State",
|
|
DBUS_TYPE_STRING, &state_str);
|
|
|
|
DBG("State changed %s: %s -> %s", dev->path, str_state[old_state],
|
|
str_state[new_state]);
|
|
|
|
for (l = sink_callbacks; l != NULL; l = l->next) {
|
|
struct sink_state_callback *cb = l->data;
|
|
cb->cb(dev, old_state, new_state, cb->user_data);
|
|
}
|
|
}
|
|
|
|
static void avdtp_state_callback(struct audio_device *dev,
|
|
struct avdtp *session,
|
|
avdtp_session_state_t old_state,
|
|
avdtp_session_state_t new_state,
|
|
void *user_data)
|
|
{
|
|
struct sink *sink = dev->sink;
|
|
|
|
if (sink == NULL)
|
|
return;
|
|
|
|
switch (new_state) {
|
|
case AVDTP_SESSION_STATE_DISCONNECTED:
|
|
if (sink->state != SINK_STATE_CONNECTING) {
|
|
gboolean value = FALSE;
|
|
g_dbus_emit_signal(dev->conn, dev->path,
|
|
AUDIO_SINK_INTERFACE, "Disconnected",
|
|
DBUS_TYPE_INVALID);
|
|
emit_property_changed(dev->conn, dev->path,
|
|
AUDIO_SINK_INTERFACE, "Connected",
|
|
DBUS_TYPE_BOOLEAN, &value);
|
|
}
|
|
sink_set_state(dev, SINK_STATE_DISCONNECTED);
|
|
break;
|
|
case AVDTP_SESSION_STATE_CONNECTING:
|
|
sink_set_state(dev, SINK_STATE_CONNECTING);
|
|
break;
|
|
case AVDTP_SESSION_STATE_CONNECTED:
|
|
break;
|
|
}
|
|
|
|
sink->session_state = new_state;
|
|
}
|
|
|
|
static void pending_request_free(struct audio_device *dev,
|
|
struct pending_request *pending)
|
|
{
|
|
if (pending->conn)
|
|
dbus_connection_unref(pending->conn);
|
|
if (pending->msg)
|
|
dbus_message_unref(pending->msg);
|
|
if (pending->id)
|
|
a2dp_cancel(dev, pending->id);
|
|
|
|
g_free(pending);
|
|
}
|
|
|
|
static void stream_state_changed(struct avdtp_stream *stream,
|
|
avdtp_state_t old_state,
|
|
avdtp_state_t new_state,
|
|
struct avdtp_error *err,
|
|
void *user_data)
|
|
{
|
|
struct audio_device *dev = user_data;
|
|
struct sink *sink = dev->sink;
|
|
gboolean value;
|
|
|
|
if (err)
|
|
return;
|
|
|
|
switch (new_state) {
|
|
case AVDTP_STATE_IDLE:
|
|
if (sink->disconnect) {
|
|
DBusMessage *reply;
|
|
struct pending_request *p;
|
|
|
|
p = sink->disconnect;
|
|
sink->disconnect = NULL;
|
|
|
|
reply = dbus_message_new_method_return(p->msg);
|
|
g_dbus_send_message(p->conn, reply);
|
|
pending_request_free(dev, p);
|
|
}
|
|
|
|
if (sink->session) {
|
|
avdtp_unref(sink->session);
|
|
sink->session = NULL;
|
|
}
|
|
sink->stream = NULL;
|
|
sink->cb_id = 0;
|
|
break;
|
|
case AVDTP_STATE_OPEN:
|
|
if (old_state == AVDTP_STATE_CONFIGURED &&
|
|
sink->state == SINK_STATE_CONNECTING) {
|
|
value = TRUE;
|
|
g_dbus_emit_signal(dev->conn, dev->path,
|
|
AUDIO_SINK_INTERFACE,
|
|
"Connected",
|
|
DBUS_TYPE_INVALID);
|
|
emit_property_changed(dev->conn, dev->path,
|
|
AUDIO_SINK_INTERFACE,
|
|
"Connected",
|
|
DBUS_TYPE_BOOLEAN, &value);
|
|
} else if (old_state == AVDTP_STATE_STREAMING) {
|
|
value = FALSE;
|
|
g_dbus_emit_signal(dev->conn, dev->path,
|
|
AUDIO_SINK_INTERFACE,
|
|
"Stopped",
|
|
DBUS_TYPE_INVALID);
|
|
emit_property_changed(dev->conn, dev->path,
|
|
AUDIO_SINK_INTERFACE,
|
|
"Playing",
|
|
DBUS_TYPE_BOOLEAN, &value);
|
|
}
|
|
sink_set_state(dev, SINK_STATE_CONNECTED);
|
|
break;
|
|
case AVDTP_STATE_STREAMING:
|
|
value = TRUE;
|
|
g_dbus_emit_signal(dev->conn, dev->path, AUDIO_SINK_INTERFACE,
|
|
"Playing", DBUS_TYPE_INVALID);
|
|
emit_property_changed(dev->conn, dev->path,
|
|
AUDIO_SINK_INTERFACE, "Playing",
|
|
DBUS_TYPE_BOOLEAN, &value);
|
|
sink_set_state(dev, SINK_STATE_PLAYING);
|
|
break;
|
|
case AVDTP_STATE_CONFIGURED:
|
|
case AVDTP_STATE_CLOSING:
|
|
case AVDTP_STATE_ABORTING:
|
|
default:
|
|
break;
|
|
}
|
|
|
|
sink->stream_state = new_state;
|
|
}
|
|
|
|
static void error_failed(DBusConnection *conn, DBusMessage *msg,
|
|
const char *desc)
|
|
{
|
|
DBusMessage *reply = btd_error_failed(msg, desc);
|
|
g_dbus_send_message(conn, reply);
|
|
}
|
|
|
|
static gboolean stream_setup_retry(gpointer user_data)
|
|
{
|
|
struct sink *sink = user_data;
|
|
struct pending_request *pending = sink->connect;
|
|
|
|
sink->retry_id = 0;
|
|
|
|
if (sink->stream_state >= AVDTP_STATE_OPEN) {
|
|
DBG("Stream successfully created, after XCASE connect:connect");
|
|
if (pending->msg) {
|
|
DBusMessage *reply;
|
|
reply = dbus_message_new_method_return(pending->msg);
|
|
g_dbus_send_message(pending->conn, reply);
|
|
}
|
|
} else {
|
|
DBG("Stream setup failed, after XCASE connect:connect");
|
|
if (pending->msg)
|
|
error_failed(pending->conn, pending->msg, "Stream setup failed");
|
|
}
|
|
|
|
sink->connect = NULL;
|
|
pending_request_free(sink->dev, pending);
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
static void stream_setup_complete(struct avdtp *session, struct a2dp_sep *sep,
|
|
struct avdtp_stream *stream,
|
|
struct avdtp_error *err, void *user_data)
|
|
{
|
|
struct sink *sink = user_data;
|
|
struct pending_request *pending;
|
|
|
|
pending = sink->connect;
|
|
|
|
pending->id = 0;
|
|
|
|
if (stream) {
|
|
DBG("Stream successfully created");
|
|
|
|
if (pending->msg) {
|
|
DBusMessage *reply;
|
|
reply = dbus_message_new_method_return(pending->msg);
|
|
g_dbus_send_message(pending->conn, reply);
|
|
}
|
|
|
|
sink->connect = NULL;
|
|
pending_request_free(sink->dev, pending);
|
|
|
|
return;
|
|
}
|
|
|
|
avdtp_unref(sink->session);
|
|
sink->session = NULL;
|
|
if (avdtp_error_category(err) == AVDTP_ERRNO
|
|
&& avdtp_error_posix_errno(err) != EHOSTDOWN) {
|
|
DBG("connect:connect XCASE detected");
|
|
sink->retry_id = g_timeout_add_seconds(STREAM_SETUP_RETRY_TIMER,
|
|
stream_setup_retry,
|
|
sink);
|
|
} else {
|
|
if (pending->msg)
|
|
error_failed(pending->conn, pending->msg, "Stream setup failed");
|
|
sink->connect = NULL;
|
|
pending_request_free(sink->dev, pending);
|
|
DBG("Stream setup failed : %s", avdtp_strerror(err));
|
|
}
|
|
}
|
|
|
|
static void select_complete(struct avdtp *session, struct a2dp_sep *sep,
|
|
GSList *caps, void *user_data)
|
|
{
|
|
struct sink *sink = user_data;
|
|
struct pending_request *pending;
|
|
int id;
|
|
|
|
pending = sink->connect;
|
|
pending->id = 0;
|
|
|
|
id = a2dp_config(session, sep, stream_setup_complete, caps, sink);
|
|
if (id == 0)
|
|
goto failed;
|
|
|
|
pending->id = id;
|
|
return;
|
|
|
|
failed:
|
|
if (pending->msg)
|
|
error_failed(pending->conn, pending->msg, "Stream setup failed");
|
|
pending_request_free(sink->dev, pending);
|
|
sink->connect = NULL;
|
|
avdtp_unref(sink->session);
|
|
sink->session = NULL;
|
|
}
|
|
|
|
static void discovery_complete(struct avdtp *session, GSList *seps, struct avdtp_error *err,
|
|
void *user_data)
|
|
{
|
|
struct sink *sink = user_data;
|
|
struct pending_request *pending;
|
|
int id;
|
|
|
|
if (!sink->connect) {
|
|
avdtp_unref(sink->session);
|
|
sink->session = NULL;
|
|
return;
|
|
}
|
|
|
|
pending = sink->connect;
|
|
|
|
if (err) {
|
|
avdtp_unref(sink->session);
|
|
sink->session = NULL;
|
|
if (avdtp_error_category(err) == AVDTP_ERRNO
|
|
&& avdtp_error_posix_errno(err) != EHOSTDOWN) {
|
|
DBG("connect:connect XCASE detected");
|
|
sink->retry_id =
|
|
g_timeout_add_seconds(STREAM_SETUP_RETRY_TIMER,
|
|
stream_setup_retry,
|
|
sink);
|
|
} else
|
|
goto failed;
|
|
return;
|
|
}
|
|
|
|
DBG("Discovery complete");
|
|
|
|
id = a2dp_select_capabilities(sink->session, AVDTP_SEP_TYPE_SINK, NULL,
|
|
select_complete, sink);
|
|
if (id == 0)
|
|
goto failed;
|
|
|
|
pending->id = id;
|
|
return;
|
|
|
|
failed:
|
|
if (pending->msg)
|
|
error_failed(pending->conn, pending->msg, "Stream setup failed");
|
|
pending_request_free(sink->dev, pending);
|
|
sink->connect = NULL;
|
|
avdtp_unref(sink->session);
|
|
sink->session = NULL;
|
|
}
|
|
|
|
gboolean sink_setup_stream(struct sink *sink, struct avdtp *session)
|
|
{
|
|
if (sink->connect || sink->disconnect)
|
|
return FALSE;
|
|
|
|
if (session && !sink->session)
|
|
sink->session = avdtp_ref(session);
|
|
|
|
if (!sink->session)
|
|
return FALSE;
|
|
|
|
avdtp_set_auto_disconnect(sink->session, FALSE);
|
|
|
|
if (avdtp_discover(sink->session, discovery_complete, sink) < 0)
|
|
return FALSE;
|
|
|
|
sink->connect = g_new0(struct pending_request, 1);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
static DBusMessage *sink_connect(DBusConnection *conn,
|
|
DBusMessage *msg, void *data)
|
|
{
|
|
struct audio_device *dev = data;
|
|
struct sink *sink = dev->sink;
|
|
struct pending_request *pending;
|
|
|
|
if (!sink->session)
|
|
sink->session = avdtp_get(&dev->src, &dev->dst);
|
|
|
|
if (!sink->session)
|
|
return btd_error_failed(msg, "Unable to get a session");
|
|
|
|
if (sink->connect || sink->disconnect)
|
|
return btd_error_busy(msg);
|
|
|
|
if (sink->stream_state >= AVDTP_STATE_OPEN)
|
|
return btd_error_already_connected(msg);
|
|
|
|
if (!sink_setup_stream(sink, NULL))
|
|
return btd_error_failed(msg, "Failed to create a stream");
|
|
|
|
dev->auto_connect = FALSE;
|
|
|
|
pending = sink->connect;
|
|
|
|
pending->conn = dbus_connection_ref(conn);
|
|
pending->msg = dbus_message_ref(msg);
|
|
|
|
DBG("stream creation in progress");
|
|
|
|
return NULL;
|
|
}
|
|
|
|
static DBusMessage *sink_disconnect(DBusConnection *conn,
|
|
DBusMessage *msg, void *data)
|
|
{
|
|
struct audio_device *device = data;
|
|
struct sink *sink = device->sink;
|
|
struct pending_request *pending;
|
|
int err;
|
|
|
|
if (!sink->session)
|
|
return btd_error_not_connected(msg);
|
|
|
|
if (sink->connect || sink->disconnect)
|
|
return btd_error_busy(msg);
|
|
|
|
if (sink->stream_state < AVDTP_STATE_OPEN) {
|
|
DBusMessage *reply = dbus_message_new_method_return(msg);
|
|
if (!reply)
|
|
return NULL;
|
|
avdtp_unref(sink->session);
|
|
sink->session = NULL;
|
|
return reply;
|
|
}
|
|
|
|
err = avdtp_close(sink->session, sink->stream, FALSE);
|
|
if (err < 0)
|
|
return btd_error_failed(msg, strerror(-err));
|
|
|
|
pending = g_new0(struct pending_request, 1);
|
|
pending->conn = dbus_connection_ref(conn);
|
|
pending->msg = dbus_message_ref(msg);
|
|
sink->disconnect = pending;
|
|
|
|
return NULL;
|
|
}
|
|
|
|
static DBusMessage *sink_is_connected(DBusConnection *conn,
|
|
DBusMessage *msg,
|
|
void *data)
|
|
{
|
|
struct audio_device *device = data;
|
|
struct sink *sink = device->sink;
|
|
DBusMessage *reply;
|
|
dbus_bool_t connected;
|
|
|
|
reply = dbus_message_new_method_return(msg);
|
|
if (!reply)
|
|
return NULL;
|
|
|
|
connected = (sink->stream_state >= AVDTP_STATE_CONFIGURED);
|
|
|
|
dbus_message_append_args(reply, DBUS_TYPE_BOOLEAN, &connected,
|
|
DBUS_TYPE_INVALID);
|
|
|
|
return reply;
|
|
}
|
|
|
|
static DBusMessage *sink_get_properties(DBusConnection *conn,
|
|
DBusMessage *msg, void *data)
|
|
{
|
|
struct audio_device *device = data;
|
|
struct sink *sink = device->sink;
|
|
DBusMessage *reply;
|
|
DBusMessageIter iter;
|
|
DBusMessageIter dict;
|
|
const char *state;
|
|
gboolean value;
|
|
|
|
reply = dbus_message_new_method_return(msg);
|
|
if (!reply)
|
|
return NULL;
|
|
|
|
dbus_message_iter_init_append(reply, &iter);
|
|
|
|
dbus_message_iter_open_container(&iter, DBUS_TYPE_ARRAY,
|
|
DBUS_DICT_ENTRY_BEGIN_CHAR_AS_STRING
|
|
DBUS_TYPE_STRING_AS_STRING DBUS_TYPE_VARIANT_AS_STRING
|
|
DBUS_DICT_ENTRY_END_CHAR_AS_STRING, &dict);
|
|
|
|
/* Playing */
|
|
value = (sink->stream_state == AVDTP_STATE_STREAMING);
|
|
dict_append_entry(&dict, "Playing", DBUS_TYPE_BOOLEAN, &value);
|
|
|
|
/* Connected */
|
|
value = (sink->stream_state >= AVDTP_STATE_CONFIGURED);
|
|
dict_append_entry(&dict, "Connected", DBUS_TYPE_BOOLEAN, &value);
|
|
|
|
/* State */
|
|
state = state2str(sink->state);
|
|
if (state)
|
|
dict_append_entry(&dict, "State", DBUS_TYPE_STRING, &state);
|
|
|
|
dbus_message_iter_close_container(&iter, &dict);
|
|
|
|
return reply;
|
|
}
|
|
|
|
static GDBusMethodTable sink_methods[] = {
|
|
{ "Connect", "", "", sink_connect,
|
|
G_DBUS_METHOD_FLAG_ASYNC },
|
|
{ "Disconnect", "", "", sink_disconnect,
|
|
G_DBUS_METHOD_FLAG_ASYNC },
|
|
{ "IsConnected", "", "b", sink_is_connected,
|
|
G_DBUS_METHOD_FLAG_DEPRECATED },
|
|
{ "GetProperties", "", "a{sv}",sink_get_properties },
|
|
{ NULL, NULL, NULL, NULL }
|
|
};
|
|
|
|
static GDBusSignalTable sink_signals[] = {
|
|
{ "Connected", "", G_DBUS_SIGNAL_FLAG_DEPRECATED },
|
|
{ "Disconnected", "", G_DBUS_SIGNAL_FLAG_DEPRECATED },
|
|
{ "Playing", "", G_DBUS_SIGNAL_FLAG_DEPRECATED },
|
|
{ "Stopped", "", G_DBUS_SIGNAL_FLAG_DEPRECATED },
|
|
{ "PropertyChanged", "sv" },
|
|
{ NULL, NULL }
|
|
};
|
|
|
|
static void sink_free(struct audio_device *dev)
|
|
{
|
|
struct sink *sink = dev->sink;
|
|
|
|
if (sink->cb_id)
|
|
avdtp_stream_remove_cb(sink->session, sink->stream,
|
|
sink->cb_id);
|
|
|
|
if (sink->session)
|
|
avdtp_unref(sink->session);
|
|
|
|
if (sink->connect)
|
|
pending_request_free(dev, sink->connect);
|
|
|
|
if (sink->disconnect)
|
|
pending_request_free(dev, sink->disconnect);
|
|
|
|
if (sink->retry_id)
|
|
g_source_remove(sink->retry_id);
|
|
|
|
g_free(sink);
|
|
dev->sink = NULL;
|
|
}
|
|
|
|
static void path_unregister(void *data)
|
|
{
|
|
struct audio_device *dev = data;
|
|
|
|
DBG("Unregistered interface %s on path %s",
|
|
AUDIO_SINK_INTERFACE, dev->path);
|
|
|
|
sink_free(dev);
|
|
}
|
|
|
|
void sink_unregister(struct audio_device *dev)
|
|
{
|
|
g_dbus_unregister_interface(dev->conn, dev->path,
|
|
AUDIO_SINK_INTERFACE);
|
|
}
|
|
|
|
struct sink *sink_init(struct audio_device *dev)
|
|
{
|
|
struct sink *sink;
|
|
|
|
if (!g_dbus_register_interface(dev->conn, dev->path,
|
|
AUDIO_SINK_INTERFACE,
|
|
sink_methods, sink_signals, NULL,
|
|
dev, path_unregister))
|
|
return NULL;
|
|
|
|
DBG("Registered interface %s on path %s",
|
|
AUDIO_SINK_INTERFACE, dev->path);
|
|
|
|
if (avdtp_callback_id == 0)
|
|
avdtp_callback_id = avdtp_add_state_cb(avdtp_state_callback,
|
|
NULL);
|
|
|
|
sink = g_new0(struct sink, 1);
|
|
|
|
sink->dev = dev;
|
|
|
|
return sink;
|
|
}
|
|
|
|
gboolean sink_is_active(struct audio_device *dev)
|
|
{
|
|
struct sink *sink = dev->sink;
|
|
|
|
if (sink->session)
|
|
return TRUE;
|
|
|
|
return FALSE;
|
|
}
|
|
|
|
avdtp_state_t sink_get_state(struct audio_device *dev)
|
|
{
|
|
struct sink *sink = dev->sink;
|
|
|
|
return sink->stream_state;
|
|
}
|
|
|
|
gboolean sink_new_stream(struct audio_device *dev, struct avdtp *session,
|
|
struct avdtp_stream *stream)
|
|
{
|
|
struct sink *sink = dev->sink;
|
|
|
|
if (sink->stream)
|
|
return FALSE;
|
|
|
|
if (!sink->session)
|
|
sink->session = avdtp_ref(session);
|
|
|
|
sink->stream = stream;
|
|
|
|
sink->cb_id = avdtp_stream_add_cb(session, stream,
|
|
stream_state_changed, dev);
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
gboolean sink_shutdown(struct sink *sink)
|
|
{
|
|
if (!sink->session)
|
|
return FALSE;
|
|
|
|
avdtp_set_device_disconnect(sink->session, TRUE);
|
|
|
|
/* cancel pending connect */
|
|
if (sink->connect) {
|
|
struct pending_request *pending = sink->connect;
|
|
|
|
if (pending->msg)
|
|
error_failed(pending->conn, pending->msg,
|
|
"Stream setup failed");
|
|
pending_request_free(sink->dev, pending);
|
|
sink->connect = NULL;
|
|
|
|
avdtp_unref(sink->session);
|
|
sink->session = NULL;
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
/* disconnect already ongoing */
|
|
if (sink->disconnect)
|
|
return TRUE;
|
|
|
|
if (!sink->stream)
|
|
return FALSE;
|
|
|
|
if (avdtp_close(sink->session, sink->stream, FALSE) < 0)
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
unsigned int sink_add_state_cb(sink_state_cb cb, void *user_data)
|
|
{
|
|
struct sink_state_callback *state_cb;
|
|
static unsigned int id = 0;
|
|
|
|
state_cb = g_new(struct sink_state_callback, 1);
|
|
state_cb->cb = cb;
|
|
state_cb->user_data = user_data;
|
|
state_cb->id = ++id;
|
|
|
|
sink_callbacks = g_slist_append(sink_callbacks, state_cb);
|
|
|
|
return state_cb->id;
|
|
}
|
|
|
|
gboolean sink_remove_state_cb(unsigned int id)
|
|
{
|
|
GSList *l;
|
|
|
|
for (l = sink_callbacks; l != NULL; l = l->next) {
|
|
struct sink_state_callback *cb = l->data;
|
|
if (cb && cb->id == id) {
|
|
sink_callbacks = g_slist_remove(sink_callbacks, cb);
|
|
g_free(cb);
|
|
return TRUE;
|
|
}
|
|
}
|
|
|
|
return FALSE;
|
|
}
|