X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=registryd%2Fregistry-main.c;h=246270c6c16aabde8fdc617436a62fa749e48ae6;hb=fe57252569727cafcf3228f261403303f1acd9fb;hp=47ac78b3ac4a6da3ef9fe73055674a1490c98278;hpb=1fb3c4bc6ba863a4dec09c0b1097b9e6c752d766;p=platform%2Fcore%2Fuifw%2Fat-spi2-atk.git diff --git a/registryd/registry-main.c b/registryd/registry-main.c index 47ac78b..246270c 100644 --- a/registryd/registry-main.c +++ b/registryd/registry-main.c @@ -2,7 +2,8 @@ * AT-SPI - Assistive Technology Service Provider Interface * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap) * - * Copyright 2001 Sun Microsystems Inc. + * Copyright 2001, 2002 Sun Microsystems Inc., + * Copyright 2001, 2002 Ximian, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public @@ -24,32 +25,47 @@ #include #endif -#include -#include +#include +#include +#include #include #include "registry.h" +#define spi_get_display() GDK_DISPLAY() + +static void registry_set_ior (SpiRegistry *registry); + int main (int argc, char **argv) { int ret; char *obj_id; + const char *display_name; + char *cp, *dp; SpiRegistry *registry; + DBusError error; + GMainLoop *mainloop; - if (!bonobo_init (&argc, argv)) - { - g_error ("Could not initialize oaf / Bonobo"); - } + g_type_init(); - obj_id = "OAFIID:Accessibility_Registry:proto0.1"; + obj_id = "OAFIID:Accessibility_Registry:1.0"; registry = spi_registry_new (); - ret = bonobo_activation_active_server_register ( - obj_id, - bonobo_object_corba_objref (bonobo_object (registry))); + display_name = g_getenv ("AT_SPI_DISPLAY"); + if (!display_name) + { + display_name = g_getenv ("DISPLAY"); + cp = strrchr (display_name, '.'); + dp = strrchr (display_name, ':'); + if (cp && dp && (cp > dp)) *cp = '\0'; + } - if (ret != Bonobo_ACTIVATION_REG_SUCCESS) + dbus_error_init (&error); + mainloop = g_main_loop_new (NULL, FALSE); + ret= dbus_bus_request_name(registry->droute.bus, SPI_DBUS_NAME_REGISTRY, 0, &error); + + if (!ret) { #ifdef AT_SPI_DEBUG fprintf (stderr, "SpiRegistry Message: SpiRegistry daemon was already running.\n"); @@ -60,9 +76,24 @@ main (int argc, char **argv) #ifdef AT_SPI_DEBUG fprintf (stderr, "SpiRegistry Message: SpiRegistry daemon is running.\n"); #endif - bonobo_main (); + registry_set_ior (registry); + g_main_loop_run (mainloop); } return 0; } +static void +registry_set_ior (SpiRegistry *registry){ + Atom AT_SPI_IOR = XInternAtom (spi_get_display (), "AT_SPI_IOR", FALSE); + char *iorstring = NULL; + + iorstring = SPI_DBUS_NAME_REGISTRY; + + XChangeProperty (spi_get_display(), + XDefaultRootWindow (spi_get_display ()), + AT_SPI_IOR, (Atom) 31, 8, + PropModeReplace, + (unsigned char *) iorstring, + iorstring ? strlen (iorstring) : 0); +}