Merge branch 'master' of git+ssh://git.codethink.co.uk/git/atspi-dbus
[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   GMainLoop *mainloop;
46   GOptionContext *opt;
47
48   GError *err = NULL;
49   DBusError error;
50   int ret;
51
52   g_type_init();
53
54   /*Parse command options*/
55   opt = g_option_context_new(NULL);
56   g_option_context_add_main_entries(opt, optentries, NULL);
57
58   if (!g_option_context_parse(opt, &argc, &argv, &err))
59       g_error("Option parsing failed: %s\n", err->message);
60
61   if (dbus_name == NULL)
62       dbus_name = SPI_DBUS_NAME_REGISTRY;
63
64   registry = spi_registry_new ();
65
66   mainloop = g_main_loop_new (NULL, FALSE);
67
68   dbus_error_init (&error);
69   ret = dbus_bus_request_name(registry->droute.bus, dbus_name, DBUS_NAME_FLAG_DO_NOT_QUEUE, &error);
70
71   if (ret == DBUS_REQUEST_NAME_REPLY_EXISTS)
72     {
73       g_error("Could not obtain D-Bus name - %s\n", dbus_name);
74     }
75   else
76     {
77       g_print ("SpiRegistry daemon is running with well-known name - %s\n", dbus_name);
78       g_main_loop_run (mainloop);
79     }
80
81   return 0;
82 }