* [PATCH] Add watch for RFCOMM disconnect to HFP HF role
@ 2011-08-04 12:51 Frédéric Dalleau
2011-08-04 12:58 ` Johan Hedberg
0 siblings, 1 reply; 4+ messages in thread
From: Frédéric Dalleau @ 2011-08-04 12:51 UTC (permalink / raw)
To: linux-bluetooth; +Cc: Frédéric Dalleau
---
audio/gateway.c | 22 ++++++++++++++++++++++
1 files changed, 22 insertions(+), 0 deletions(-)
diff --git a/audio/gateway.c b/audio/gateway.c
index ec0ec5d..200930f 100644
--- a/audio/gateway.c
+++ b/audio/gateway.c
@@ -188,9 +188,29 @@ static void sco_connect_cb(GIOChannel *chan, GError *err, gpointer user_data)
(GIOFunc) sco_io_cb, dev);
}
+static gboolean rfcomm_disconnect_cb(GIOChannel *chan, GIOCondition cond,
+ struct audio_device *dev)
+{
+ struct gateway *gw = dev->gateway;
+
+ if (cond & G_IO_NVAL)
+ return FALSE;
+
+ if (cond & (G_IO_ERR | G_IO_HUP)) {
+ g_io_channel_shutdown(gw->rfcomm, TRUE, NULL);
+ g_io_channel_unref(gw->rfcomm);
+ gw->rfcomm = NULL;
+ change_state(dev, GATEWAY_STATE_DISCONNECTED);
+ return FALSE;
+ }
+
+ return TRUE;
+}
+
static void newconnection_reply(DBusPendingCall *call, void *data)
{
struct audio_device *dev = data;
+ struct gateway *gw = dev->gateway;
DBusMessage *reply = dbus_pending_call_steal_reply(call);
DBusError derr;
@@ -202,6 +222,8 @@ static void newconnection_reply(DBusPendingCall *call, void *data)
dbus_error_init(&derr);
if (!dbus_set_error_from_message(&derr, reply)) {
DBG("Agent reply: file descriptor passed successfully");
+ g_io_add_watch(gw->rfcomm, G_IO_ERR | G_IO_HUP | G_IO_NVAL,
+ (GIOFunc) rfcomm_disconnect_cb, dev);
change_state(dev, GATEWAY_STATE_CONNECTED);
goto done;
}
--
1.7.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] Add watch for RFCOMM disconnect to HFP HF role
2011-08-04 12:51 [PATCH] Add watch for RFCOMM disconnect to HFP HF role Frédéric Dalleau
@ 2011-08-04 12:58 ` Johan Hedberg
2011-08-04 13:09 ` Frédéric Dalleau
0 siblings, 1 reply; 4+ messages in thread
From: Johan Hedberg @ 2011-08-04 12:58 UTC (permalink / raw)
To: Frédéric Dalleau; +Cc: linux-bluetooth
Hi Frédéric,
On Thu, Aug 04, 2011, Frédéric Dalleau wrote:
> ---
> audio/gateway.c | 22 ++++++++++++++++++++++
> 1 files changed, 22 insertions(+), 0 deletions(-)
>
> diff --git a/audio/gateway.c b/audio/gateway.c
> index ec0ec5d..200930f 100644
> --- a/audio/gateway.c
> +++ b/audio/gateway.c
> @@ -188,9 +188,29 @@ static void sco_connect_cb(GIOChannel *chan, GError *err, gpointer user_data)
> (GIOFunc) sco_io_cb, dev);
> }
>
> +static gboolean rfcomm_disconnect_cb(GIOChannel *chan, GIOCondition cond,
> + struct audio_device *dev)
> +{
> + struct gateway *gw = dev->gateway;
> +
> + if (cond & G_IO_NVAL)
> + return FALSE;
> +
> + if (cond & (G_IO_ERR | G_IO_HUP)) {
Since this function is only called for NVAL, ERR and HUP, do you even
need to have this check here. Maybe you could just get rid of this
second if-statement.
Johan
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] Add watch for RFCOMM disconnect to HFP HF role
2011-08-04 12:58 ` Johan Hedberg
@ 2011-08-04 13:09 ` Frédéric Dalleau
2011-08-04 13:16 ` Johan Hedberg
0 siblings, 1 reply; 4+ messages in thread
From: Frédéric Dalleau @ 2011-08-04 13:09 UTC (permalink / raw)
To: Johan Hedberg, linux-bluetooth
Hi Johan,
>> + if (cond& (G_IO_ERR | G_IO_HUP)) {
>
> Since this function is only called for NVAL, ERR and HUP, do you even
> need to have this check here. Maybe you could just get rid of this
> second if-statement.
To be rigorous the test is not needed. This is more a matter of
consistency, since the code is nearly a copy paste of the existing
sco_io_cb.
If it is ok for you, I'll update both funcs.
Regards,
Frédéric
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] Add watch for RFCOMM disconnect to HFP HF role
2011-08-04 13:09 ` Frédéric Dalleau
@ 2011-08-04 13:16 ` Johan Hedberg
0 siblings, 0 replies; 4+ messages in thread
From: Johan Hedberg @ 2011-08-04 13:16 UTC (permalink / raw)
To: Frédéric Dalleau; +Cc: linux-bluetooth
On Thu, Aug 04, 2011, Frédéric Dalleau wrote:
> >>+ if (cond& (G_IO_ERR | G_IO_HUP)) {
> >
> >Since this function is only called for NVAL, ERR and HUP, do you even
> >need to have this check here. Maybe you could just get rid of this
> >second if-statement.
>
> To be rigorous the test is not needed. This is more a matter of
> consistency, since the code is nearly a copy paste of the existing
> sco_io_cb.
>
> If it is ok for you, I'll update both funcs.
Yes, though separate patches please.
Johan
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2011-08-04 13:16 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-08-04 12:51 [PATCH] Add watch for RFCOMM disconnect to HFP HF role Frédéric Dalleau
2011-08-04 12:58 ` Johan Hedberg
2011-08-04 13:09 ` Frédéric Dalleau
2011-08-04 13:16 ` Johan Hedberg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).