Release v2.7.90
[platform/core/uifw/at-spi2-atk.git] / atk-adaptor / accessible-leasing.c
1 /*
2  * AT-SPI - Assistive Technology Service Provider Interface
3  * (Gnome Accessibility Project; http://developer.gnome.org/projects/gap)
4  *
5  * Copyright 2009, 2010 Codethink Ltd.
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Library General Public
9  * License as published by the Free Software Foundation; either
10  * version 2 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Library General Public License for more details.
16  *
17  * You should have received a copy of the GNU Library General Public
18  * License along with this library; if not, write to the
19  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20  * Boston, MA 02111-1307, USA.
21  */
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26
27 #include "accessible-leasing.h"
28
29 #ifdef SPI_ATK_DEBUG
30 #include "accessible-cache.h"
31 #endif
32
33 /*---------------------------------------------------------------------------*/
34
35 SpiLeasing *spi_global_leasing;
36
37 typedef struct _ExpiryElement
38 {
39   guint expiry_s;
40   GObject *object;
41 } ExpiryElement;
42
43 static void spi_leasing_dispose (GObject * object);
44
45 static void spi_leasing_finalize (GObject * object);
46
47 static void add_expiry_timeout (SpiLeasing * leasing);
48
49 /*---------------------------------------------------------------------------*/
50
51 G_DEFINE_TYPE (SpiLeasing, spi_leasing, G_TYPE_OBJECT)
52
53 static void spi_leasing_class_init (SpiLeasingClass * klass)
54 {
55   GObjectClass *object_class = (GObjectClass *) klass;
56
57   spi_leasing_parent_class = g_type_class_ref (G_TYPE_OBJECT);
58
59   object_class->finalize = spi_leasing_finalize;
60   object_class->dispose = spi_leasing_dispose;
61 }
62
63 static void
64 spi_leasing_init (SpiLeasing * leasing)
65 {
66   leasing->expiry_queue = g_queue_new ();
67   leasing->expiry_func_id = 0;
68 }
69
70 static void
71 spi_leasing_finalize (GObject * object)
72 {
73   SpiLeasing *leasing = SPI_LEASING (object);
74
75   if (leasing->expiry_func_id)
76     g_source_remove (leasing->expiry_func_id);
77   g_queue_free (leasing->expiry_queue);
78   G_OBJECT_CLASS (spi_leasing_parent_class)->finalize (object);
79 }
80
81 static void
82 spi_leasing_dispose (GObject * object)
83 {
84   SpiLeasing *leasing = SPI_LEASING (object);
85
86   ExpiryElement *head;
87   while ((head = g_queue_pop_head (leasing->expiry_queue)))
88     {
89       g_object_unref (head->object);
90       g_slice_free (ExpiryElement, head);
91     }
92   G_OBJECT_CLASS (spi_leasing_parent_class)->dispose (object);
93 }
94
95 /*---------------------------------------------------------------------------*/
96
97 /*
98   End the lease on all objects whose expiry time has passed.
99  
100   Check when the next event is and set the next expiry func.
101 */
102 static gboolean
103 expiry_func (gpointer data)
104 {
105   SpiLeasing *leasing = SPI_LEASING (data);
106
107   ExpiryElement *head, *current;
108   GTimeVal t;
109
110   g_get_current_time (&t);
111
112   head = g_queue_peek_head (leasing->expiry_queue);
113   while (head != NULL && head->expiry_s <= t.tv_sec)
114     {
115       current = g_queue_pop_head (leasing->expiry_queue);
116
117 #ifdef SPI_ATK_DEBUG
118       g_debug ("REVOKE - ");
119       spi_cache_print_info (current->object);
120 #endif
121
122       g_object_unref (current->object);
123       g_slice_free (ExpiryElement, current);
124
125       head = g_queue_peek_head (leasing->expiry_queue);
126     }
127
128   leasing->expiry_func_id = 0;
129   add_expiry_timeout (leasing);
130
131   return FALSE;
132 }
133
134 /*---------------------------------------------------------------------------*/
135
136 /*
137   Checks if an expiry timeout is already scheduled, if so returns.
138   This is becasue events will always be added to the end of the queue.
139   Events are always later in time to previoulsy added events.
140
141   Otherwise calculate the next wake time using the top of the queue
142   and add the next expiry function.
143
144   This function is called when a lease is added or at the end of the
145   expiry function to add the next expiry timeout.
146 */
147 static void
148 add_expiry_timeout (SpiLeasing * leasing)
149 {
150   ExpiryElement *elem;
151   GTimeVal t;
152   guint next_expiry;
153
154   if (leasing->expiry_func_id != 0)
155     return;
156
157   elem = (ExpiryElement *) g_queue_peek_head (leasing->expiry_queue);
158   if (elem == NULL)
159     return;
160
161   /* The current time is implicitly rounded down here by ignoring the us */
162   g_get_current_time (&t);
163   next_expiry = elem->expiry_s - t.tv_sec;
164   leasing->expiry_func_id = g_timeout_add_seconds (next_expiry,
165                                                    expiry_func, leasing);
166 }
167
168 /*---------------------------------------------------------------------------*/
169
170 /*
171   The lease time is expected to be in seconds, the rounding is going to be to
172   intervals of 1 second.
173
174   The lease time is going to be rounded up, as the lease time should be
175   considered a MINIMUM that the object will be leased for.
176 */
177 #define LEASE_TIME_S 15
178 #define EXPIRY_TIME_S (LEASE_TIME_S + 1)
179
180 GObject *
181 spi_leasing_take (SpiLeasing * leasing, GObject * object)
182 {
183   /*
184      Get the current time.
185      Quantize the time.
186      Add the release event to the queue.
187      Check the next expiry.
188    */
189
190   GTimeVal t;
191   guint expiry_s;
192
193   ExpiryElement *elem;
194
195   g_get_current_time (&t);
196   expiry_s = t.tv_sec + EXPIRY_TIME_S;
197
198   elem = g_slice_new (ExpiryElement);
199   elem->expiry_s = expiry_s;
200   elem->object = g_object_ref (object);
201
202   g_queue_push_tail (leasing->expiry_queue, elem);
203
204   add_expiry_timeout (leasing);
205
206 #ifdef SPI_ATK_DEBUG
207   g_debug ("LEASE - ");
208   spi_cache_print_info (object);
209 #endif
210
211   return object;
212 }
213
214 /*END------------------------------------------------------------------------*/