Update FSF address
[lttv.git] / lttv / lttv / hook.h
CommitLineData
9c312311 1/* This file is part of the Linux Trace Toolkit viewer
2 * Copyright (C) 2003-2004 Michel Dagenais
3 *
47e76340 4 * 25/05/2004 Mathieu Desnoyers : Hook priorities
5 *
9c312311 6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License Version 2 as
8 * published by the Free Software Foundation;
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
b9ce0bad
YB
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
18 * MA 02110-1301, USA.
9c312311 19 */
20
c5d77517 21#ifndef HOOK_H
22#define HOOK_H
23
858bd80a 24#include <glib.h>
7a4bdb54 25#include <lttv/compiler.h>
c5d77517 26
27/* A hook is a function to call with the supplied hook data, and with
28 call site specific data (e.g., hooks for events are called with a
29 pointer to the current event). */
dc877563 30
31typedef gboolean (*LttvHook)(void *hook_data, void *call_data);
c5d77517 32
33
34/* A list of hooks allows registering hooks to be called later. */
35
996acd92 36typedef GArray LttvHooks;
dc877563 37
47e76340 38/* A priority associated with each hook, from -19 (high prio) to 20 (low prio)
39 * 0 being the default priority.
40 *
41 * Priority ordering is done in the lttv_hooks_add and lttv_hooks_add_list
42 * functions. Hook removal does not change list order.
43 */
44
bb545b3c 45#define LTTV_PRIO_DEFAULT 50
46#define LTTV_PRIO_HIGH 0
47#define LTTV_PRIO_LOW 99
48
47e76340 49typedef gint LttvHookPrio;
dc877563 50
51/* Create and destroy a list of hooks */
52
53LttvHooks *lttv_hooks_new();
54
55void lttv_hooks_destroy(LttvHooks *h);
56
57
58/* Add a hook and its hook data to the list */
59
47e76340 60void lttv_hooks_add(LttvHooks *h, LttvHook f, void *hook_data, LttvHookPrio p);
dc877563 61
62
63/* Add a list of hooks to the list h */
64
bb545b3c 65void lttv_hooks_add_list(LttvHooks *h, const LttvHooks *list);
dc877563 66
67
68/* Remove a hook from the list. Return the hook data. */
69
70void *lttv_hooks_remove(LttvHooks *h, LttvHook f);
71
72
73/* Remove a hook from the list checking that the hook data match. */
74
75void lttv_hooks_remove_data(LttvHooks *h, LttvHook f, void *hook_data);
76
77
78/* Remove a list of hooks from the hooks list in h. */
c5d77517 79
27fb4fd2 80void lttv_hooks_remove_list(LttvHooks *h, const LttvHooks *list);
c5d77517 81
c5d77517 82
dc877563 83/* Return the number of hooks in the list */
c5d77517 84
dc877563 85unsigned lttv_hooks_number(LttvHooks *h);
1b82f325 86
1b82f325 87
47e76340 88/* Return the hook at the specified position in the list.
89 * *f and *hook_data are NULL if no hook exists at that position. */
1b82f325 90
47e76340 91void lttv_hooks_get(LttvHooks *h, unsigned i, LttvHook *f, void **hook_data,
90e19f82 92 LttvHookPrio *p);
1b82f325 93
1b82f325 94
dc877563 95/* Remove the specified hook. The position of the following hooks may change */
8436038a 96/* The hook is removed from the list event if its ref_count is higher than 1 */
dc877563 97
98void lttv_hooks_remove_by_position(LttvHooks *h, unsigned i);
99
100
101/* Call all the hooks in the list, each with its hook data,
47e76340 102 with the specified call data, in priority order. Return TRUE if one hook
103 returned TRUE. */
dc877563 104
105gboolean lttv_hooks_call(LttvHooks *h, void *call_data);
106
107
47e76340 108/* Call the hooks in the list in priority order until one returns true,
109 * in which case TRUE is returned. */
dc877563 110
111gboolean lttv_hooks_call_check(LttvHooks *h, void *call_data);
c5d77517 112
113
47e76340 114/* Call hooks from two lists in priority order. If priority is the same,
115 * hooks from h1 are called first. */
116
117gboolean lttv_hooks_call_merge(LttvHooks *h1, void *call_data1,
90e19f82 118 LttvHooks *h2, void *call_data2);
47e76340 119
120gboolean lttv_hooks_call_check_merge(LttvHooks *h1, void *call_data1,
90e19f82 121 LttvHooks *h2, void *call_data2);
47e76340 122
7a4bdb54
YB
123#ifdef BABEL_CLEANUP
124
c5d77517 125/* Sometimes different hooks need to be called based on the case. The
dc877563 126 case is represented by an unsigned integer id */
127
9d239bd9 128typedef struct _LttvHooksById {
90e19f82
AM
129 GPtrArray *index;
130 GArray *array;
9d239bd9 131} LttvHooksById;
dc877563 132
dc877563 133/* Create and destroy a hooks by id list */
134
750eb11a 135LttvHooksById *lttv_hooks_by_id_new(void);
dc877563 136
137void lttv_hooks_by_id_destroy(LttvHooksById *h);
138
139
140/* Obtain the hooks for a given id, creating a list if needed */
141
142LttvHooks *lttv_hooks_by_id_find(LttvHooksById *h, unsigned id);
143
144
145/* Return an id larger than any for which a list exists. */
146
147unsigned lttv_hooks_by_id_max_id(LttvHooksById *h);
148
c5d77517 149
dc877563 150/* Get the list of hooks for an id, NULL if none exists */
c5d77517 151
04cd9a1e 152static inline LttvHooks *lttv_hooks_by_id_get(LttvHooksById *h, unsigned id)
88237536 153{
90e19f82
AM
154 LttvHooks *ret;
155 if(likely(id < h->index->len)) ret = h->index->pdata[id];
156 else ret = NULL;
88237536 157
90e19f82 158 return ret;
88237536 159}
c5d77517 160
dc877563 161/* Remove the list of hooks associated with an id */
c5d77517 162
dc877563 163void lttv_hooks_by_id_remove(LttvHooksById *h, unsigned id);
c5d77517 164
750eb11a 165void lttv_hooks_by_id_copy(LttvHooksById *dest, LttvHooksById *src);
166
167/*
168 * Hooks per channel per id. Useful for GUI to save/restore hooks
169 * on a per trace basis (rather than per tracefile).
170 */
171
172/* Internal structure, contained in by the LttvHooksByIdChannelArray */
173typedef struct _LttvHooksByIdChannel {
90e19f82
AM
174 LttvHooksById *hooks_by_id;
175 GQuark channel;
750eb11a 176} LttvHooksByIdChannel;
177
178typedef struct _LttvHooksByIdChannelArray {
90e19f82 179 GArray *array; /* Array of LttvHooksByIdChannel */
750eb11a 180} LttvHooksByIdChannelArray;
181
182LttvHooksByIdChannelArray *lttv_hooks_by_id_channel_new(void);
183
184void lttv_hooks_by_id_channel_destroy(LttvHooksByIdChannelArray *h);
185
186LttvHooks *lttv_hooks_by_id_channel_find(LttvHooksByIdChannelArray *h,
90e19f82 187 GQuark channel, guint16 id);
750eb11a 188
7a4bdb54
YB
189#endif /* BABEL_CLEANUP */
190
27fb4fd2
YB
191/* Print information about each hook in the list*/
192
193void lttv_hooks_print(const LttvHooks *h);
194
c5d77517 195#endif // HOOK_H
This page took 0.079356 seconds and 4 git commands to generate.