Do not start if an instance already owns org.freedesktop.atspi.Registry
[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 #ifdef AT_SPI_DEBUG
25 #include <stdlib.h>
26 #endif
27
28 #include <config.h>
29 #include <string.h>
30 #include <gdk/gdkx.h>
31 #include <glib/gmain.h>
32
33 #include <spi-common/spi-dbus.h>
34
35 #include "registry.h"
36
37 #define spi_get_display() GDK_DISPLAY()
38
39 static void registry_set_ior (SpiRegistry *registry);
40
41 int
42 main (int argc, char **argv)
43 {
44   int          ret;
45   char        *obj_id;
46   const char  *display_name;
47   char        *cp, *dp;
48   SpiRegistry *registry;
49   DBusError error;
50   GMainLoop *mainloop;
51
52   g_type_init();
53
54   obj_id = "OAFIID:Accessibility_Registry:1.0";
55
56   registry = spi_registry_new ();
57
58   display_name = g_getenv ("AT_SPI_DISPLAY");
59   if (!display_name)
60   {
61       display_name = g_getenv ("DISPLAY");
62       cp = strrchr (display_name, '.');
63       dp = strrchr (display_name, ':');
64       if (cp && dp && (cp > dp)) *cp = '\0';
65   }
66
67   dbus_error_init (&error);
68   mainloop = g_main_loop_new (NULL, FALSE);
69   ret= dbus_bus_request_name(registry->droute.bus, SPI_DBUS_NAME_REGISTRY, DBUS_NAME_FLAG_DO_NOT_QUEUE, &error);
70
71   if (ret == DBUS_REQUEST_NAME_REPLY_EXISTS)
72     {
73 #ifdef AT_SPI_DEBUG
74       fprintf (stderr, "SpiRegistry Message: SpiRegistry daemon was already running.\n");
75 #endif
76     }
77   else
78     {
79 #ifdef AT_SPI_DEBUG
80       fprintf (stderr, "SpiRegistry Message: SpiRegistry daemon is running.\n");
81 #endif
82       registry_set_ior (registry);
83       g_main_loop_run (mainloop);
84     }
85
86   return 0;
87 }
88
89 static void
90 registry_set_ior (SpiRegistry *registry){
91   Atom  AT_SPI_IOR = XInternAtom (spi_get_display (), "AT_SPI_IOR", FALSE);
92   char *iorstring = NULL;
93
94   iorstring = SPI_DBUS_NAME_REGISTRY;
95
96   XChangeProperty (spi_get_display(),
97                    XDefaultRootWindow (spi_get_display ()),
98                    AT_SPI_IOR, (Atom) 31, 8,
99                    PropModeReplace,
100                    (unsigned char *) iorstring,
101                    iorstring ? strlen (iorstring) : 0);
102 }