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