X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=atk-adaptor%2Fbridge.c;h=804d43c5a1bf8a5c4c00d7560dea2b9c507a3e00;hb=55b85389cc9fab84ecf17e113747e1b9d7f4ec2c;hp=4babf4ce2544d92871583e9c547fd33a3c98a76c;hpb=f529ab7c3061e35455e02954d15d916552b5ad60;p=platform%2Fcore%2Fuifw%2Fat-spi2-atk.git diff --git a/atk-adaptor/bridge.c b/atk-adaptor/bridge.c index 4babf4c..804d43c 100644 --- a/atk-adaptor/bridge.c +++ b/atk-adaptor/bridge.c @@ -25,8 +25,6 @@ #define _GNU_SOURCE #include "config.h" -#include -#include #include #include #include @@ -36,8 +34,8 @@ #include #include -#include #include +#include #include "bridge.h" #include "event.h" @@ -58,6 +56,8 @@ signal_filter (DBusConnection *bus, DBusMessage *message, void *user_data); SpiBridge *spi_global_app_data = NULL; +static gboolean inited = FALSE; + /*---------------------------------------------------------------------------*/ static void @@ -701,6 +701,27 @@ signal_filter (DBusConnection *bus, DBusMessage *message, void *user_data) } /* + * Checks the status of the environment variables + * + * At this moment it only checks NO_AT_BRIDGE + * + * Returns TRUE if there isn't anything on the environment preventing + * you to load the bridge, FALSE otherwise + */ +static gboolean +check_envvar (void) +{ + const gchar *envvar; + + envvar = g_getenv ("NO_AT_BRIDGE"); + + if (envvar && atoi (envvar) == 1) + return FALSE; + else + return TRUE; +} + +/* * spi_app_init * * The following needs to be initialized. @@ -712,21 +733,24 @@ signal_filter (DBusConnection *bus, DBusMessage *message, void *user_data) * */ int -adaptor_init (gint * argc, gchar ** argv[]) +atk_bridge_adaptor_init (gint * argc, gchar ** argv[]) { GOptionContext *opt; GError *err = NULL; DBusError error; AtkObject *root; - static gboolean inited = FALSE; + gboolean load_bridge; + DRoutePath *treepath, *accpath; + + load_bridge = check_envvar (); + if (inited && !load_bridge) + g_warning ("ATK Bridge is disabled but a11y has already been enabled."); - if (inited) + if (inited || !load_bridge) return 0; inited = TRUE; - DRoutePath *treepath, *accpath; - root = atk_get_root (); g_warn_if_fail (root); if (!root) @@ -853,11 +877,13 @@ adaptor_init (gint * argc, gchar ** argv[]) } void -adaptor_cleanup (void) +atk_bridge_adaptor_cleanup (void) { GList *l; GSList *ls; + g_return_if_fail (inited); + if (!spi_global_app_data) return; @@ -901,50 +927,8 @@ adaptor_cleanup (void) g_free (spi_global_app_data); spi_global_app_data = NULL; -} - -/*---------------------------------------------------------------------------*/ - -int -gtk_module_init (gint * argc, gchar ** argv[]) -{ - const gchar *load_bridge = g_getenv ("NO_AT_BRIDGE"); - - if (!load_bridge || g_ascii_strtod (load_bridge, NULL) == 0) - { - return adaptor_init (argc, argv); - } - return 0; -} -gchar* -g_module_check_init (GModule *module) -{ - g_module_make_resident (module); - - return NULL; -} - -void -gnome_accessibility_module_init (void) -{ - const gchar *load_bridge = g_getenv ("NO_AT_BRIDGE"); - - if (!load_bridge || g_ascii_strtod (load_bridge, NULL) == 0) - { - adaptor_init (NULL, NULL); - - if (g_getenv ("AT_SPI_DEBUG")) - { - g_print ("Atk Accessibility bridge initialized\n"); - } - } -} - -void -gnome_accessibility_module_shutdown (void) -{ - adaptor_cleanup (); + inited = FALSE; } /*---------------------------------------------------------------------------*/