diff --git a/Makefile.tools b/Makefile.tools
index d9cb36c..6c381ca 100644
--- a/Makefile.tools
+++ b/Makefile.tools
if CLIENT
bin_PROGRAMS += client/bluetoothctl
-client_bluetoothctl_SOURCES = $(gdbus_sources) client/main.c client/display.h
+client_bluetoothctl_SOURCES = $(gdbus_sources) \
+ client/main.c client/display.h \
+ client/agent.h client/agent.c
client_bluetoothctl_LDADD = @GLIB_LIBS@ @DBUS_LIBS@ -lreadline
endif
diff --git a/client/agent.c b/client/agent.c
new file mode 100644
index 0000000..0a82e21
--- /dev/null
+++ b/client/agent.c
+/*
+ *
+ * BlueZ - Bluetooth protocol stack for Linux
+ *
+ * Copyright (C) 2012 Intel Corporation. All rights reserved.
+ *
+ *
+ * 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 <stdio.h>
+#include <readline/readline.h>
+#include <gdbus.h>
+
+#include "display.h"
+#include "agent.h"
+
+static gboolean agent_registered = FALSE;
+
+static DBusMessage *release_agent(DBusConnection *conn,
+ DBusMessage *msg, void *user_data)
+{
+ agent_registered = FALSE;
+
+ g_dbus_unregister_interface(conn, "/org/bluez/agent",
+ "org.bluez.Agent1");
+
+ return dbus_message_new_method_return(msg);
+}
+
+static const GDBusMethodTable methods[] = {
+ { GDBUS_METHOD("Release", NULL, NULL, release_agent) },
+ { }
+};
+
+void agent_register(DBusConnection *conn, GDBusProxy *manager)
+{
+ if (agent_registered == TRUE) {
+ printf("Agent is already registered\n");
+ return;
+ }
+
+ if (g_dbus_register_interface(conn, "/org/bluez/agent",
+ "org.bluez.Agent1", methods,
+ NULL, NULL, NULL, NULL) == FALSE) {
+ printf("Failed to register agent object\n");
+ return;
+ }
+
+ agent_registered = TRUE;
+}
+
+void agent_unregister(DBusConnection *conn, GDBusProxy *manager)
+{
+ if (agent_registered == FALSE) {
+ printf("No agent is registered\n");
+ return;
+ }
+
+ if (g_dbus_unregister_interface(conn, "/org/bluez/agent",
+ "org.bluez.Agent1") == FALSE) {
+ printf("Failed to unregister agent object\n");
+ return;
+ }
+
+ agent_registered = FALSE;
+}
diff --git a/client/agent.h b/client/agent.h
new file mode 100644
index 0000000..41e166d
--- /dev/null
+++ b/client/agent.h
+/*
+ *
+ * BlueZ - Bluetooth protocol stack for Linux
+ *
+ * Copyright (C) 2012 Intel Corporation. All rights reserved.
+ *
+ *
+ * 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
+ *
+ */
+
+void agent_register(DBusConnection *conn, GDBusProxy *manager);
+void agent_unregister(DBusConnection *conn, GDBusProxy *manager);
diff --git a/client/main.c b/client/main.c
index 8e66ea8..3977345 100644
--- a/client/main.c
+++ b/client/main.c
#include <glib.h>
#include <gdbus.h>
+#include "agent.h"
#include "display.h"
static GMainLoop *main_loop;
static GList *ctrl_list;
static GDBusProxy *default_ctrl;
+static GDBusProxy *agent_manager;
+static gboolean auto_register_agent = FALSE;
static void connect_handler(DBusConnection *connection, void *user_data)
{
begin_message();
print_adapter(proxy, "NEW");
end_message();
+ } else if (!strcmp(interface, "org.bluez.AgentManager1")) {
+ if (!agent_manager) {
+ agent_manager = proxy;
+
+ if (auto_register_agent == TRUE)
+ agent_register(dbus_conn, agent_manager);
+ }
}
}
if (default_ctrl == proxy)
default_ctrl = NULL;
+ } else if (!strcmp(interface, "org.bluez.AgentManager1")) {
+ if (agent_manager == proxy)
+ agent_manager = NULL;
}
}
g_free(str);
}
+static void cmd_agent(const char *arg)
+{
+ dbus_bool_t enable;
+
+ if (parse_argument_on_off(arg, &enable) == FALSE)
+ return;
+
+ if (enable == TRUE) {
+ auto_register_agent = TRUE;
+
+ if (agent_manager)
+ agent_register(dbus_conn, agent_manager);
+ else
+ printf("Agent registration enabled\n");
+ } else {
+ auto_register_agent = FALSE;
+
+ if (agent_manager)
+ agent_unregister(dbus_conn, agent_manager);
+ else
+ printf("Agent registration disabled\n");
+ }
+}
+
static void cmd_name(const char *arg)
{
char *name;
"Set controller pairable mode" },
{ "discoverable", "<on/off>", cmd_discoverable,
"Set controller discoverable mode" },
- { "quit", NULL, cmd_quit, "Quit program" },
- { "exit", NULL, cmd_quit },
+ { "agent", "<on/off>", cmd_agent, "Enable/disable agent" },
+ { "quit", NULL, cmd_quit, "Quit program" },
+ { "exit", NULL, cmd_quit },
{ "help" },
{ }
};
}
static gboolean option_version = FALSE;
+static gboolean option_agent = FALSE;
static GOptionEntry options[] = {
{ "version", 'v', 0, G_OPTION_ARG_NONE, &option_version,
"Show version information and exit" },
+ { "agent", 'a', 0, G_OPTION_ARG_NONE, &option_agent,
+ "Automatically register agent handler" },
{ NULL },
};
exit(0);
}
+ auto_register_agent = option_agent;
+
main_loop = g_main_loop_new(NULL, FALSE);
dbus_conn = g_dbus_setup_bus(DBUS_BUS_SYSTEM, NULL, NULL);