dispersion adaptative scrolling
[lttv.git] / ltt / branches / poly / lttv / lttv / tracecontext.h
CommitLineData
9c312311 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
dc877563 19#ifndef PROCESSTRACE_H
20#define PROCESSTRACE_H
21
ffd54a90 22#include <lttv/traceset.h>
dc877563 23#include <lttv/attribute.h>
24#include <lttv/hook.h>
25#include <ltt/ltt.h>
26
27/* This is the generic part of trace processing. All events within a
28 certain time interval are accessed and processing hooks are called for
29 each. The events are examined in monotonically increasing time to more
30 closely follow the traced system behavior.
31
32 Hooks are called at several different places during the processing:
33 before traceset, after traceset, check trace, before trace, after trace,
34 check tracefile, before tracefile, after tracefile,
35 check_event, before_event, before_event_by_id,
36 after_event, after_event_by_id.
37
38 In each case the "check" hooks are called first to determine if further
39 processing of the trace, tracefile or event is wanted. Then, the before
40 hooks and the after hooks are called. The before hooks for a traceset
41 are called before those for the contained traces, which are called before
42 those for the contained tracefiles. The after hooks are called in reverse
43 order. The event hooks are called after all the before_tracefile hooks
44 and before all the after_tracefile hooks.
45
46 The hooks receive two arguments, the hook_data and call_data. The hook_data
47 is specified when the hook is registered and typically links to the
48 object registering the hook (e.g. a graphical events viewer). The call_data
49 must contain all the context related to the call. The traceset hooks receive
50 the LttvTracesetContext provided by the caller. The trace hooks receive
51 the LttvTraceContext from the traces array in the LttvTracesetContext.
52 The tracefile and event hooks receive the LttvTracefileContext from
53 the tracefiles array in the LttvTraceContext. The LttEvent and LttTime
54 fields in the tracefile context are set to the current event and current
55 event time before calling the event hooks. No other context field is
56 modified.
57
58 The contexts in the traces and tracefiles arrays must be allocated by
59 the caller, either before the call or during the before hooks of the
60 enclosing traceset or trace. The order in the traces array must
61 correspond to the lttv_traceset_get function. The order in the tracefiles
62 arrays must correspond to the ltt_trace_control_tracefile_get and
63 ltt_trace_per_cpu_tracefile_get functions. The traceset, trace and
64 tracefile contexts may be subtyped as needed. Indeed, both the contexts
65 and the hooks are defined by the caller. */
66
ffd54a90 67
68typedef struct _LttvTracesetContext LttvTracesetContext;
69typedef struct _LttvTracesetContextClass LttvTracesetContextClass;
70
71typedef struct _LttvTraceContext LttvTraceContext;
72typedef struct _LttvTraceContextClass LttvTraceContextClass;
73
74typedef struct _LttvTracefileContext LttvTracefileContext;
75typedef struct _LttvTracefileContextClass LttvTracefileContextClass;
76
8697a616 77typedef struct _LttvTracesetContextPosition LttvTracesetContextPosition;
78typedef struct _LttvTraceContextPosition LttvTraceContextPosition;
79
33e44b82 80#ifndef LTTVFILTER_TYPE_DEFINED
81typedef struct _LttvFilter LttvFilter;
82#define LTTVFILTER_TYPE_DEFINED
83#endif
84
dc877563 85#define LTTV_TRACESET_CONTEXT_TYPE (lttv_traceset_context_get_type ())
86#define LTTV_TRACESET_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), LTTV_TRACESET_CONTEXT_TYPE, LttvTracesetContext))
87#define LTTV_TRACESET_CONTEXT_CLASS(vtable) (G_TYPE_CHECK_CLASS_CAST ((vtable), LTTV_TRACESET_CONTEXT_TYPE, LttvTracesetContextClass))
88#define LTTV_IS_TRACESET_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), LTTV_TRACESET_CONTEXT_TYPE))
89#define LTTV_IS_TRACESET_CONTEXT_CLASS(vtable) (G_TYPE_CHECK_CLASS_TYPE ((vtable), LTTV_TRACESET_CONTEXT_TYPE))
90#define LTTV_TRACESET_CONTEXT_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), LTTV_TRACESET_CONTEXT_TYPE, LttvTracesetContextClass))
91
dc877563 92struct _LttvTracesetContext {
93 GObject parent;
94
95 LttvTraceset *ts;
dc877563 96 LttvTraceContext **traces;
97 LttvAttribute *a;
308711e5 98 LttvAttribute *ts_a;
8697a616 99 TimeInterval time_span;
2a2fa4f0 100 GTree *pqueue;
2c82c4dc 101
18c87975 102 LttvTracesetContextPosition *sync_position; /* position at which to sync the
103 trace context */
dc877563 104};
105
106struct _LttvTracesetContextClass {
107 GObjectClass parent;
108
109 void (*init) (LttvTracesetContext *self, LttvTraceset *ts);
110 void (*fini) (LttvTracesetContext *self);
111 LttvTracesetContext* (*new_traceset_context) (LttvTracesetContext *self);
112 LttvTraceContext* (*new_trace_context) (LttvTracesetContext *self);
113 LttvTracefileContext* (*new_tracefile_context) (LttvTracesetContext *self);
114};
115
116GType lttv_traceset_context_get_type (void);
117
118void lttv_context_init(LttvTracesetContext *self, LttvTraceset *ts);
119
120void lttv_context_fini(LttvTracesetContext *self);
121
122LttvTracesetContext *
123lttv_context_new_traceset_context(LttvTracesetContext *self);
124
125LttvTraceContext *
126lttv_context_new_trace_context(LttvTracesetContext *self);
127
128LttvTracefileContext *
129lttv_context_new_tracefile_context(LttvTracesetContext *self);
130
131
132#define LTTV_TRACE_CONTEXT_TYPE (lttv_trace_context_get_type ())
133#define LTTV_TRACE_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), LTTV_TRACE_CONTEXT_TYPE, LttvTraceContext))
134#define LTTV_TRACE_CONTEXT_CLASS(vtable) (G_TYPE_CHECK_CLASS_CAST ((vtable), LTTV_TRACE_CONTEXT_TYPE, LttvTraceContextClass))
135#define LTTV_IS_TRACE_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), LTTV_TRACE_CONTEXT_TYPE))
136#define LTTV_IS_TRACE_CONTEXT_CLASS(vtable) (G_TYPE_CHECK_CLASS_TYPE ((vtable), LTTV_TRACE_CONTEXT_TYPE))
137#define LTTV_TRACE_CONTEXT_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), LTTV_TRACE_CONTEXT_TYPE, LttvTraceContextClass))
138
dc877563 139struct _LttvTraceContext {
140 GObject parent;
141
142 LttvTracesetContext *ts_context;
143 guint index; /* in ts_context->traces */
ffd54a90 144 LttTrace *t;
308711e5 145 LttvTrace *vt;
eed2ef37 146 //LttvTracefileContext **tracefiles;
147 GArray *tracefiles;
dc877563 148 LttvAttribute *a;
308711e5 149 LttvAttribute *t_a;
14aecf75 150 TimeInterval time_span;
dc877563 151};
152
153struct _LttvTraceContextClass {
154 GObjectClass parent;
155};
156
157GType lttv_trace_context_get_type (void);
158
159#define LTTV_TRACEFILE_CONTEXT_TYPE (lttv_tracefile_context_get_type ())
160#define LTTV_TRACEFILE_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), LTTV_TRACEFILE_CONTEXT_TYPE, LttvTracefileContext))
161#define LTTV_TRACEFILE_CONTEXT_CLASS(vtable) (G_TYPE_CHECK_CLASS_CAST ((vtable), LTTV_TRACEFILE_CONTEXT_TYPE, LttvTracefileContextClass))
162#define LTTV_IS_TRACEFILE_CONTEXT(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), LTTV_TRACEFILE_CONTEXT_TYPE))
163#define LTTV_IS_TRACEFILE_CONTEXT_CLASS(vtable) (G_TYPE_CHECK_CLASS_TYPE ((vtable), LTTV_TRACEFILE_CONTEXT_TYPE))
164#define LTTV_TRACEFILE_CONTEXT_GET_CLASS(inst) (G_TYPE_INSTANCE_GET_CLASS ((inst), LTTV_TRACEFILE_CONTEXT_TYPE, LttvTracefileContextClass))
165
dc877563 166struct _LttvTracefileContext {
167 GObject parent;
168
169 LttvTraceContext *t_context;
eed2ef37 170 // gboolean control;
dbb7bb09 171 guint index; /* in ts_context->tracefiles */
ffd54a90 172 LttTracefile *tf;
eed2ef37 173 // LttEvent *e;
8697a616 174 LttvHooks *event;
175 LttvHooksById *event_by_id;
ffd54a90 176 LttTime timestamp;
dc877563 177 LttvAttribute *a;
178};
179
180struct _LttvTracefileContextClass {
181 GObjectClass parent;
182};
183
184GType lttv_tracefile_context_get_type (void);
185
2a2fa4f0 186/* Run through the events in a traceset in sorted order calling all the
187 hooks appropriately. It starts at the current time and runs until end or
188 nb_events are processed. */
189
308711e5 190void lttv_process_traceset(LttvTracesetContext *self, LttTime end,
2a2fa4f0 191 unsigned nb_events);
192
8697a616 193/* Process traceset can also be done in smaller pieces calling begin,
194 * then seek and middle repeatedly, and end. The middle function return the
195 * number of events processed. It will be smaller than nb_events if the end time
196 * or end position is reached. */
2a2fa4f0 197
2a2fa4f0 198
8697a616 199void lttv_process_traceset_begin(LttvTracesetContext *self,
200 LttvHooks *before_traceset,
201 LttvHooks *before_trace,
202 LttvHooks *before_tracefile,
203 LttvHooks *event,
204 LttvHooksById *event_by_id);
205
2a2fa4f0 206
8697a616 207guint lttv_process_traceset_middle(LttvTracesetContext *self,
208 LttTime end,
b8eccacd 209 guint nb_events,
8697a616 210 const LttvTracesetContextPosition *end_position);
211
212void lttv_process_traceset_end(LttvTracesetContext *self,
213 LttvHooks *after_traceset,
214 LttvHooks *after_trace,
215 LttvHooks *after_tracefile,
216 LttvHooks *event,
217 LttvHooksById *event_by_id);
2a2fa4f0 218
308711e5 219
220void lttv_process_traceset_seek_time(LttvTracesetContext *self, LttTime start);
221
8697a616 222gboolean lttv_process_traceset_seek_position(LttvTracesetContext *self,
223 const LttvTracesetContextPosition *pos);
224
308711e5 225void lttv_process_trace_seek_time(LttvTraceContext *self, LttTime start);
dc877563 226
227void lttv_traceset_context_add_hooks(LttvTracesetContext *self,
8697a616 228 LttvHooks *before_traceset,
dc877563 229 LttvHooks *before_trace,
ffd54a90 230 LttvHooks *before_tracefile,
8697a616 231 LttvHooks *event,
232 LttvHooksById *event_by_id);
dc877563 233
234void lttv_traceset_context_remove_hooks(LttvTracesetContext *self,
dc877563 235 LttvHooks *after_traceset,
dc877563 236 LttvHooks *after_trace,
ffd54a90 237 LttvHooks *after_tracefile,
8697a616 238 LttvHooks *event,
239 LttvHooksById *event_by_id);
dc877563 240
a8c0f09d 241void lttv_trace_context_add_hooks(LttvTraceContext *self,
8697a616 242 LttvHooks *before_trace,
243 LttvHooks *before_tracefile,
244 LttvHooks *event,
245 LttvHooksById *event_by_id);
a8c0f09d 246
247void lttv_trace_context_remove_hooks(LttvTraceContext *self,
8697a616 248 LttvHooks *after_trace,
249 LttvHooks *after_tracefile,
250 LttvHooks *event,
251 LttvHooksById *event_by_id);
a8c0f09d 252
253void lttv_tracefile_context_add_hooks(LttvTracefileContext *self,
8697a616 254 LttvHooks *before_tracefile,
255 LttvHooks *event,
256 LttvHooksById *event_by_id);
257
a8c0f09d 258
259void lttv_tracefile_context_remove_hooks(LttvTracefileContext *self,
8697a616 260 LttvHooks *after_tracefile,
261 LttvHooks *event,
262 LttvHooksById *event_by_id);
263
a8c0f09d 264
265void lttv_tracefile_context_add_hooks_by_id(LttvTracefileContext *self,
266 unsigned i,
8697a616 267 LttvHooks *event_by_id);
a8c0f09d 268
269void lttv_tracefile_context_remove_hooks_by_id(LttvTracefileContext *self,
270 unsigned i);
271
eed2ef37 272/* A LttvTraceHook has two arrays of LttvTraceHookByFacility,
273 * indexed by facility ID and a simple array used to walk all the hooks */
b445142a 274typedef struct _LttvTraceHook {
eed2ef37 275 GArray *fac_index;
276 GArray *fac_list;
277} LttvTraceHook;
278
279typedef struct _LttvTraceHookByFacility {
b445142a 280 LttvHook h;
281 guint id;
282 LttField *f1;
283 LttField *f2;
284 LttField *f3;
2c82c4dc 285 gpointer hook_data;
eed2ef37 286} LttvTraceHookByFacility;
287
288
289/* Get the first facility corresponding to the name. As the types must be
290 * compatible, it is relevant to use the field name and sizes of the first
291 * facility to create data structures and assume the data will be compatible
292 * thorough the trace */
293LttvTraceHookByFacility *lttv_trace_hook_get_first(LttvTraceHook *th);
294
295LttvTraceHookByFacility *lttv_trace_hook_get_fac(
296 LttvTraceHook *th, guint facility_id);
b445142a 297
eed2ef37 298void lttv_trace_hook_destroy(LttvTraceHook *th);
b445142a 299
300/* Search in the trace for the id of the named event type within the named
301 facility. Then, find the three (if non null) named fields. All that
302 information is then used to fill the LttvTraceHook structure. This
303 is useful to find the specific id for an event within a trace, for
304 registering a hook using this structure as event data;
305 it already contains the (up to three) needed fields handles. */
306
eed2ef37 307gint lttv_trace_find_hook(LttTrace *t, GQuark facility, GQuark event_type,
2c82c4dc 308 GQuark field1, GQuark field2, GQuark field3, LttvHook h,
309 gpointer hook_data, LttvTraceHook *th);
b445142a 310
2d262115 311LttvTracefileContext *lttv_traceset_context_get_current_tfc(
312 LttvTracesetContext *self);
313
8b0bbe19 314
9ba3aaaf 315LttvTracesetContextPosition *lttv_traceset_context_position_new(
316 const LttvTracesetContext *self);
5e2c04a2 317
8697a616 318void lttv_traceset_context_position_save(const LttvTracesetContext *self,
319 LttvTracesetContextPosition *pos);
320
321void lttv_traceset_context_position_destroy(LttvTracesetContextPosition *pos);
322
5e2c04a2 323void lttv_traceset_context_position_copy(LttvTracesetContextPosition *dest,
324 const LttvTracesetContextPosition *src);
325
8697a616 326gint lttv_traceset_context_pos_pos_compare(
8b0bbe19 327 const LttvTracesetContextPosition *pos1,
328 const LttvTracesetContextPosition *pos2);
8697a616 329
330gint lttv_traceset_context_ctx_pos_compare(const LttvTracesetContext *self,
8b0bbe19 331 const LttvTracesetContextPosition *pos2);
8697a616 332
2d262115 333LttTime lttv_traceset_context_position_get_time(
8b0bbe19 334 const LttvTracesetContextPosition *pos);
335
27304273 336gint compare_tracefile(gconstpointer a, gconstpointer b);
8b0bbe19 337
2c82c4dc 338
339/* Synchronisation helpers : save/restore synchronization between ltt traces and
340 * a traceset context. */
18c87975 341void lttv_process_traceset_synchronize_tracefiles(LttvTracesetContext *tsc);
2c82c4dc 342
18c87975 343void lttv_process_traceset_get_sync_data(LttvTracesetContext *tsc);
2c82c4dc 344
0bd2f89c 345/* Seek n events forward and backward (without filtering) : only use these where
346 * necessary : the seek backward is costy. */
347
348#define BACKWARD_SEEK_MUL 2 /* Multiplication factor of time_offset between
349 backward seek iterations */
350
6806de9d 351static const LttTime seek_back_default_offset = { 0, 1000000 };
33e44b82 352
0bd2f89c 353guint lttv_process_traceset_seek_n_forward(LttvTracesetContext *self,
33e44b82 354 guint n,
355 LttvFilter *filter);
356typedef void (*seek_time_fct)(LttvTracesetContext *self, LttTime start);
0bd2f89c 357
33e44b82 358/* If first_offset is ltt_time_zero, it will choose a default value */
0bd2f89c 359guint lttv_process_traceset_seek_n_backward(LttvTracesetContext *self,
33e44b82 360 guint n,
361 LttTime first_offset,
362 seek_time_fct,
363 LttvFilter *filter);
364
0bd2f89c 365
dc877563 366#endif // PROCESSTRACE_H
This page took 0.089921 seconds and 4 git commands to generate.