2008-10-11 Mark Doffman <mark.doffman@codethink.co.uk>
[platform/core/uifw/at-spi2-atk.git] / registryd / registry-main.c
1 /*
2  * AT-SPI - Assistive Technology Service Provider Interface
3  * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
4  *
5  * Copyright 2001, 2002 Sun Microsystems Inc.,
6  * Copyright 2001, 2002 Ximian, Inc.
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Library General Public
10  * License as published by the Free Software Foundation; either
11  * version 2 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Library General Public License for more details.
17  *
18  * You should have received a copy of the GNU Library General Public
19  * License along with this library; if not, write to the
20  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21  * Boston, MA 02111-1307, USA.
22  */
23
24 #include <stdlib.h>
25 #include <config.h>
26 #include <string.h>
27 #include <glib/gmain.h>
28
29 #include <spi-common/spi-dbus.h>
30
31 #include "registry.h"
32
33 static gchar *dbus_name = NULL;
34
35 static GOptionEntry optentries[] =
36 {
37   {"dbus-name", 0, 0, G_OPTION_ARG_STRING, &dbus_name, "Well-known name to register with D-Bus", NULL},
38   {NULL}
39 };
40
41 int
42 main (int argc, char **argv)
43 {
44   SpiRegistry *registry;
45   /*SpiDEController *dec;*/
46
47   GMainLoop *mainloop;
48   DBusConnection *bus;
49
50   GOptionContext *opt;
51
52   GError *err = NULL;
53   DBusError error;
54   int ret;
55
56   g_type_init();
57
58   /*Parse command options*/
59   opt = g_option_context_new(NULL);
60   g_option_context_add_main_entries(opt, optentries, NULL);
61
62   if (!g_option_context_parse(opt, &argc, &argv, &err))
63       g_error("Option parsing failed: %s\n", err->message);
64
65   if (dbus_name == NULL)
66       dbus_name = SPI_DBUS_NAME_REGISTRY;
67
68   dbus_error_init (&error);
69   bus = dbus_bus_get(DBUS_BUS_SESSION, &error);
70   if (!bus)
71   {
72     g_warning("Couldn't connect to dbus: %s\n", error.message);
73   }
74
75   mainloop = g_main_loop_new (NULL, FALSE);
76   dbus_connection_setup_with_g_main(bus, g_main_context_default());
77
78   ret = dbus_bus_request_name(bus, dbus_name, DBUS_NAME_FLAG_DO_NOT_QUEUE, &error);
79   if (ret == DBUS_REQUEST_NAME_REPLY_EXISTS)
80     {
81       g_error("Could not obtain D-Bus name - %s\n", dbus_name);
82     }
83   else
84     {
85       g_print ("SpiRegistry daemon is running with well-known name - %s\n", dbus_name);
86     }
87
88   /*dec = spi_registry_dec_new (bus);*/
89   registry = spi_registry_new (bus);
90
91   g_main_loop_run (mainloop);
92   return 0;
93 }