aboutsummaryrefslogtreecommitdiffstats
path: root/meta-ivi/recipes-connectivity/bluez5/bluez5/0011-plugins-service-Add-Blocked-property.patch
blob: 4fb4a5039d316bb443836b785f1432d552db6161 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
From fd98f8eec102c01ea1fffccf7f520a5eaf2153e0 Mon Sep 17 00:00:00 2001
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Date: Sat, 8 Feb 2014 14:46:18 +0200
Subject: [PATCH 11/12] plugins/service: Add Blocked property

---
 plugins/service.c | 34 ++++++++++++++++++++++++++++++++++
 1 file changed, 34 insertions(+)

diff --git a/plugins/service.c b/plugins/service.c
index bca3abd..d1db278 100644
--- a/plugins/service.c
+++ b/plugins/service.c
@@ -269,6 +269,39 @@ static void set_auto_connect(const GDBusPropertyTable *property,
 	g_dbus_pending_property_success(id);
 }
 
+static gboolean get_blocked(const GDBusPropertyTable *property,
+					DBusMessageIter *iter, void *user_data)
+{
+	struct service_data *data = user_data;
+	dbus_bool_t value = btd_service_is_blocked(data->service);
+
+	dbus_message_iter_append_basic(iter, DBUS_TYPE_BOOLEAN, &value);
+
+	return TRUE;
+}
+
+static void set_blocked(const GDBusPropertyTable *property,
+						DBusMessageIter *value,
+						GDBusPendingPropertySet id,
+						void *user_data)
+{
+	struct service_data *data = user_data;
+	dbus_bool_t b;
+
+	if (dbus_message_iter_get_arg_type(value) != DBUS_TYPE_BOOLEAN) {
+		g_dbus_pending_property_error(id,
+					ERROR_INTERFACE ".InvalidArguments",
+					"Invalid arguments in method call");
+		return;
+	}
+
+	dbus_message_iter_get_basic(value, &b);
+
+	btd_service_set_blocked(data->service, b);
+
+	g_dbus_pending_property_success(id);
+}
+
 static const GDBusPropertyTable service_properties[] = {
 	{ "Device", "o", get_device, NULL, NULL },
 	{ "State", "s", get_state, NULL, NULL },
@@ -276,6 +309,7 @@ static const GDBusPropertyTable service_properties[] = {
 	{ "LocalUUID", "s", get_local_uuid, NULL, local_uuid_exists },
 	{ "Version", "q", get_version, NULL, version_exists },
 	{ "AutoConnect", "b", get_auto_connect, set_auto_connect, NULL },
+	{ "Blocked", "b", get_blocked, set_blocked, NULL },
 	{ }
 };
 
-- 
2.2.0