diff options
author | Marcel Holtmann <marcel@holtmann.org> | 2008-03-22 15:37:36 +0000 |
---|---|---|
committer | Marcel Holtmann <marcel@holtmann.org> | 2008-03-22 15:37:36 +0000 |
commit | 29efa57d5a27b0cf5997381053be9cc48b2c2e80 (patch) | |
tree | 1eb1b9851e382f600a576e85c19e9d69cf3a730a /input/main.c | |
parent | 957ead88e8a90526631f1a767ba1006bc03b8084 (diff) |
Convert input service into a plugin
Diffstat (limited to 'input/main.c')
-rw-r--r-- | input/main.c | 71 |
1 files changed, 16 insertions, 55 deletions
diff --git a/input/main.c b/input/main.c index a3d83ff6..4589cc33 100644 --- a/input/main.c +++ b/input/main.c @@ -25,76 +25,37 @@ #include <config.h> #endif -#include <stdio.h> -#include <unistd.h> -#include <stdlib.h> -#include <string.h> #include <errno.h> -#include <signal.h> #include <dbus/dbus.h> -#include <glib.h> - +#include "plugin.h" #include "dbus.h" -#include "logging.h" - #include "manager.h" -static GMainLoop *main_loop; - -static void sig_term(int sig) -{ - g_main_loop_quit(main_loop); -} +static DBusConnection *conn; -int main(int argc, char *argv[]) +static int input_init(void) { - DBusConnection *conn; - struct sigaction sa; - - start_logging("input", "Bluetooth Input daemon"); + conn = dbus_bus_get(DBUS_BUS_SYSTEM, NULL); + if (conn == NULL) + return -EIO; - memset(&sa, 0, sizeof(sa)); - sa.sa_flags = SA_NOCLDSTOP; - sa.sa_handler = sig_term; - sigaction(SIGTERM, &sa, NULL); - sigaction(SIGINT, &sa, NULL); - - sa.sa_handler = SIG_IGN; - sigaction(SIGCHLD, &sa, NULL); - sigaction(SIGPIPE, &sa, NULL); - - enable_debug(); - - main_loop = g_main_loop_new(NULL, FALSE); - - conn = dbus_bus_system_setup_with_main_loop(NULL, NULL, NULL); - if (!conn) { - g_main_loop_unref(main_loop); - exit(1); - } - - if (input_init(conn) < 0) { + if (input_manager_init(conn) < 0) { dbus_connection_unref(conn); - g_main_loop_unref(main_loop); - exit(1); + return -EIO; } - if (argc > 1 && !strcmp(argv[1], "-s")) - register_external_service(conn, "input", "Input service", ""); + register_external_service(conn, "input", "Input service", ""); - g_main_loop_run(main_loop); + return 0; +} - input_exit(); +static void input_exit(void) +{ + input_manager_exit(); dbus_connection_unref(conn); - - g_main_loop_unref(main_loop); - - info("Exit"); - - stop_logging(); - - return 0; } + +BLUETOOTH_PLUGIN_DEFINE("input", input_init, input_exit) |