2006-10-27 22:46:36 +08:00
|
|
|
/*
|
|
|
|
*
|
|
|
|
* BlueZ - Bluetooth protocol stack for Linux
|
|
|
|
*
|
2007-01-22 07:23:19 +08:00
|
|
|
* Copyright (C) 2004-2007 Marcel Holtmann <marcel@holtmann.org>
|
2006-10-27 22:46:36 +08:00
|
|
|
*
|
|
|
|
*
|
|
|
|
* 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>
|
2007-01-12 08:37:42 +08:00
|
|
|
#include <errno.h>
|
2006-11-12 07:14:14 +08:00
|
|
|
#include <unistd.h>
|
2007-01-12 08:37:42 +08:00
|
|
|
#include <stdlib.h>
|
2006-11-12 07:14:14 +08:00
|
|
|
#include <string.h>
|
2006-10-27 22:46:36 +08:00
|
|
|
#include <errno.h>
|
2006-11-12 07:14:14 +08:00
|
|
|
#include <signal.h>
|
2007-01-12 08:37:42 +08:00
|
|
|
|
2006-11-12 07:14:14 +08:00
|
|
|
#include <dbus/dbus.h>
|
|
|
|
|
2007-01-20 13:26:15 +08:00
|
|
|
#include <glib.h>
|
|
|
|
|
2006-11-12 07:14:14 +08:00
|
|
|
#include "dbus.h"
|
|
|
|
#include "logging.h"
|
|
|
|
|
2007-01-22 08:00:50 +08:00
|
|
|
#include "server.h"
|
2006-11-12 07:14:14 +08:00
|
|
|
#include "input-service.h"
|
|
|
|
|
|
|
|
static GMainLoop *main_loop;
|
|
|
|
|
|
|
|
static void sig_term(int sig)
|
|
|
|
{
|
2007-01-20 13:26:15 +08:00
|
|
|
g_main_loop_quit(main_loop);
|
2006-11-12 07:14:14 +08:00
|
|
|
}
|
2006-10-27 22:46:36 +08:00
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2006-11-12 07:14:14 +08:00
|
|
|
struct sigaction sa;
|
|
|
|
|
2007-01-20 05:04:35 +08:00
|
|
|
start_logging("input", "Bluetooth Input daemon");
|
2006-11-12 07:14:14 +08:00
|
|
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
/* Create event loop */
|
2007-01-20 13:26:15 +08:00
|
|
|
main_loop = g_main_loop_new(NULL, FALSE);
|
2006-11-12 07:14:14 +08:00
|
|
|
|
|
|
|
if (input_dbus_init() < 0) {
|
|
|
|
error("Unable to get on D-Bus");
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2007-01-22 07:23:19 +08:00
|
|
|
server_start();
|
|
|
|
|
2007-01-20 13:26:15 +08:00
|
|
|
g_main_loop_run(main_loop);
|
2006-11-12 07:14:14 +08:00
|
|
|
|
2007-01-22 07:23:19 +08:00
|
|
|
server_stop();
|
|
|
|
|
2007-01-18 22:28:18 +08:00
|
|
|
input_dbus_exit();
|
|
|
|
|
2007-01-22 05:16:23 +08:00
|
|
|
g_main_loop_unref(main_loop);
|
|
|
|
|
|
|
|
info("Exit");
|
|
|
|
|
|
|
|
stop_logging();
|
|
|
|
|
2006-10-27 22:46:36 +08:00
|
|
|
return 0;
|
|
|
|
}
|