Fix some possible crashes and a memory leak
[platform/upstream/at-spi2-core.git] / atspi / atspi-application.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 #include "atspi-private.h"
25
26 G_DEFINE_TYPE (AtspiApplication, atspi_application, G_TYPE_OBJECT)
27
28 static void
29 atspi_application_init (AtspiApplication *application)
30 {
31 }
32
33 static void
34 dispose_accessible (gpointer key, gpointer obj_data, gpointer data)
35 {
36   g_object_run_dispose (obj_data);
37 }
38
39 static void
40 atspi_application_dispose (GObject *object)
41 {
42   AtspiApplication *application = ATSPI_APPLICATION (object);
43
44   if (application->bus)
45   {
46     dbus_connection_unref (application->bus);
47     application->bus = NULL;
48   }
49
50   if (application->hash)
51   {
52     g_hash_table_foreach (application->hash, dispose_accessible, NULL);
53     g_hash_table_unref (application->hash);
54     application->hash = NULL;
55   }
56
57   G_OBJECT_CLASS (atspi_application_parent_class)->dispose (object);
58 }
59
60 static void
61 atspi_application_finalize (GObject *object)
62 {
63   AtspiApplication *application = ATSPI_APPLICATION (object);
64
65   if (application->bus_name)
66     g_free (application->bus_name);
67
68   G_OBJECT_CLASS (atspi_application_parent_class)->finalize (object);
69 }
70
71 static void
72 atspi_application_class_init (AtspiApplicationClass *klass)
73 {
74   GObjectClass *object_class = G_OBJECT_CLASS (klass);
75
76   object_class->dispose = atspi_application_dispose;
77   object_class->finalize = atspi_application_finalize;
78 }
79
80 AtspiApplication *
81 _atspi_application_new (const gchar *bus_name)
82 {
83   AtspiApplication *application;
84   
85   application = g_object_new (ATSPI_TYPE_APPLICATION, NULL);
86   if (application)
87   {
88     application->bus_name = g_strdup (bus_name);
89     application->root = NULL;
90   }
91   return application;
92 }