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