move everything out of trunk
[lttv.git] / lttng-xenomai / LinuxTraceToolkitViewer-0.8.61-xenoltt / lttv / lttv / hook.c
1 /* This file is part of the Linux Trace Toolkit viewer
2 * Copyright (C) 2003-2004 Michel Dagenais
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License Version 2 as
6 * published by the Free Software Foundation;
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
16 * MA 02111-1307, USA.
17 */
18
19 #ifdef HAVE_CONFIG_H
20 #include <config.h>
21 #endif
22
23 #include <lttv/hook.h>
24 #include <ltt/compiler.h>
25 #include <ltt/ltt.h>
26
27 typedef struct _LttvHookClosure {
28 LttvHook hook;
29 void *hook_data;
30 LttvHookPrio prio;
31 guint ref_count;
32 } LttvHookClosure;
33
34 gint lttv_hooks_prio_compare(LttvHookClosure *a, LttvHookClosure *b)
35 {
36 gint ret=0;
37 if(a->prio < b->prio) ret = -1;
38 else if(a->prio > b->prio) ret = 1;
39 return ret;
40 }
41
42
43 LttvHooks *lttv_hooks_new()
44 {
45 return g_array_new(FALSE, FALSE, sizeof(LttvHookClosure));
46 }
47
48
49 void lttv_hooks_destroy(LttvHooks *h)
50 {
51 g_log(G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, "lttv_hooks_destroy()");
52 g_array_free(h, TRUE);
53 }
54
55
56 void lttv_hooks_add(LttvHooks *h, LttvHook f, void *hook_data, LttvHookPrio p)
57 {
58 LttvHookClosure *c, new_c;
59 guint i;
60
61 if(unlikely(h == NULL))g_error("Null hook added");
62
63 new_c.hook = f;
64 new_c.hook_data = hook_data;
65 new_c.prio = p;
66 new_c.ref_count = 1;
67
68 /* Preliminary check for duplication */
69 /* only hook and hook data is checked */
70 for(i = 0; i < h->len; i++) {
71 c = &g_array_index(h, LttvHookClosure, i);
72 if(new_c.hook == c->hook && new_c.hook_data == c->hook_data) {
73 g_assert(new_c.prio == c->prio);
74 c->ref_count++;
75 return;
76 }
77 }
78
79
80 for(i = 0; i < h->len; i++) {
81 c = &g_array_index(h, LttvHookClosure, i);
82 if(new_c.prio < c->prio) {
83 g_array_insert_val(h,i,new_c);
84 return;
85 }
86 }
87 if(i == h->len)
88 g_array_append_val(h,new_c);
89 }
90
91 /* lttv_hooks_add_list
92 *
93 * Adds a sorted list into another sorted list.
94 *
95 * Note : h->len is modified, but only incremented. This assures
96 * its coherence through the function.
97 *
98 * j is an index to the element following the last one added in the
99 * destination array.
100 */
101 void lttv_hooks_add_list(LttvHooks *h, const LttvHooks *list)
102 {
103 guint i,j,k;
104 LttvHookClosure *c;
105 const LttvHookClosure *new_c;
106
107 if(unlikely(list == NULL)) return;
108
109 for(i = 0, j = 0 ; i < list->len; i++) {
110 new_c = &g_array_index(list, LttvHookClosure, i);
111 gboolean found=FALSE;
112
113 /* Preliminary check for duplication */
114 /* only hook and hook data is checked, not priority */
115 for(k = 0; k < h->len; k++) {
116 c = &g_array_index(h, LttvHookClosure, k);
117 if(new_c->hook == c->hook && new_c->hook_data == c->hook_data) {
118 /* Found another identical entry : increment its ref_count and
119 * jump over the source index */
120 g_assert(new_c->prio == c->prio);
121 found=TRUE;
122 c->ref_count++;
123 break;
124 }
125 }
126
127 if(!found) {
128 /* If not found, add it to the destination array */
129 while(j < h->len) {
130 c = &g_array_index(h, LttvHookClosure, j);
131 if(new_c->prio < c->prio) {
132 g_array_insert_val(h,j,*new_c);
133 j++;
134 break;
135 }
136 else j++;
137 }
138 if(j == h->len) {
139 g_array_append_val(h,*new_c);
140 j++;
141 }
142 }
143 }
144 }
145
146
147 void *lttv_hooks_remove(LttvHooks *h, LttvHook f)
148 {
149 unsigned i;
150
151 void *hook_data;
152
153 LttvHookClosure *c;
154
155 for(i = 0 ; i < h->len ; i++) {
156 c = &g_array_index(h, LttvHookClosure, i);
157 if(c->hook == f) {
158 if(c->ref_count == 1) {
159 hook_data = c->hook_data;
160 lttv_hooks_remove_by_position(h, i);
161 return hook_data;
162 } else {
163 g_assert(c->ref_count != 0);
164 c->ref_count--;
165 return NULL; /* We do not want anyone to free a hook_data
166 still referenced */
167 }
168 }
169 }
170 return NULL;
171 }
172
173
174 void lttv_hooks_remove_data(LttvHooks *h, LttvHook f, void *hook_data)
175 {
176 unsigned i;
177
178 LttvHookClosure *c;
179
180 for(i = 0 ; i < h->len ; i++) {
181 c = &g_array_index(h, LttvHookClosure, i);
182 if(c->hook == f && c->hook_data == hook_data) {
183 if(c->ref_count == 1) {
184 lttv_hooks_remove_by_position(h, i);
185 return;
186 } else {
187 g_assert(c->ref_count != 0);
188 c->ref_count--;
189 return;
190 }
191 }
192 }
193 }
194
195
196 void lttv_hooks_remove_list(LttvHooks *h, LttvHooks *list)
197 {
198 guint i, j;
199
200 LttvHookClosure *c, *c_list;
201
202 if(list == NULL) return;
203 for(i = 0, j = 0 ; i < h->len && j < list->len ;) {
204 c = &g_array_index(h, LttvHookClosure, i);
205 c_list = &g_array_index(list, LttvHookClosure, j);
206 if(c->hook == c_list->hook && c->hook_data == c_list->hook_data) {
207 if(c->ref_count == 1) {
208 lttv_hooks_remove_by_position(h, i);
209 } else {
210 g_assert(c->ref_count != 0);
211 c->ref_count--;
212 }
213 j++;
214 }
215 else i++;
216 }
217
218 /* Normally the hooks in h are ordered as in list. If this is not the case,
219 try harder here. */
220
221 if(unlikely(j < list->len)) {
222 for(; j < list->len ; j++) {
223 c_list = &g_array_index(list, LttvHookClosure, j);
224 lttv_hooks_remove_data(h, c_list->hook, c_list->hook_data);
225 }
226 }
227 }
228
229
230 unsigned lttv_hooks_number(LttvHooks *h)
231 {
232 return h->len;
233 }
234
235
236 void lttv_hooks_get(LttvHooks *h, unsigned i, LttvHook *f, void **hook_data,
237 LttvHookPrio *p)
238 {
239 LttvHookClosure *c;
240
241 if(unlikely(i >= h->len))
242 {
243 *f = NULL;
244 *hook_data = NULL;
245 *p = 0;
246 return;
247 }
248
249 c = &g_array_index(h, LttvHookClosure, i);
250 *f = c->hook;
251 *hook_data = c->hook_data;
252 *p = c->prio;
253 }
254
255
256 void lttv_hooks_remove_by_position(LttvHooks *h, unsigned i)
257 {
258 g_array_remove_index(h, i);
259 }
260
261 gboolean lttv_hooks_call(LttvHooks *h, void *call_data)
262 {
263 gboolean ret, sum_ret = FALSE;
264
265 LttvHookClosure *c;
266
267 guint i;
268
269 if(likely(h != NULL)) {
270 for(i = 0 ; i < h->len ; i++) {
271 c = &g_array_index(h, LttvHookClosure, i);
272 ret = c->hook(c->hook_data,call_data);
273 sum_ret = sum_ret || ret;
274 }
275 }
276 return sum_ret;
277 }
278
279
280 gboolean lttv_hooks_call_check(LttvHooks *h, void *call_data)
281 {
282 LttvHookClosure *c;
283
284 guint i;
285
286 for(i = 0 ; i < h->len ; i++) {
287 c = &g_array_index(h, LttvHookClosure, i);
288 if(unlikely(c->hook(c->hook_data,call_data))) return TRUE;
289 }
290 return FALSE;
291 }
292
293 /* Optimised for h1 == NULL, h2 != NULL. This is the case
294 * for optimised computation (with specific by id hooks, but
295 * no main hooks).
296 *
297 * The second case that should occur the most often is
298 * h1 != NULL , h2 == NULL.
299 */
300 gint lttv_hooks_call_merge(LttvHooks *h1, void *call_data1,
301 LttvHooks *h2, void *call_data2)
302 {
303 gint ret, sum_ret = 0;
304
305 LttvHookClosure *c1, *c2;
306
307 guint i, j;
308
309 if(unlikely(h1 != NULL)) {
310 if(unlikely(h2 != NULL)) {
311 for(i = 0, j = 0 ; i < h1->len && j < h2->len ;) {
312 c1 = &g_array_index(h1, LttvHookClosure, i);
313 c2 = &g_array_index(h2, LttvHookClosure, j);
314 if(c1->prio <= c2->prio) {
315 ret = c1->hook(c1->hook_data,call_data1);
316 sum_ret = sum_ret | ret;
317 i++;
318 }
319 else {
320 ret = c2->hook(c2->hook_data,call_data2);
321 sum_ret = sum_ret | ret;
322 j++;
323 }
324 }
325 /* Finish the last list with hooks left */
326 for(;i < h1->len; i++) {
327 c1 = &g_array_index(h1, LttvHookClosure, i);
328 ret = c1->hook(c1->hook_data,call_data1);
329 sum_ret = sum_ret | ret;
330 }
331 for(;j < h2->len; j++) {
332 c2 = &g_array_index(h2, LttvHookClosure, j);
333 ret = c2->hook(c2->hook_data,call_data2);
334 sum_ret = sum_ret | ret;
335 }
336 } else { /* h1 != NULL && h2 == NULL */
337 for(i = 0 ; i < h1->len ; i++) {
338 c1 = &g_array_index(h1, LttvHookClosure, i);
339 ret = c1->hook(c1->hook_data,call_data1);
340 sum_ret = sum_ret | ret;
341 }
342 }
343 } else if(likely(h2 != NULL)) { /* h1 == NULL && h2 != NULL */
344 for(j = 0 ; j < h2->len ; j++) {
345 c2 = &g_array_index(h2, LttvHookClosure, j);
346 ret = c2->hook(c2->hook_data,call_data2);
347 sum_ret = sum_ret | ret;
348 }
349 }
350
351 return sum_ret;
352 }
353
354 gboolean lttv_hooks_call_check_merge(LttvHooks *h1, void *call_data1,
355 LttvHooks *h2, void *call_data2)
356 {
357 LttvHookClosure *c1, *c2;
358
359 guint i, j;
360
361 if(unlikely(h1 != NULL)) {
362 if(unlikely(h2 != NULL)) {
363 for(i = 0, j = 0 ; i < h1->len && j < h2->len ;) {
364 c1 = &g_array_index(h1, LttvHookClosure, i);
365 c2 = &g_array_index(h2, LttvHookClosure, j);
366 if(c1->prio <= c2->prio) {
367 if(c1->hook(c1->hook_data,call_data1)) return TRUE;
368 i++;
369 }
370 else {
371 if(c2->hook(c2->hook_data,call_data2)) return TRUE;
372 j++;
373 }
374 }
375 /* Finish the last list with hooks left */
376 for(;i < h1->len; i++) {
377 c1 = &g_array_index(h1, LttvHookClosure, i);
378 if(c1->hook(c1->hook_data,call_data1)) return TRUE;
379 }
380 for(;j < h2->len; j++) {
381 c2 = &g_array_index(h2, LttvHookClosure, j);
382 if(c2->hook(c2->hook_data,call_data2)) return TRUE;
383 }
384 } else { /* h2 == NULL && h1 != NULL */
385 for(i = 0 ; i < h1->len ; i++) {
386 c1 = &g_array_index(h1, LttvHookClosure, i);
387 if(c1->hook(c1->hook_data,call_data1)) return TRUE;
388 }
389 }
390 } else if(likely(h2 != NULL)) { /* h1 == NULL && h2 != NULL */
391 for(j = 0 ; j < h2->len ; j++) {
392 c2 = &g_array_index(h2, LttvHookClosure, j);
393 if(c2->hook(c2->hook_data,call_data2)) return TRUE;
394 }
395 }
396
397 return FALSE;
398
399 }
400
401 /* Two pointer arrays :
402 * * one indexed by id for quick search :
403 * size : max id
404 * typically 4 bytes * 256 facilities * 10 events = 10kbytes
405 * * another array that keeps a list of used numbers (for later deletion)
406 * size : number of ids used.
407 */
408
409 LttvHooksById *lttv_hooks_by_id_new()
410 {
411 LttvHooksById *h = g_new(LttvHooksById, 1);
412 h->index = g_ptr_array_sized_new(NUM_FACILITIES * AVG_EVENTS_PER_FACILITIES);
413 h->array = g_array_sized_new(FALSE, FALSE, sizeof(guint), 50);
414 return h;
415 }
416
417
418 void lttv_hooks_by_id_destroy(LttvHooksById *h)
419 {
420 guint i;
421
422 for(i = 0 ; i < h->array->len ; i++) {
423 guint index = g_array_index(h->array, guint, i);
424 if(h->index->pdata[index] != NULL) { /* hook may have been removed */
425 lttv_hooks_destroy(h->index->pdata[index]);
426 h->index->pdata[index] = NULL; /* Must be there in case of
427 multiple addition of the same index */
428 }
429 }
430 g_ptr_array_free(h->index, TRUE);
431 g_array_free(h->array, TRUE);
432 }
433
434 /* Optimised for searching an existing hook */
435 LttvHooks *lttv_hooks_by_id_find(LttvHooksById *h, unsigned id)
436 {
437 if(unlikely(h->index->len <= id)) g_ptr_array_set_size(h->index, id + 1);
438 if(unlikely(h->index->pdata[id] == NULL)) {
439 h->index->pdata[id] = lttv_hooks_new();
440 g_array_append_val(h->array, id);
441 }
442 return h->index->pdata[id];
443 }
444
445
446 unsigned lttv_hooks_by_id_max_id(LttvHooksById *h)
447 {
448 return h->index->len;
449 }
450
451 /* We don't bother removing the used slot array id : lttv_hooks_by_id_destroy is
452 * almost never called and is able to deal with used slot repetition. */
453 void lttv_hooks_by_id_remove(LttvHooksById *h, unsigned id)
454 {
455 if(likely(id < h->index->len && h->index->pdata[id] != NULL)) {
456 lttv_hooks_destroy((LttvHooks *)h->index->pdata[id]);
457 h->index->pdata[id] = NULL;
458 }
459 }
460
This page took 0.038765 seconds and 4 git commands to generate.