8c9d6bc3f7bdb4c2ee9629bd47ae0a432cab2e50
[platform/core/uifw/at-spi2-atk.git] / atk-adaptor / bridge.c
1 /*
2  * AT-SPI - Assistive Technology Service Provider Interface
3  * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
4  *
5  * Copyright 2008, 2009 Codethink Ltd.
6  * Copyright 2001, 2002, 2003 Sun Microsystems Inc.,
7  * Copyright 2001, 2002, 2003 Ximian, Inc.
8  *
9  * This library is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU Library General Public
11  * License as published by the Free Software Foundation; either
12  * version 2 of the License, or (at your option) any later version.
13  *
14  * This library is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
17  * Library General Public License for more details.
18  *
19  * You should have received a copy of the GNU Library General Public
20  * License along with this library; if not, write to the
21  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22  * Boston, MA 02111-1307, USA.
23  */
24
25 #define _GNU_SOURCE
26 #include "config.h"
27
28 #include <unistd.h>
29 #include <stdlib.h>
30 #include <stdio.h>
31 #include <stdarg.h>
32 #include <string.h>
33 #include<sys/stat.h>
34 #include <atk/atk.h>
35
36 #include <droute/droute.h>
37 #include <atspi/atspi.h>
38 #include <atk-bridge.h>
39
40 #include "bridge.h"
41 #include "event.h"
42 #include "adaptors.h"
43 #include "object.h"
44 #include "accessible-stateset.h"
45
46 #include "accessible-register.h"
47 #include "accessible-leasing.h"
48 #include "accessible-cache.h"
49
50 #include "spi-dbus.h"
51
52 /*---------------------------------------------------------------------------*/
53
54 static DBusHandlerResult
55 signal_filter (DBusConnection *bus, DBusMessage *message, void *user_data);
56
57 SpiBridge *spi_global_app_data = NULL;
58
59 static gboolean inited = FALSE;
60
61 /*---------------------------------------------------------------------------*/
62
63 static void
64 add_event (const char *bus_name, const char *event)
65 {
66   event_data *evdata;
67   gchar **data;
68
69   spi_atk_add_client (bus_name);
70   evdata = (event_data *) g_malloc (sizeof (*evdata));
71   if (!evdata)
72     return;
73   data = g_strsplit (event, ":", 3);
74   if (!data)
75     {
76       g_free (evdata);
77       return;
78     }
79   evdata->bus_name = g_strdup (bus_name);
80   evdata->data = data;
81   spi_global_app_data->events = g_list_append (spi_global_app_data->events, evdata);
82 }
83
84 static GSList *clients = NULL;
85
86 static void
87 tally_event_reply ()
88 {
89   static int replies_received = 0;
90
91   replies_received++;
92   if (replies_received == 3)
93   {
94     if (!clients)
95       spi_atk_deregister_event_listeners ();
96     spi_global_app_data->events_initialized = TRUE;
97   }
98 }
99
100 static void
101 get_events_reply (DBusPendingCall *pending, void *user_data)
102 {
103   DBusMessage *reply = dbus_pending_call_steal_reply (pending);
104   DBusMessageIter iter, iter_array, iter_struct;
105
106   if (!reply)
107     goto done;
108
109   if (strcmp (dbus_message_get_signature (reply), "a(ss)") != 0)
110     {
111       g_warning ("atk-bridge: GetRegisteredEvents returned message with unknown signature");
112       goto done;
113     }
114
115   dbus_message_iter_init (reply, &iter);
116   dbus_message_iter_recurse (&iter, &iter_array);
117   while (dbus_message_iter_get_arg_type (&iter_array) != DBUS_TYPE_INVALID)
118     {
119       char *bus_name, *event;
120       dbus_message_iter_recurse (&iter_array, &iter_struct);
121       dbus_message_iter_get_basic (&iter_struct, &bus_name);
122       dbus_message_iter_next (&iter_struct);
123       dbus_message_iter_get_basic (&iter_struct, &event);
124       add_event (bus_name, event);
125       dbus_message_iter_next (&iter_array);
126     }
127
128 done:
129   if (reply)
130     dbus_message_unref (reply);
131   if (pending)
132     dbus_pending_call_unref (pending);
133
134   tally_event_reply ();
135 }
136
137 static void
138 get_device_events_reply (DBusPendingCall *pending, void *user_data)
139 {
140   DBusMessage *reply = dbus_pending_call_steal_reply (pending);
141   DBusMessageIter iter, iter_array, iter_struct;
142
143   if (!reply)
144     goto done;
145
146   if (strncmp (dbus_message_get_signature (reply), "a(s", 3) != 0)
147     {
148       g_warning ("atk-bridge: get_device_events_reply: unknown signature");
149       goto done;
150     }
151
152   dbus_message_iter_init (reply, &iter);
153   dbus_message_iter_recurse (&iter, &iter_array);
154   while (dbus_message_iter_get_arg_type (&iter_array) != DBUS_TYPE_INVALID)
155     {
156       char *bus_name;
157       dbus_message_iter_recurse (&iter_array, &iter_struct);
158       dbus_message_iter_get_basic (&iter_struct, &bus_name);
159       spi_atk_add_client (bus_name);
160       dbus_message_iter_next (&iter_array);
161     }
162
163 done:
164   if (reply)
165     dbus_message_unref (reply);
166   if (pending)
167     dbus_pending_call_unref (pending);
168
169   tally_event_reply ();
170 }
171
172 static void
173 get_registered_event_listeners (SpiBridge *app)
174 {
175   DBusMessage *message;
176   DBusPendingCall *pending = NULL;
177
178   message = dbus_message_new_method_call (SPI_DBUS_NAME_REGISTRY,
179                                          ATSPI_DBUS_PATH_REGISTRY,
180                                          ATSPI_DBUS_INTERFACE_REGISTRY,
181                                          "GetRegisteredEvents");
182   if (!message)
183     return;
184
185   dbus_connection_send_with_reply (app->bus, message, &pending, -1);
186   dbus_message_unref (message);
187   if (!pending)
188     {
189       spi_global_app_data->events_initialized = TRUE;
190       return;
191     }
192   dbus_pending_call_set_notify (pending, get_events_reply, NULL, NULL);
193
194   message = dbus_message_new_method_call (SPI_DBUS_NAME_REGISTRY,
195                                          ATSPI_DBUS_PATH_DEC,
196                                          ATSPI_DBUS_INTERFACE_DEC,
197                                          "GetKeystrokeListeners");
198   if (!message)
199     return;
200   pending = NULL;
201   dbus_connection_send_with_reply (app->bus, message, &pending, -1);
202   dbus_message_unref (message);
203   if (!pending)
204     {
205       spi_global_app_data->events_initialized = TRUE;
206       return;
207     }
208   dbus_pending_call_set_notify (pending, get_device_events_reply, NULL, NULL);
209
210   message = dbus_message_new_method_call (SPI_DBUS_NAME_REGISTRY,
211                                          ATSPI_DBUS_PATH_DEC,
212                                          ATSPI_DBUS_INTERFACE_DEC,
213                                          "GetDeviceEventListeners");
214   if (!message)
215     return;
216   pending = NULL;
217   dbus_connection_send_with_reply (app->bus, message, &pending, -1);
218   dbus_message_unref (message);
219   if (!pending)
220     {
221       spi_global_app_data->events_initialized = TRUE;
222       return;
223     }
224   dbus_pending_call_set_notify (pending, get_device_events_reply, NULL, NULL);
225 }
226
227 static void
228 register_reply (DBusPendingCall *pending, void *user_data)
229 {
230   DBusMessage *reply;
231   SpiBridge *app = user_data;
232
233   reply = dbus_pending_call_steal_reply (pending);
234   dbus_pending_call_unref (pending);
235   if (reply)
236     {
237       gchar *app_name, *obj_path;
238
239       if (strcmp (dbus_message_get_signature (reply), "(so)") != 0)
240         {
241           g_warning ("AT-SPI: Could not obtain desktop path or name\n");
242         }
243       else
244         {
245           DBusMessageIter iter, iter_struct;
246           dbus_message_iter_init (reply, &iter);
247           dbus_message_iter_recurse (&iter, &iter_struct);
248           dbus_message_iter_get_basic (&iter_struct, &app_name);
249           dbus_message_iter_next (&iter_struct);
250           dbus_message_iter_get_basic (&iter_struct, &obj_path);
251
252           app->desktop_name = g_strdup (app_name);
253           app->desktop_path = g_strdup (obj_path);
254         }
255     }
256   else
257     {
258       g_warning ("AT-SPI: Could not embed inside desktop");
259       return;
260     }
261   dbus_message_unref (reply);
262
263   get_registered_event_listeners (spi_global_app_data);
264 }
265
266 static gboolean
267 register_application (SpiBridge * app)
268 {
269   DBusMessage *message;
270   DBusMessageIter iter;
271   DBusError error;
272   DBusPendingCall *pending;
273
274   dbus_error_init (&error);
275
276   /* These will be overridden when we get a reply, but in practice these
277      defaults should always be correct */
278   app->desktop_name = ATSPI_DBUS_NAME_REGISTRY;
279   app->desktop_path = ATSPI_DBUS_PATH_ROOT;
280
281   message = dbus_message_new_method_call (SPI_DBUS_NAME_REGISTRY,
282                                           ATSPI_DBUS_PATH_ROOT,
283                                           ATSPI_DBUS_INTERFACE_SOCKET,
284                                           "Embed");
285
286   dbus_message_iter_init_append (message, &iter);
287   spi_object_append_reference (&iter, app->root);
288   
289     if (!dbus_connection_send_with_reply (app->bus, message, &pending, -1)
290         || !pending)
291     {
292         return FALSE;
293     }
294
295     dbus_pending_call_set_notify (pending, register_reply, app, NULL);
296
297   if (message)
298     dbus_message_unref (message);
299
300 #ifndef DISABLE_P2P
301   app->app_tmp_dir = g_build_filename (g_get_user_runtime_dir (),
302                                        "at-spi2-XXXXXX", NULL);
303   if (!g_mkdtemp (app->app_tmp_dir))
304   {
305     g_free (app->app_tmp_dir);
306     app->app_tmp_dir = NULL;
307     return FALSE;
308   }
309   app->app_bus_addr = g_strdup_printf ("unix:path=%s/socket", app->app_tmp_dir);
310 #endif
311
312   return TRUE;
313 }
314
315 /*---------------------------------------------------------------------------*/
316
317 static void
318 deregister_application (SpiBridge * app)
319 {
320   DBusMessage *message;
321   DBusMessageIter iter;
322   DBusError error;
323   const char *uname;
324
325   dbus_error_init (&error);
326
327   message = dbus_message_new_method_call (SPI_DBUS_NAME_REGISTRY,
328                                           ATSPI_DBUS_PATH_REGISTRY,
329                                           ATSPI_DBUS_INTERFACE_REGISTRY,
330                                           "DeregisterApplication");
331   dbus_message_set_no_reply (message, TRUE);
332
333   uname = dbus_bus_get_unique_name (app->bus);
334
335   dbus_message_iter_init_append (message, &iter);
336   dbus_message_iter_append_basic (&iter, DBUS_TYPE_STRING, &uname);
337   dbus_connection_send (app->bus, message, NULL);
338   if (message)
339     dbus_message_unref (message);
340
341   if (app->app_bus_addr)
342   {
343     unlink (app->app_bus_addr);
344     g_free (app->app_bus_addr);
345     app->app_bus_addr = NULL;
346   }
347
348   if (app->app_tmp_dir)
349   {
350     rmdir (app->app_tmp_dir);
351     g_free (app->app_tmp_dir);
352     app->app_tmp_dir = NULL;
353   }
354 }
355
356 /*---------------------------------------------------------------------------*/
357
358 /*---------------------------------------------------------------------------*/
359
360 static AtkPlugClass *plug_class;
361 static AtkSocketClass *socket_class;
362
363 static gchar *
364 get_plug_id (AtkPlug * plug)
365 {
366   const char *uname = dbus_bus_get_unique_name (spi_global_app_data->bus);
367   gchar *path;
368   GString *str = g_string_new (NULL);
369
370   path = spi_register_object_to_path (spi_global_register, G_OBJECT (plug));
371   g_string_printf (str, "%s:%s", uname, path);
372   g_free (path);
373   return g_string_free (str, FALSE);
374 }
375
376 AtkStateSet *
377 socket_ref_state_set (AtkObject *accessible)
378 {
379   char *child_name, *child_path;
380   AtkSocket *socket = ATK_SOCKET (accessible);
381   int count = 0;
382   int j;
383   int v;
384   DBusMessage *message, *reply;
385   DBusMessageIter iter, iter_array;
386   AtkStateSet *set;
387
388   set = atk_state_set_new ();
389
390   if (!socket->embedded_plug_id)
391     return set;
392
393   child_name = g_strdup (socket->embedded_plug_id);
394   if (!child_name)
395     return set;
396   child_path = g_utf8_strchr (child_name + 1, -1, ':');
397   if (!child_path)
398     {
399       g_free (child_name);
400       return set;
401     }
402   *(child_path++) = '\0';
403   message = dbus_message_new_method_call (child_name, child_path, ATSPI_DBUS_INTERFACE_ACCESSIBLE, "GetState");
404   g_free (child_name);
405   reply = dbus_connection_send_with_reply_and_block (spi_global_app_data->bus, message, 1, NULL);
406   dbus_message_unref (message);
407   if (reply == NULL)
408     return set;
409   if (strcmp (dbus_message_get_signature (reply), "au") != 0)
410     {
411       dbus_message_unref (reply);
412       return set;
413     }
414
415   dbus_message_iter_init (reply, &iter);
416   dbus_message_iter_recurse (&iter, &iter_array);
417   do
418     {
419       dbus_message_iter_get_basic (&iter_array, &v);
420       for (j = 0; j < 32; j++)
421         {
422           if (v & (1 << j))
423             {
424               AtkState state = spi_atk_state_from_spi_state ((count << 5) + j);
425               atk_state_set_add_state (set, state);
426             }
427         }
428       count++;
429     }
430   while (dbus_message_iter_next (&iter_array));
431   dbus_message_unref (reply);
432   return set;
433 }
434
435 static void
436 socket_embed_hook (AtkSocket * socket, gchar * plug_id)
437 {
438   AtkObject *accessible = ATK_OBJECT(socket);
439   gchar *plug_name, *plug_path;
440   AtkObjectClass *klass;
441
442   /* Force registration */
443   gchar *path = spi_register_object_to_path (spi_global_register, G_OBJECT (accessible));
444   /* Let the plug know that it has been embedded */
445   plug_name = g_strdup (plug_id);
446   if (!plug_name)
447     {
448       g_free (path);
449       return;
450     }
451   plug_path = g_utf8_strchr (plug_name + 1, -1, ':');
452   if (plug_path)
453     {
454       DBusMessage *message;
455       *(plug_path++) = '\0';
456       message = dbus_message_new_method_call (plug_name, plug_path, ATSPI_DBUS_INTERFACE_SOCKET, "Embedded");
457       dbus_message_append_args (message, DBUS_TYPE_STRING, &path, DBUS_TYPE_INVALID);
458       dbus_connection_send (spi_global_app_data->bus, message, NULL);
459     }
460   g_free (plug_name);
461   g_free (path);
462
463   klass = ATK_OBJECT_GET_CLASS (accessible);
464   klass->ref_state_set = socket_ref_state_set;
465 }
466
467 static void
468 install_plug_hooks ()
469 {
470   gpointer data;
471
472   data = g_type_class_ref (ATK_TYPE_PLUG);
473   plug_class = ATK_PLUG_CLASS (data);
474   data = g_type_class_ref (ATK_TYPE_SOCKET);
475   socket_class = ATK_SOCKET_CLASS (data);
476   plug_class->get_object_id = get_plug_id;
477   socket_class->embed = socket_embed_hook;
478 }
479
480 static guint
481 get_ancestral_uid (guint pid)
482 {
483   FILE *fp;
484   char buf [80];
485   int ppid = 0;
486   int uid = 0;
487   gboolean got_ppid = 0;
488   gboolean got_uid = 0;
489
490   sprintf (buf, "/proc/%d/status", pid);
491   fp = fopen (buf, "r");
492   if (!fp)
493     return 0;
494   while ((!got_ppid || !got_uid) && fgets (buf, sizeof (buf), fp))
495   {
496     if (sscanf (buf, "PPid:\t%d", &ppid) == 1)
497       got_ppid = TRUE;
498     else if (sscanf (buf, "Uid:\t%d", &uid) == 1)
499       got_uid = TRUE;
500   }
501   fclose (fp);
502
503   if (!got_ppid || !got_uid)
504     return 0;
505   if (uid != 0)
506     return uid;
507   if (ppid == 0 || ppid == 1)
508     return 0;
509   return get_ancestral_uid (ppid);
510 }
511
512 static dbus_bool_t
513 user_check (DBusConnection *bus, unsigned long uid, void *data)
514 {
515   if (uid == getuid () || uid == geteuid ())
516     return TRUE;
517   if (getuid () == 0)
518     return get_ancestral_uid (getpid ()) == uid;
519   return FALSE;
520 }
521
522 static void
523 new_connection_cb (DBusServer *server, DBusConnection *con, void *data)
524 {
525   dbus_connection_set_unix_user_function (con, user_check, NULL, NULL);
526   dbus_connection_ref(con);
527   atspi_dbus_connection_setup_with_g_main(con, NULL);
528   droute_intercept_dbus (con);
529   droute_context_register (spi_global_app_data->droute, con);
530
531   spi_global_app_data->direct_connections = g_list_append (spi_global_app_data->direct_connections, con);
532 }
533
534 static int
535 setup_bus (void)
536 {
537 #ifndef DISABLE_P2P
538   DBusServer *server;
539   DBusError err;
540
541   if (!spi_global_app_data->app_bus_addr)
542     return -1;
543
544   dbus_error_init(&err);
545   server = dbus_server_listen(spi_global_app_data->app_bus_addr, &err);
546   if (server == NULL)
547   {
548     g_warning ("atk-bridge: Couldn't listen on dbus server: %s", err.message);
549     dbus_error_init (&err);
550     spi_global_app_data->app_bus_addr [0] = '\0';
551     g_main_context_unref (spi_global_app_data->main_context);
552     spi_global_app_data->main_context = NULL;
553     return -1;
554   }
555
556   atspi_dbus_server_setup_with_g_main(server, NULL);
557   dbus_server_set_new_connection_function(server, new_connection_cb, NULL, NULL);
558
559   spi_global_app_data->server = server;
560 #endif
561
562   return 0;
563 }
564
565
566 gchar *atspi_dbus_name = NULL;
567 static gboolean atspi_no_register = FALSE;
568
569 static GOptionEntry atspi_option_entries[] = {
570   {"atspi-dbus-name", 0, 0, G_OPTION_ARG_STRING, &atspi_dbus_name,
571    "D-Bus bus name to register as", NULL},
572   {"atspi-no-register", 0, 0, G_OPTION_ARG_NONE, &atspi_no_register,
573    "Do not register with Registry Daemon", NULL},
574   {NULL}
575 };
576
577 static gchar *
578 introspect_children_cb (const char *path, void *data)
579 {
580   if (!strcmp (path, "/org/a11y/atspi/accessible"))
581     {
582       return g_strdup ("<node name=\"root\"/>\n");
583       /* TODO: Should we place the whole hierarchy here? */
584     }
585   return NULL;
586 }
587
588 static void
589 handle_event_listener_registered (DBusConnection *bus, DBusMessage *message,
590                                   void *user_data)
591 {
592   const char *name;
593   char *sender;
594
595   if (!dbus_message_get_args (message, NULL, DBUS_TYPE_STRING, &sender,
596     DBUS_TYPE_STRING, &name, DBUS_TYPE_INVALID))
597     return;
598
599   add_event (sender, name);
600 }
601
602 static void
603 remove_events (const char *bus_name, const char *event)
604 {
605   gchar **remove_data;
606   GList *list;
607
608   remove_data = g_strsplit (event, ":", 3);
609   if (!remove_data)
610     {
611       return;
612     }
613
614   for (list = spi_global_app_data->events; list;)
615     {
616       event_data *evdata = list->data;
617       if (!g_strcmp0 (evdata->bus_name, bus_name) &&
618           spi_event_is_subtype (evdata->data, remove_data))
619         {
620           GList *events = spi_global_app_data->events;
621           list = list->next;
622           g_strfreev (evdata->data);
623           g_free (evdata->bus_name);
624           g_free (evdata);
625           spi_global_app_data->events = g_list_remove (events, evdata);
626         }
627       else
628         {
629           list = list->next;
630         }
631     }
632
633   g_strfreev (remove_data);
634 }
635
636 static void
637 handle_event_listener_deregistered (DBusConnection *bus, DBusMessage *message,
638                                     void *user_data)
639 {
640   gchar *name;
641   char *sender;
642
643   if (!dbus_message_get_args (message, NULL, DBUS_TYPE_STRING, &sender,
644                               DBUS_TYPE_STRING, &name, DBUS_TYPE_INVALID))
645     return;
646
647   remove_events (sender, name);
648 }
649
650 static void
651 handle_device_listener_registered (DBusConnection *bus, DBusMessage *message,
652                                     void *user_data)
653 {
654   char *sender;
655   DBusMessageIter iter, iter_struct;
656
657   if (strncmp (dbus_message_get_signature (message), "(s", 2) != 0)
658     {
659       g_warning ("atk-bridge: handle_device_listener_register: unknown signature");
660       return;
661     }
662
663   dbus_message_iter_init (message, &iter);
664   dbus_message_iter_recurse (&iter, &iter_struct);
665   dbus_message_iter_get_basic (&iter_struct, &sender);
666   spi_atk_add_client (sender);
667 }
668
669 static DBusHandlerResult
670 signal_filter (DBusConnection *bus, DBusMessage *message, void *user_data)
671 {
672   const char *interface = dbus_message_get_interface (message);
673   const char *member = dbus_message_get_member (message);
674   DBusHandlerResult result = DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
675
676   if (dbus_message_get_type (message) != DBUS_MESSAGE_TYPE_SIGNAL)
677     return DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
678
679   if (!strcmp (interface, ATSPI_DBUS_INTERFACE_REGISTRY))
680     {
681       result = DBUS_HANDLER_RESULT_HANDLED;
682       if (!strcmp (member, "EventListenerRegistered"))
683         handle_event_listener_registered (bus, message, user_data);
684       else if (!strcmp (member, "EventListenerDeregistered"))
685         handle_event_listener_deregistered (bus, message, user_data);
686       else
687         result = DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
688     }
689   else if (!strcmp (interface, ATSPI_DBUS_INTERFACE_DEVICE_EVENT_LISTENER))
690     {
691       result = DBUS_HANDLER_RESULT_HANDLED;
692       if (!strcmp (member, "KeystrokeListenerRegistered"))
693         handle_device_listener_registered (bus, message, user_data);
694       else if (!strcmp (member, "DeviceListenerRegistered"))
695         handle_device_listener_registered (bus, message, user_data);
696       else
697         result = DBUS_HANDLER_RESULT_NOT_YET_HANDLED;
698     }
699
700   if (!g_strcmp0(interface, DBUS_INTERFACE_DBUS) &&
701       !g_strcmp0(member, "NameOwnerChanged"))
702     {
703       char *name, *old, *new;
704       result = DBUS_HANDLER_RESULT_HANDLED;
705       if (dbus_message_get_args (message, NULL,
706                                  DBUS_TYPE_STRING, &name,
707                                  DBUS_TYPE_STRING, &old,
708                                  DBUS_TYPE_STRING, &new,
709                                  DBUS_TYPE_INVALID))
710         {
711           if (*old != '\0' && *new == '\0')
712               spi_atk_remove_client (old);
713         }
714     }
715
716   return result;
717 }
718
719 /*
720  * Checks the status of the environment variables
721  *
722  * At this moment it only checks NO_AT_BRIDGE
723  *
724  * Returns TRUE if there isn't anything on the environment preventing
725  * you to load the bridge, FALSE otherwise
726  */
727 static gboolean
728 check_envvar (void)
729 {
730   const gchar *envvar;
731
732   envvar = g_getenv ("NO_AT_BRIDGE");
733
734   if (envvar && atoi (envvar) == 1)
735     return FALSE;
736   else
737     return TRUE;
738 }
739
740 /*
741  * spi_app_init
742  *
743  * The following needs to be initialized.
744  *
745  * - DRoute for routing message to their accessible objects.
746  * - Event handlers for emmitting signals on specific ATK events.
747  * - setup the bus for p2p communication
748  * - Application registration with the AT-SPI registry.
749  *
750  */
751 int
752 atk_bridge_adaptor_init (gint * argc, gchar ** argv[])
753 {
754   GOptionContext *opt;
755   GError *err = NULL;
756   DBusError error;
757   AtkObject *root;
758   gboolean load_bridge;
759   DRoutePath *treepath, *accpath;
760
761   load_bridge = check_envvar ();
762   if (inited && !load_bridge)
763     g_warning ("ATK Bridge is disabled but a11y has already been enabled.");
764
765   if (inited || !load_bridge)
766     return 0;
767
768   inited = TRUE;
769
770   root = atk_get_root ();
771   g_warn_if_fail (root);
772   if (!root)
773     {
774       inited = FALSE;
775       return -1;
776     }
777
778   /* Parse command line options */
779   opt = g_option_context_new (NULL);
780   g_option_context_add_main_entries (opt, atspi_option_entries, NULL);
781   g_option_context_set_ignore_unknown_options (opt, TRUE);
782   if (!g_option_context_parse (opt, argc, argv, &err))
783     g_warning ("AT-SPI Option parsing failed: %s\n", err->message);
784   g_option_context_free (opt);
785
786   /* Allocate global data and do ATK initializations */
787   spi_global_app_data = g_new0 (SpiBridge, 1);
788   spi_global_app_data->root = g_object_ref (root);
789
790   /* Set up D-Bus connection and register bus name */
791   dbus_error_init (&error);
792   spi_global_app_data->bus = atspi_get_a11y_bus ();
793   if (!spi_global_app_data->bus)
794     {
795       g_free (spi_global_app_data);
796       spi_global_app_data = NULL;
797       inited = FALSE;
798       return -1;
799     }
800
801   if (atspi_dbus_name != NULL)
802     {
803       if (dbus_bus_request_name
804           (spi_global_app_data->bus, atspi_dbus_name, 0, &error))
805         {
806           g_print ("AT-SPI Recieved D-Bus name - %s\n", atspi_dbus_name);
807         }
808       else
809         {
810           g_print
811             ("AT-SPI D-Bus name requested but could not be allocated - %s\n",
812              atspi_dbus_name);
813         }
814     }
815
816   spi_global_app_data->main_context = g_main_context_new ();
817
818   atspi_dbus_connection_setup_with_g_main (spi_global_app_data->bus, NULL);
819
820   /* Hook our plug-and socket functions */
821   install_plug_hooks ();
822
823   /* 
824    * Create the leasing, register and cache objects.
825    * The order is important here, the cache depends on the
826    * register object.
827    */
828   spi_global_register = g_object_new (SPI_REGISTER_TYPE, NULL);
829   spi_global_leasing  = g_object_new (SPI_LEASING_TYPE, NULL);
830   spi_global_cache    = g_object_new (SPI_CACHE_TYPE, NULL);
831
832   /* Register droute for routing AT-SPI messages */
833   spi_global_app_data->droute =
834     droute_new ();
835
836   treepath = droute_add_one (spi_global_app_data->droute,
837                              "/org/a11y/atspi/cache", spi_global_cache);
838
839   if (!treepath)
840     {
841       g_warning ("atk-bridge: Error in droute_add_one().  Already running?");
842       return -1;
843     }
844
845   accpath = droute_add_many (spi_global_app_data->droute,
846                              "/org/a11y/atspi/accessible",
847                              NULL,
848                              introspect_children_cb,
849                              NULL,
850                              (DRouteGetDatumFunction)
851                              spi_global_register_path_to_object);
852
853
854   /* Register all interfaces with droute and set up application accessible db */
855   spi_initialize_cache (treepath);
856   spi_initialize_accessible (accpath);
857   spi_initialize_application (accpath);
858   spi_initialize_action (accpath);
859   spi_initialize_collection (accpath);
860   spi_initialize_component (accpath);
861   spi_initialize_document (accpath);
862   spi_initialize_editabletext (accpath);
863   spi_initialize_hyperlink (accpath);
864   spi_initialize_hypertext (accpath);
865   spi_initialize_image (accpath);
866   spi_initialize_selection (accpath);
867   spi_initialize_socket (accpath);
868   spi_initialize_table (accpath);
869   spi_initialize_text (accpath);
870   spi_initialize_value (accpath);
871
872   droute_context_register (spi_global_app_data->droute,
873                            spi_global_app_data->bus);
874
875   /* Register methods to send D-Bus signals on certain ATK events */
876   if (clients)
877     spi_atk_register_event_listeners ();
878
879   /* Set up filter and match rules to catch signals */
880   dbus_bus_add_match (spi_global_app_data->bus, "type='signal', interface='org.a11y.atspi.Registry', sender='org.a11y.atspi.Registry'", NULL);
881   dbus_bus_add_match (spi_global_app_data->bus, "type='signal', interface='org.a11y.atspi.DeviceEventListener', sender='org.a11y.atspi.Registry'", NULL);
882   dbus_connection_add_filter (spi_global_app_data->bus, signal_filter, NULL,
883                               NULL);
884
885   /* Register this app by sending a signal out to AT-SPI registry daemon */
886   if (!atspi_no_register && (!root || !ATK_IS_PLUG (root)))
887     register_application (spi_global_app_data);
888   else
889     get_registered_event_listeners (spi_global_app_data);
890
891   setup_bus();
892
893   return 0;
894 }
895
896 void
897 atk_bridge_adaptor_cleanup (void)
898 {
899   GList *l;
900   GSList *ls;
901
902   g_return_if_fail (inited);
903
904   if (!spi_global_app_data)
905       return;
906
907   spi_atk_tidy_windows ();
908   spi_atk_deregister_event_listeners ();
909
910   deregister_application (spi_global_app_data);
911
912   if (spi_global_app_data->bus)
913     {
914       dbus_connection_remove_filter (spi_global_app_data->bus, signal_filter, NULL);
915       droute_context_unregister (spi_global_app_data->droute, spi_global_app_data->bus);
916       dbus_connection_unref (spi_global_app_data->bus);
917     }
918
919   for (l = spi_global_app_data->direct_connections; l; l = l->next)
920     {
921       DBusConnection *connection;
922
923       connection = l->data;
924
925       droute_context_unregister (spi_global_app_data->droute, connection);
926       droute_unintercept_dbus (connection);
927       dbus_connection_unref (connection);
928     }
929   g_list_free (spi_global_app_data->direct_connections);
930
931   for (ls = clients; ls; ls = ls->next)
932     g_free (l->data);
933   g_slist_free (clients);
934   clients = NULL;
935
936   g_object_unref (spi_global_cache);
937   g_object_unref (spi_global_leasing);
938   g_object_unref (spi_global_register);
939
940   if (spi_global_app_data->main_context)
941     g_main_context_unref (spi_global_app_data->main_context);
942
943   droute_free (spi_global_app_data->droute);
944
945   g_free (spi_global_app_data);
946   spi_global_app_data = NULL;
947
948   inited = FALSE;
949 }
950
951 /*---------------------------------------------------------------------------*/
952
953 static gchar *name_match_tmpl =
954        "type='signal', interface='org.freedesktop.DBus', member='NameOwnerChanged', arg0='%s'";
955
956 void
957 spi_atk_add_client (const char *bus_name)
958 {
959   GSList *l;
960   gchar *match;
961
962   for (l = clients; l; l = l->next)
963   {
964     if (!g_strcmp0 (l->data, bus_name))
965       return;
966   }
967   if (!clients)
968     spi_atk_register_event_listeners ();
969   clients = g_slist_append (clients, g_strdup (bus_name));
970   match = g_strdup_printf (name_match_tmpl, bus_name);
971   dbus_bus_add_match (spi_global_app_data->bus, match, NULL);
972   g_free (match);
973 }
974
975 void
976 spi_atk_remove_client (const char *bus_name)
977 {
978   GSList *l;
979   GSList *next_node;
980
981   l = clients;
982   while (l)
983   {
984     next_node = l->next;
985
986     if (!g_strcmp0 (l->data, bus_name))
987     {
988       gchar *match = g_strdup_printf (name_match_tmpl, l->data);
989       dbus_bus_remove_match (spi_global_app_data->bus, match, NULL);
990   g_free (match);
991       g_free (l->data);
992       clients = g_slist_delete_link (clients, l);
993       if (!clients)
994         spi_atk_deregister_event_listeners ();
995     }
996
997     l = next_node;
998   }
999 }
1000
1001 /*END------------------------------------------------------------------------*/