5 * Copyright (C) 2007-2012 Intel Corporation. All rights reserved.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
33 #define DBG(fmt, arg...) do { \
34 printf("%s() " fmt "\n", __FUNCTION__ , ## arg); \
37 static GMainLoop *main_loop = NULL;
39 static void sig_term(int sig)
41 g_main_loop_quit(main_loop);
44 static void disconnect_callback(DBusConnection *conn, void *user_data)
46 printf("D-Bus disconnect\n");
48 g_main_loop_quit(main_loop);
51 int main(int argc, char *argv[])
57 main_loop = g_main_loop_new(NULL, FALSE);
59 dbus_error_init(&err);
61 conn = g_dbus_setup_bus(DBUS_BUS_SYSTEM, NULL, &err);
63 if (dbus_error_is_set(&err) == TRUE) {
64 fprintf(stderr, "%s\n", err.message);
65 dbus_error_free(&err);
67 fprintf(stderr, "Can't register with system bus\n");
71 g_dbus_set_disconnect_function(conn, disconnect_callback, NULL, NULL);
73 memset(&sa, 0, sizeof(sa));
74 sa.sa_handler = sig_term;
75 sigaction(SIGINT, &sa, NULL);
76 sigaction(SIGTERM, &sa, NULL);
78 g_main_loop_run(main_loop);
80 dbus_connection_unref(conn);
82 g_main_loop_unref(main_loop);