From: Mikel Astiz <mikel.astiz.oss@gmail.com>
To: linux-bluetooth@vger.kernel.org
Cc: Mikel Astiz <mikel.astiz@bmw-carit.de>
Subject: [RFC BlueZ v2 09/13] dbus: Add Connect/Disconnect to org.bluez.Service1
Date: Wed, 12 Jun 2013 09:06:51 +0200 [thread overview]
Message-ID: <1371020815-22330-10-git-send-email-mikel.astiz.oss@gmail.com> (raw)
In-Reply-To: <1371020815-22330-1-git-send-email-mikel.astiz.oss@gmail.com>
From: Mikel Astiz <mikel.astiz@bmw-carit.de>
Add the control methods to connect or disconnect a specific remote
service, in a similar way that org.bluez.Device1.ConnectProfile()/
.DisconnectProfile() do.
---
src/service.c | 81 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 80 insertions(+), 1 deletion(-)
diff --git a/src/service.c b/src/service.c
index fd2ef79..2bc45ac 100644
--- a/src/service.c
+++ b/src/service.c
@@ -109,6 +109,26 @@ static const char *state2dbus(btd_service_state_t state)
return NULL;
}
+static void send_dbus_reply(DBusMessage **p, bool state_ok, int err)
+{
+ DBusMessage *msg = *p;
+ DBusMessage *reply;
+
+ if (msg == NULL)
+ return;
+
+ if (state_ok)
+ reply = dbus_message_new_method_return(msg);
+ else if (err < 0)
+ reply = btd_error_failed(msg, strerror(-err));
+ else /* For some reason, the error was not set */
+ reply = btd_error_failed(msg, strerror(EIO));
+
+ g_dbus_send_message(btd_get_dbus_connection(), reply);
+ dbus_message_unref(msg);
+ *p = NULL;
+}
+
static void change_state(struct btd_service *service, btd_service_state_t state,
int err)
{
@@ -141,6 +161,12 @@ static void change_state(struct btd_service *service, btd_service_state_t state,
cb->cb(service, old, state, cb->user_data);
}
+
+ send_dbus_reply(&service->connect_msg,
+ state == BTD_SERVICE_STATE_CONNECTED, err);
+
+ send_dbus_reply(&service->disconnect_msg,
+ state == BTD_SERVICE_STATE_DISCONNECTED, err);
}
struct btd_service *btd_service_ref(struct btd_service *service)
@@ -397,6 +423,52 @@ static gboolean service_get_uuid(const GDBusPropertyTable *property,
return TRUE;
}
+static DBusMessage *service_connect(DBusConnection *conn, DBusMessage *msg,
+ void *user_data)
+{
+ struct btd_service *service = user_data;
+ int err;
+
+ if (service->state != BTD_SERVICE_STATE_DISCONNECTED)
+ return btd_error_already_connected(msg);
+
+ if (service->connect_msg != NULL || service->disconnect_msg)
+ return btd_error_busy(msg);
+
+ err = btd_service_connect(service);
+ if (err == -ENOTSUP)
+ return btd_error_not_supported(msg);
+ else if (err < 0)
+ return btd_error_failed(msg, strerror(-err));
+
+ service->connect_msg = dbus_message_ref(msg);
+
+ return NULL;
+}
+
+static DBusMessage *service_disconnect(DBusConnection *conn, DBusMessage *msg,
+ void *user_data)
+{
+ struct btd_service *service = user_data;
+ int err;
+
+ if (service->state == BTD_SERVICE_STATE_DISCONNECTED)
+ return btd_error_not_connected(msg);
+
+ if (service->disconnect_msg != NULL)
+ return btd_error_busy(msg);
+
+ err = btd_service_disconnect(service);
+ if (err == -ENOTSUP)
+ return btd_error_not_supported(msg);
+ else if (err < 0)
+ return btd_error_failed(msg, strerror(-err));
+
+ service->disconnect_msg = dbus_message_ref(msg);
+
+ return NULL;
+}
+
static gboolean service_get_state(const GDBusPropertyTable *property,
DBusMessageIter *iter, void *data)
{
@@ -410,6 +482,12 @@ static gboolean service_get_state(const GDBusPropertyTable *property,
return TRUE;
}
+static const GDBusMethodTable service_methods[] = {
+ { GDBUS_ASYNC_METHOD("Connect", NULL, NULL, service_connect) },
+ { GDBUS_ASYNC_METHOD("Disconnect", NULL, NULL, service_disconnect) },
+ { }
+};
+
static const GDBusPropertyTable service_properties[] = {
{ "Device", "o", service_get_device },
{ "UUID", "s", service_get_uuid },
@@ -428,7 +506,8 @@ static int service_register(struct btd_service *service, unsigned int id)
if (g_dbus_register_interface(dbus_conn,
path, SERVICE_INTERFACE,
- NULL, NULL, service_properties, service,
+ service_methods, NULL,
+ service_properties, service,
NULL) == FALSE) {
g_free(path);
error("Unable to register service interface for %s",
--
1.8.1.4
next prev parent reply other threads:[~2013-06-12 7:06 UTC|newest]
Thread overview: 20+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-12 7:06 [RFC BlueZ v2 00/13] Add experimental org.bluez.Service1 Mikel Astiz
2013-06-12 7:06 ` [RFC BlueZ v2 01/13] test: Remove obsolete test script Mikel Astiz
2013-06-12 7:06 ` [RFC BlueZ v2 02/13] test: Add UUID alias table to bluezutils.py Mikel Astiz
2013-06-12 7:06 ` [RFC BlueZ v2 03/13] test: Support human-friendly UUIDs in test-device Mikel Astiz
2013-06-12 7:06 ` [RFC BlueZ v2 04/13] test: Show human-friendly UUIDs in list-devices Mikel Astiz
2013-06-12 7:06 ` [RFC BlueZ v2 05/13] dbus: Add new org.bluez.Service1 Mikel Astiz
2013-06-12 7:06 ` [RFC BlueZ v2 06/13] dbus: Add Device property to org.bluez.Service1 Mikel Astiz
2013-06-12 7:06 ` [RFC BlueZ v2 07/13] dbus: Add UUID " Mikel Astiz
2013-06-12 7:06 ` [RFC BlueZ v2 08/13] dbus: Add state " Mikel Astiz
2013-06-12 7:06 ` Mikel Astiz [this message]
2013-06-12 7:06 ` [RFC BlueZ v2 10/13] doc: Add API documentation for org.bluez.Service1 Mikel Astiz
2013-06-12 7:06 ` [RFC BlueZ v2 11/13] dbus: Deprecate old profile-connecting API Mikel Astiz
2013-06-12 7:06 ` [RFC BlueZ v2 12/13] test: Add test-service script Mikel Astiz
2013-06-12 7:06 ` [RFC BlueZ v2 13/13] test: Add --uuid to test-service Mikel Astiz
2013-06-16 11:50 ` [RFC BlueZ v2 00/13] Add experimental org.bluez.Service1 Marcel Holtmann
2013-06-16 13:58 ` Mikel Astiz
2013-06-19 8:02 ` Marcel Holtmann
2013-06-19 13:00 ` Mikel Astiz
2013-06-19 21:13 ` Marcel Holtmann
2013-07-04 8:27 ` Mikel Astiz
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1371020815-22330-10-git-send-email-mikel.astiz.oss@gmail.com \
--to=mikel.astiz.oss@gmail.com \
--cc=linux-bluetooth@vger.kernel.org \
--cc=mikel.astiz@bmw-carit.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).