update lttctl
[lttv.git] / trunk / lttv / lttv / lttv / tracecontext.c
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
4e4d11b3 19#ifdef HAVE_CONFIG_H
20#include <config.h>
21#endif
22
00e74b69 23#include <string.h>
f0ca53e9 24#include <lttv/lttv.h>
d8f124de 25#include <lttv/tracecontext.h>
ffd54a90 26#include <ltt/event.h>
a5dcde2f 27#include <ltt/trace.h>
33e44b82 28#include <lttv/filter.h>
27304273 29#include <errno.h>
dc877563 30
0bd2f89c 31#define min(a,b) (((a)<(b))?(a):(b))
8697a616 32
33
27304273 34gint compare_tracefile(gconstpointer a, gconstpointer b)
8697a616 35{
cf94ff67 36 gint comparison = 0;
8697a616 37
00e74b69 38 const LttvTracefileContext *trace_a = (const LttvTracefileContext *)a;
00e74b69 39 const LttvTracefileContext *trace_b = (const LttvTracefileContext *)b;
8697a616 40
1d1df11d 41 if(likely(trace_a != trace_b)) {
8fe3c6b6 42 comparison = ltt_time_compare(trace_a->timestamp, trace_b->timestamp);
1d1df11d 43 if(unlikely(comparison == 0)) {
a855f059 44 if(trace_a->index < trace_b->index) comparison = -1;
45 else if(trace_a->index > trace_b->index) comparison = 1;
46 else if(trace_a->t_context->index < trace_b->t_context->index)
47 comparison = -1;
48 else if(trace_a->t_context->index > trace_b->t_context->index)
49 comparison = 1;
50 }
cf94ff67 51 }
cf94ff67 52 return comparison;
8697a616 53}
54
9ba3aaaf 55typedef struct _LttvTracefileContextPosition {
56 LttEventPosition *event;
57 LttvTracefileContext *tfc;
58 gboolean used; /* Tells if the tfc is at end of traceset position */
59} LttvTracefileContextPosition;
60
61
8697a616 62struct _LttvTracesetContextPosition {
9ba3aaaf 63 GArray *tfcp; /* Array of LttvTracefileContextPosition */
18c87975 64 LttTime timestamp; /* Current time at the saved position */
65 /* If ltt_time_infinite : no position is
66 * set, else, a position is set (may be end
67 * of trace, with ep->len == 0) */
8697a616 68};
69
ffd54a90 70void lttv_context_init(LttvTracesetContext *self, LttvTraceset *ts)
dc877563 71{
ffd54a90 72 LTTV_TRACESET_CONTEXT_GET_CLASS(self)->init(self, ts);
dc877563 73}
74
75
76void lttv_context_fini(LttvTracesetContext *self)
77{
78 LTTV_TRACESET_CONTEXT_GET_CLASS(self)->fini(self);
79}
80
81
82LttvTracesetContext *
83lttv_context_new_traceset_context(LttvTracesetContext *self)
84{
85 return LTTV_TRACESET_CONTEXT_GET_CLASS(self)->new_traceset_context(self);
86}
87
88
89
90
91LttvTraceContext *
92lttv_context_new_trace_context(LttvTracesetContext *self)
93{
94 return LTTV_TRACESET_CONTEXT_GET_CLASS(self)->new_trace_context(self);
95}
96
97
98LttvTracefileContext *
99lttv_context_new_tracefile_context(LttvTracesetContext *self)
100{
c6bc9cb9 101 return LTTV_TRACESET_CONTEXT_GET_CLASS(self)->new_tracefile_context(self);
dc877563 102}
103
f7afe191 104/****************************************************************************
105 * lttv_traceset_context_compute_time_span
106 *
8697a616 107 * Keep the time span is sync with on the fly addition and removal of traces
f7afe191 108 * in a trace set. It must be called each time a trace is added/removed from
109 * the traceset. It could be more efficient to call it only once a bunch
110 * of traces are loaded, but the calculation is not long, so it's not
111 * critical.
112 *
113 * Author : Xang Xiu Yang
f7afe191 114 ***************************************************************************/
115static void lttv_traceset_context_compute_time_span(
116 LttvTracesetContext *self,
33f7a12c 117 TimeInterval *time_span)
f7afe191 118{
119 LttvTraceset * traceset = self->ts;
120 int numTraces = lttv_traceset_number(traceset);
121 int i;
122 LttTime s, e;
123 LttvTraceContext *tc;
124 LttTrace * trace;
125
33f7a12c 126 time_span->start_time.tv_sec = 0;
127 time_span->start_time.tv_nsec = 0;
128 time_span->end_time.tv_sec = 0;
129 time_span->end_time.tv_nsec = 0;
912be9a5 130
f7afe191 131 for(i=0; i<numTraces;i++){
132 tc = self->traces[i];
133 trace = tc->t;
134
135 ltt_trace_time_span_get(trace, &s, &e);
14aecf75 136 tc->time_span.start_time = s;
137 tc->time_span.end_time = e;
f7afe191 138
139 if(i==0){
33f7a12c 140 time_span->start_time = s;
141 time_span->end_time = e;
f7afe191 142 }else{
33f7a12c 143 if(s.tv_sec < time_span->start_time.tv_sec
144 || (s.tv_sec == time_span->start_time.tv_sec
145 && s.tv_nsec < time_span->start_time.tv_nsec))
146 time_span->start_time = s;
147 if(e.tv_sec > time_span->end_time.tv_sec
148 || (e.tv_sec == time_span->end_time.tv_sec
149 && e.tv_nsec > time_span->end_time.tv_nsec))
150 time_span->end_time = e;
f7afe191 151 }
152 }
153}
154
eed2ef37 155static void init_tracefile_context(LttTracefile *tracefile,
156 LttvTraceContext *tc)
157{
158 LttvTracefileContext *tfc;
159 LttvTracesetContext *tsc = tc->ts_context;
160
161 tfc = LTTV_TRACESET_CONTEXT_GET_CLASS(tsc)->new_tracefile_context(tsc);
162
163 tfc->index = tc->tracefiles->len;
164 tc->tracefiles = g_array_append_val(tc->tracefiles, tfc);
165
166 tfc->tf = tracefile;
167
168 tfc->t_context = tc;
169 tfc->event = lttv_hooks_new();
170 tfc->event_by_id = lttv_hooks_by_id_new();
171 tfc->a = g_object_new(LTTV_ATTRIBUTE_TYPE, NULL);
e38d9ea0 172 tfc->target_pid = -1;
eed2ef37 173}
174
dc877563 175
176static void
177init(LttvTracesetContext *self, LttvTraceset *ts)
178{
327a4314 179 guint i, nb_trace;
dc877563 180
181 LttvTraceContext *tc;
182
3865ea09 183 GData **tracefiles_groups;
dc877563 184
eed2ef37 185 struct compute_tracefile_group_args args;
308711e5 186
dc877563 187 nb_trace = lttv_traceset_number(ts);
188 self->ts = ts;
ffd54a90 189 self->traces = g_new(LttvTraceContext *, nb_trace);
ffd54a90 190 self->a = g_object_new(LTTV_ATTRIBUTE_TYPE, NULL);
308711e5 191 self->ts_a = lttv_traceset_attribute(ts);
dc877563 192 for(i = 0 ; i < nb_trace ; i++) {
ffd54a90 193 tc = LTTV_TRACESET_CONTEXT_GET_CLASS(self)->new_trace_context(self);
dc877563 194 self->traces[i] = tc;
195
196 tc->ts_context = self;
197 tc->index = i;
308711e5 198 tc->vt = lttv_traceset_get(ts, i);
199 tc->t = lttv_trace(tc->vt);
ffd54a90 200 tc->a = g_object_new(LTTV_ATTRIBUTE_TYPE, NULL);
308711e5 201 tc->t_a = lttv_trace_attribute(tc->vt);
3865ea09 202 tc->tracefiles = g_array_sized_new(FALSE, TRUE,
203 sizeof(LttvTracefileContext*), 10);
eed2ef37 204
205 tracefiles_groups = ltt_trace_get_tracefiles_groups(tc->t);
e45551ac 206 if(tracefiles_groups != NULL) {
207 args.func = (ForEachTraceFileFunc)init_tracefile_context;
208 args.func_args = tc;
eed2ef37 209
e45551ac 210 g_datalist_foreach(tracefiles_groups,
211 (GDataForeachFunc)compute_tracefile_group,
212 &args);
213 }
eed2ef37 214
215#if 0
dc877563 216 nb_control = ltt_trace_control_tracefile_number(tc->t);
217 nb_per_cpu = ltt_trace_per_cpu_tracefile_number(tc->t);
218 nb_tracefile = nb_control + nb_per_cpu;
dbb7bb09 219 tc->tracefiles = g_new(LttvTracefileContext *, nb_tracefile);
dc877563 220
221 for(j = 0 ; j < nb_tracefile ; j++) {
ffd54a90 222 tfc = LTTV_TRACESET_CONTEXT_GET_CLASS(self)->new_tracefile_context(self);
dbb7bb09 223 tc->tracefiles[j] = tfc;
224 tfc->index = j;
225
dc877563 226 if(j < nb_control) {
dc877563 227 tfc->control = TRUE;
ffd54a90 228 tfc->tf = ltt_trace_control_tracefile_get(tc->t, j);
dc877563 229 }
230 else {
dc877563 231 tfc->control = FALSE;
ffd54a90 232 tfc->tf = ltt_trace_per_cpu_tracefile_get(tc->t, j - nb_control);
dc877563 233 }
eed2ef37 234
dc877563 235 tfc->t_context = tc;
d3e01c7a 236 tfc->e = ltt_event_new();
8697a616 237 tfc->event = lttv_hooks_new();
238 tfc->event_by_id = lttv_hooks_by_id_new();
ffd54a90 239 tfc->a = g_object_new(LTTV_ATTRIBUTE_TYPE, NULL);
dc877563 240 }
eed2ef37 241#endif //0
242
dc877563 243 }
9ba3aaaf 244 self->sync_position = lttv_traceset_context_position_new(self);
2d262115 245 self->pqueue = g_tree_new(compare_tracefile);
eed2ef37 246 lttv_process_traceset_seek_time(self, ltt_time_zero);
33f7a12c 247 lttv_traceset_context_compute_time_span(self, &self->time_span);
8697a616 248
dc877563 249}
250
251
252void fini(LttvTracesetContext *self)
253{
dbb7bb09 254 guint i, j, nb_trace, nb_tracefile;
dc877563 255
256 LttvTraceContext *tc;
257
1986f254 258 LttvTracefileContext **tfc;
dc877563 259
ffd54a90 260 LttvTraceset *ts = self->ts;
dc877563 261
8697a616 262 g_tree_destroy(self->pqueue);
2061e03d 263 g_object_unref(self->a);
18c87975 264 lttv_traceset_context_position_destroy(self->sync_position);
dc877563 265
266 nb_trace = lttv_traceset_number(ts);
267
268 for(i = 0 ; i < nb_trace ; i++) {
269 tc = self->traces[i];
270
ffd54a90 271 g_object_unref(tc->a);
dc877563 272
eed2ef37 273 nb_tracefile = tc->tracefiles->len;
dc877563 274
275 for(j = 0 ; j < nb_tracefile ; j++) {
1986f254 276 tfc = &g_array_index(tc->tracefiles, LttvTracefileContext*, j);
277 lttv_hooks_destroy((*tfc)->event);
278 lttv_hooks_by_id_destroy((*tfc)->event_by_id);
279 g_object_unref((*tfc)->a);
280 g_object_unref(*tfc);
dc877563 281 }
eed2ef37 282 g_array_free(tc->tracefiles, TRUE);
dc877563 283 g_object_unref(tc);
284 }
285 g_free(self->traces);
286}
287
288
289void lttv_traceset_context_add_hooks(LttvTracesetContext *self,
8697a616 290 LttvHooks *before_traceset,
dc877563 291 LttvHooks *before_trace,
ffd54a90 292 LttvHooks *before_tracefile,
8697a616 293 LttvHooks *event,
294 LttvHooksById *event_by_id)
dc877563 295{
296 LttvTraceset *ts = self->ts;
297
8697a616 298 guint i, nb_trace;
dc877563 299
300 LttvTraceContext *tc;
301
8697a616 302 lttv_hooks_call(before_traceset, self);
dc877563 303
dc877563 304 nb_trace = lttv_traceset_number(ts);
305
306 for(i = 0 ; i < nb_trace ; i++) {
307 tc = self->traces[i];
8697a616 308 lttv_trace_context_add_hooks(tc,
309 before_trace,
310 before_tracefile,
311 event,
312 event_by_id);
dc877563 313 }
314}
315
316
317void lttv_traceset_context_remove_hooks(LttvTracesetContext *self,
dc877563 318 LttvHooks *after_traceset,
dc877563 319 LttvHooks *after_trace,
ffd54a90 320 LttvHooks *after_tracefile,
8697a616 321 LttvHooks *event,
322 LttvHooksById *event_by_id)
dc877563 323{
8697a616 324
dc877563 325 LttvTraceset *ts = self->ts;
326
8697a616 327 guint i, nb_trace;
dc877563 328
329 LttvTraceContext *tc;
330
dc877563 331 nb_trace = lttv_traceset_number(ts);
332
333 for(i = 0 ; i < nb_trace ; i++) {
334 tc = self->traces[i];
8697a616 335 lttv_trace_context_remove_hooks(tc,
336 after_trace,
337 after_tracefile,
338 event,
339 event_by_id);
dc877563 340 }
8697a616 341
342 lttv_hooks_call(after_traceset, self);
343
344
dc877563 345}
346
8697a616 347void lttv_trace_context_add_hooks(LttvTraceContext *self,
348 LttvHooks *before_trace,
349 LttvHooks *before_tracefile,
350 LttvHooks *event,
351 LttvHooksById *event_by_id)
a8c0f09d 352{
8697a616 353 guint i, nb_tracefile;
354
1986f254 355 LttvTracefileContext **tfc;
8697a616 356
357 lttv_hooks_call(before_trace, self);
eed2ef37 358
359 nb_tracefile = self->tracefiles->len;
8697a616 360
361 for(i = 0 ; i < nb_tracefile ; i++) {
1986f254 362 tfc = &g_array_index(self->tracefiles, LttvTracefileContext*, i);
363 lttv_tracefile_context_add_hooks(*tfc,
8697a616 364 before_tracefile,
365 event,
366 event_by_id);
367 }
a8c0f09d 368}
369
8697a616 370
371
372void lttv_trace_context_remove_hooks(LttvTraceContext *self,
373 LttvHooks *after_trace,
374 LttvHooks *after_tracefile,
375 LttvHooks *event,
376 LttvHooksById *event_by_id)
a8c0f09d 377{
8697a616 378 guint i, nb_tracefile;
379
1986f254 380 LttvTracefileContext **tfc;
8697a616 381
eed2ef37 382 nb_tracefile = self->tracefiles->len;
8697a616 383
384 for(i = 0 ; i < nb_tracefile ; i++) {
1986f254 385 tfc = &g_array_index(self->tracefiles, LttvTracefileContext*, i);
386 lttv_tracefile_context_remove_hooks(*tfc,
8697a616 387 after_tracefile,
388 event,
389 event_by_id);
390 }
391
392 lttv_hooks_call(after_trace, self);
a8c0f09d 393}
394
8697a616 395void lttv_tracefile_context_add_hooks(LttvTracefileContext *self,
396 LttvHooks *before_tracefile,
397 LttvHooks *event,
398 LttvHooksById *event_by_id)
a8c0f09d 399{
9d239bd9 400 guint i, index;
8697a616 401
402 LttvHooks *hook;
403
404 lttv_hooks_call(before_tracefile, self);
405 lttv_hooks_add_list(self->event, event);
9d239bd9 406 if(event_by_id != NULL) {
407 for(i = 0; i < event_by_id->array->len; i++) {
408 index = g_array_index(event_by_id->array, guint, i);
409 hook = lttv_hooks_by_id_find(self->event_by_id, index);
410 lttv_hooks_add_list(hook, lttv_hooks_by_id_get(event_by_id, index));
8697a616 411 }
9d239bd9 412 }
a8c0f09d 413}
414
8697a616 415void lttv_tracefile_context_remove_hooks(LttvTracefileContext *self,
416 LttvHooks *after_tracefile,
417 LttvHooks *event,
418 LttvHooksById *event_by_id)
a8c0f09d 419{
9d239bd9 420 guint i, index;
8697a616 421
422 LttvHooks *hook;
423
8697a616 424 lttv_hooks_remove_list(self->event, event);
9d239bd9 425 if(event_by_id != NULL) {
426 for(i = 0; i < event_by_id->array->len; i++) {
427 index = g_array_index(event_by_id->array, guint, i);
428 hook = lttv_hooks_by_id_get(self->event_by_id, index);
41a9e0c3 429 if(hook != NULL)
9d239bd9 430 lttv_hooks_remove_list(hook, lttv_hooks_by_id_get(event_by_id, index));
8697a616 431 }
9d239bd9 432 }
8697a616 433
434 lttv_hooks_call(after_tracefile, self);
a8c0f09d 435}
436
8697a616 437
438
a8c0f09d 439void lttv_tracefile_context_add_hooks_by_id(LttvTracefileContext *tfc,
440 unsigned i,
8697a616 441 LttvHooks *event_by_id)
a8c0f09d 442{
443 LttvHooks * h;
8697a616 444 h = lttv_hooks_by_id_find(tfc->event_by_id, i);
445 lttv_hooks_add_list(h, event_by_id);
a8c0f09d 446}
447
448void lttv_tracefile_context_remove_hooks_by_id(LttvTracefileContext *tfc,
449 unsigned i)
450{
8697a616 451 lttv_hooks_by_id_remove(tfc->event_by_id, i);
a8c0f09d 452}
dc877563 453
ba576a78 454static LttvTracesetContext *
dc877563 455new_traceset_context(LttvTracesetContext *self)
456{
ffd54a90 457 return g_object_new(LTTV_TRACESET_CONTEXT_TYPE, NULL);
dc877563 458}
459
460
ba576a78 461static LttvTraceContext *
dc877563 462new_trace_context(LttvTracesetContext *self)
463{
ffd54a90 464 return g_object_new(LTTV_TRACE_CONTEXT_TYPE, NULL);
dc877563 465}
466
467
ba576a78 468static LttvTracefileContext *
dc877563 469new_tracefile_context(LttvTracesetContext *self)
470{
ffd54a90 471 return g_object_new(LTTV_TRACEFILE_CONTEXT_TYPE, NULL);
dc877563 472}
473
474
475static void
476traceset_context_instance_init (GTypeInstance *instance, gpointer g_class)
477{
478 /* Be careful of anything which would not work well with shallow copies */
479}
480
481
482static void
483traceset_context_finalize (LttvTracesetContext *self)
484{
b445142a 485 G_OBJECT_CLASS(g_type_class_peek(g_type_parent(LTTV_TRACESET_CONTEXT_TYPE)))
486 ->finalize(G_OBJECT(self));
dc877563 487}
488
489
490static void
491traceset_context_class_init (LttvTracesetContextClass *klass)
492{
493 GObjectClass *gobject_class = G_OBJECT_CLASS(klass);
494
ffd54a90 495 gobject_class->finalize = (void (*)(GObject *self))traceset_context_finalize;
dc877563 496 klass->init = init;
497 klass->fini = fini;
498 klass->new_traceset_context = new_traceset_context;
499 klass->new_trace_context = new_trace_context;
500 klass->new_tracefile_context = new_tracefile_context;
501}
502
503
504GType
ffd54a90 505lttv_traceset_context_get_type(void)
dc877563 506{
507 static GType type = 0;
508 if (type == 0) {
509 static const GTypeInfo info = {
ffd54a90 510 sizeof (LttvTracesetContextClass),
dc877563 511 NULL, /* base_init */
512 NULL, /* base_finalize */
ffd54a90 513 (GClassInitFunc) traceset_context_class_init, /* class_init */
dc877563 514 NULL, /* class_finalize */
515 NULL, /* class_data */
ffd54a90 516 sizeof (LttvTracesetContext),
dc877563 517 0, /* n_preallocs */
00e74b69 518 (GInstanceInitFunc) traceset_context_instance_init, /* instance_init */
519 NULL /* Value handling */
dc877563 520 };
521
ffd54a90 522 type = g_type_register_static (G_TYPE_OBJECT, "LttvTracesetContextType",
dc877563 523 &info, 0);
524 }
525 return type;
526}
527
528
529static void
530trace_context_instance_init (GTypeInstance *instance, gpointer g_class)
531{
532 /* Be careful of anything which would not work well with shallow copies */
533}
534
535
536static void
537trace_context_finalize (LttvTraceContext *self)
538{
b445142a 539 G_OBJECT_CLASS(g_type_class_peek(g_type_parent(LTTV_TRACE_CONTEXT_TYPE)))->
540 finalize(G_OBJECT(self));
dc877563 541}
542
543
544static void
545trace_context_class_init (LttvTraceContextClass *klass)
546{
547 GObjectClass *gobject_class = G_OBJECT_CLASS(klass);
548
ffd54a90 549 gobject_class->finalize = (void (*)(GObject *self)) trace_context_finalize;
dc877563 550}
551
552
553GType
ffd54a90 554lttv_trace_context_get_type(void)
dc877563 555{
556 static GType type = 0;
557 if (type == 0) {
558 static const GTypeInfo info = {
ffd54a90 559 sizeof (LttvTraceContextClass),
dc877563 560 NULL, /* base_init */
561 NULL, /* base_finalize */
ffd54a90 562 (GClassInitFunc) trace_context_class_init, /* class_init */
dc877563 563 NULL, /* class_finalize */
564 NULL, /* class_data */
c6bc9cb9 565 sizeof (LttvTraceContext),
dc877563 566 0, /* n_preallocs */
00e74b69 567 (GInstanceInitFunc) trace_context_instance_init, /* instance_init */
568 NULL /* Value handling */
dc877563 569 };
570
ffd54a90 571 type = g_type_register_static (G_TYPE_OBJECT, "LttvTraceContextType",
dc877563 572 &info, 0);
573 }
574 return type;
575}
576
577
578static void
579tracefile_context_instance_init (GTypeInstance *instance, gpointer g_class)
580{
581 /* Be careful of anything which would not work well with shallow copies */
582}
583
584
585static void
586tracefile_context_finalize (LttvTracefileContext *self)
587{
b445142a 588 G_OBJECT_CLASS(g_type_class_peek(g_type_parent(LTTV_TRACEFILE_CONTEXT_TYPE)))
589 ->finalize(G_OBJECT(self));
dc877563 590}
591
592
593static void
594tracefile_context_class_init (LttvTracefileContextClass *klass)
595{
596 GObjectClass *gobject_class = G_OBJECT_CLASS(klass);
597
ffd54a90 598 gobject_class->finalize = (void (*)(GObject *self))tracefile_context_finalize;
599}
600
601
602GType
603lttv_tracefile_context_get_type(void)
604{
605 static GType type = 0;
606 if (type == 0) {
607 static const GTypeInfo info = {
608 sizeof (LttvTracefileContextClass),
609 NULL, /* base_init */
610 NULL, /* base_finalize */
611 (GClassInitFunc) tracefile_context_class_init, /* class_init */
612 NULL, /* class_finalize */
613 NULL, /* class_data */
614 sizeof (LttvTracefileContext),
615 0, /* n_preallocs */
00e74b69 616 (GInstanceInitFunc) tracefile_context_instance_init, /* instance_init */
617 NULL /* Value handling */
ffd54a90 618 };
619
620 type = g_type_register_static (G_TYPE_OBJECT, "LttvTracefileContextType",
621 &info, 0);
622 }
623 return type;
dc877563 624}
625
626
dc877563 627
6843100a 628static gboolean get_first(gpointer key, gpointer value, gpointer user_data) {
77199e93 629 g_assert(key == value);
dc877563 630 *((LttvTracefileContext **)user_data) = (LttvTracefileContext *)value;
631 return TRUE;
632}
633
e7f5e89d 634#ifdef DEBUG
635// Test to see if pqueue is traversed in the right order.
636static LttTime test_time;
637
698e81c2 638static gboolean test_tree(gpointer key, gpointer value, gpointer user_data) {
639
77199e93 640 LttvTracefileContext *tfc = (LttvTracefileContext *)key;
641
642 g_debug("Tracefile name %s, time %lu.%lu, tfi %u, ti %u",
643 g_quark_to_string(ltt_tracefile_name(tfc->tf)),
644 tfc->timestamp.tv_sec, tfc->timestamp.tv_nsec,
645 tfc->index, tfc->t_context->index);
e7f5e89d 646
647 if(user_data != NULL) {
648 if(((LttvTracefileContext *)user_data) == (LttvTracefileContext *)value) {
649 g_assert(compare_tracefile(user_data, value) == 0);
650 } else
651 g_assert(compare_tracefile(user_data, value) != 0);
652 }
653 g_assert(ltt_time_compare(test_time, tfc->timestamp) <= 0);
654 test_time.tv_sec = tfc->timestamp.tv_sec;
655 test_time.tv_nsec = tfc->timestamp.tv_nsec;
77199e93 656
77199e93 657
658 //g_assert(((LttvTracefileContext *)user_data) != (LttvTracefileContext *)value);
698e81c2 659 return FALSE;
660}
e7f5e89d 661#endif //DEBUG
698e81c2 662
663
dc877563 664
8697a616 665void lttv_process_traceset_begin(LttvTracesetContext *self,
666 LttvHooks *before_traceset,
667 LttvHooks *before_trace,
668 LttvHooks *before_tracefile,
669 LttvHooks *event,
670 LttvHooksById *event_by_id)
671{
dc877563 672
8697a616 673 /* simply add hooks in context. _before hooks are called by add_hooks. */
674 /* It calls all before_traceset, before_trace, and before_tracefile hooks. */
675 lttv_traceset_context_add_hooks(self,
676 before_traceset,
677 before_trace,
678 before_tracefile,
679 event,
680 event_by_id);
681
2a2fa4f0 682}
683
bd4c3eca 684//enum read_state { LAST_NONE, LAST_OK, LAST_EMPTY };
36d36c9f 685
8697a616 686/* Note : a _middle must be preceded from a _seek or another middle */
687guint lttv_process_traceset_middle(LttvTracesetContext *self,
688 LttTime end,
cc038f06 689 gulong nb_events,
8697a616 690 const LttvTracesetContextPosition *end_position)
2a2fa4f0 691{
692 GTree *pqueue = self->pqueue;
693
2a2fa4f0 694 LttvTracefileContext *tfc;
695
eed2ef37 696 LttEvent *e;
697
2a2fa4f0 698 unsigned count = 0;
699
36d36c9f 700 guint read_ret;
701
bd4c3eca 702 //enum read_state last_read_state = LAST_NONE;
698e81c2 703
78b82ded 704 gint last_ret = 0; /* return value of the last hook list called */
a54f091a 705
dc877563 706 /* Get the next event from the pqueue, call its hooks,
707 reinsert in the pqueue the following event from the same tracefile
708 unless the tracefile is finished or the event is later than the
8697a616 709 end time. */
dc877563 710
ffd54a90 711 while(TRUE) {
dc877563 712 tfc = NULL;
713 g_tree_foreach(pqueue, get_first, &tfc);
33f7a12c 714 /* End of traceset : tfc is NULL */
1d1df11d 715 if(unlikely(tfc == NULL))
a43d67ba 716 {
a43d67ba 717 return count;
718 }
dc877563 719
8697a616 720 /* Have we reached :
721 * - the maximum number of events specified?
722 * - the end position ?
723 * - the end time ?
724 * then the read is finished. We leave the queue in the same state and
725 * break the loop.
726 */
727
1d1df11d 728 if(unlikely(last_ret == TRUE ||
d052ffc3 729 ((count >= nb_events) && (nb_events != G_MAXULONG)) ||
8b0bbe19 730 (end_position!=NULL&&lttv_traceset_context_ctx_pos_compare(self,
731 end_position) == 0)||
1d1df11d 732 ltt_time_compare(end, tfc->timestamp) <= 0))
a43d67ba 733 {
a43d67ba 734 return count;
735 }
36d36c9f 736
308711e5 737 /* Get the tracefile with an event for the smallest time found. If two
738 or more tracefiles have events for the same time, hope that lookup
739 and remove are consistent. */
1986f254 740
741#ifdef DEBUG
e7f5e89d 742 test_time.tv_sec = 0;
743 test_time.tv_nsec = 0;
77199e93 744 g_debug("test tree before remove");
745 g_tree_foreach(pqueue, test_tree, tfc);
1986f254 746#endif //DEBUG
f95bc830 747 g_tree_remove(pqueue, tfc);
698e81c2 748
1986f254 749#ifdef DEBUG
e7f5e89d 750 test_time.tv_sec = 0;
751 test_time.tv_nsec = 0;
77199e93 752 g_debug("test tree after remove");
698e81c2 753 g_tree_foreach(pqueue, test_tree, tfc);
1986f254 754#endif //DEBUG
77199e93 755
bd4c3eca 756
eed2ef37 757 e = ltt_tracefile_get_event(tfc->tf);
dc877563 758
bd4c3eca 759 //if(last_read_state != LAST_EMPTY) {
760 /* Only call hooks if the last read has given an event or if we are at the
761 * first pass (not if last read returned end of tracefile) */
762 count++;
763
e38d9ea0 764 tfc->target_pid = -1; /* unset target PID */
1fae3dd3 765 /* Hooks :
766 * return values : 0 : continue read, 1 : go to next position and stop read,
767 * 2 : stay at the current position and stop read */
bd4c3eca 768 last_ret = lttv_hooks_call_merge(tfc->event, tfc,
f57fd845 769 lttv_hooks_by_id_get(tfc->event_by_id, e->event_id), tfc);
1fae3dd3 770
aaecaa99 771#if 0
772 /* This is buggy : it won't work well with state computation */
876b4889 773 if(unlikely(last_ret == 2)) {
1fae3dd3 774 /* This is a case where we want to stay at this position and stop read. */
775 g_tree_insert(pqueue, tfc, tfc);
776 return count - 1;
777 }
aaecaa99 778#endif //0
698e81c2 779 read_ret = ltt_tracefile_read(tfc->tf);
1fae3dd3 780
781
698e81c2 782 if(likely(!read_ret)) {
3054461a 783 //g_debug("An event is ready");
eed2ef37 784 tfc->timestamp = ltt_event_time(e);
e7f5e89d 785 g_assert(ltt_time_compare(tfc->timestamp, ltt_time_infinite) != 0);
33f7a12c 786 g_tree_insert(pqueue, tfc, tfc);
e7f5e89d 787#ifdef DEBUG
788 test_time.tv_sec = 0;
789 test_time.tv_nsec = 0;
790 g_debug("test tree after event ready");
791 g_tree_foreach(pqueue, test_tree, NULL);
792#endif //DEBUG
793
bd4c3eca 794 //last_read_state = LAST_OK;
698e81c2 795 } else {
1986f254 796 tfc->timestamp = ltt_time_infinite;
797
36d36c9f 798 if(read_ret == ERANGE) {
bd4c3eca 799 // last_read_state = LAST_EMPTY;
698e81c2 800 g_debug("End of trace");
36d36c9f 801 } else
698e81c2 802 g_error("Error happened in lttv_process_traceset_middle");
dc877563 803 }
804 }
2a2fa4f0 805}
806
807
8697a616 808void lttv_process_traceset_end(LttvTracesetContext *self,
809 LttvHooks *after_traceset,
810 LttvHooks *after_trace,
811 LttvHooks *after_tracefile,
812 LttvHooks *event,
813 LttvHooksById *event_by_id)
2a2fa4f0 814{
8697a616 815 /* Remove hooks from context. _after hooks are called by remove_hooks. */
816 /* It calls all after_traceset, after_trace, and after_tracefile hooks. */
817 lttv_traceset_context_remove_hooks(self,
818 after_traceset,
819 after_trace,
820 after_tracefile,
821 event,
822 event_by_id);
823}
2a2fa4f0 824
27304273 825/* Subtile modification :
826 * if tracefile has no event at or after the time requested, it is not put in
348c6ba8 827 * the queue, as the next read would fail.
828 *
829 * Don't forget to empty the traceset pqueue before calling this.
830 */
8697a616 831void lttv_process_trace_seek_time(LttvTraceContext *self, LttTime start)
832{
833 guint i, nb_tracefile;
2a2fa4f0 834
eed2ef37 835 gint ret;
836
1986f254 837 LttvTracefileContext **tfc;
2a2fa4f0 838
eed2ef37 839 nb_tracefile = self->tracefiles->len;
dc877563 840
e7f5e89d 841 GTree *pqueue = self->ts_context->pqueue;
842
8697a616 843 for(i = 0 ; i < nb_tracefile ; i++) {
1986f254 844 tfc = &g_array_index(self->tracefiles, LttvTracefileContext*, i);
77199e93 845
d448fce2 846 g_tree_remove(pqueue, *tfc);
77199e93 847
1986f254 848 ret = ltt_tracefile_seek_time((*tfc)->tf, start);
27304273 849 if(ret == EPERM) g_error("error in lttv_process_trace_seek_time seek");
27304273 850
851 if(ret == 0) { /* not ERANGE especially */
1986f254 852 (*tfc)->timestamp = ltt_event_time(ltt_tracefile_get_event((*tfc)->tf));
e7f5e89d 853 g_assert(ltt_time_compare((*tfc)->timestamp, ltt_time_infinite) != 0);
1986f254 854 g_tree_insert(pqueue, (*tfc), (*tfc));
855 } else {
856 (*tfc)->timestamp = ltt_time_infinite;
27304273 857 }
8697a616 858 }
e7f5e89d 859#ifdef DEBUG
860 test_time.tv_sec = 0;
861 test_time.tv_nsec = 0;
862 g_debug("test tree after seek_time");
863 g_tree_foreach(pqueue, test_tree, NULL);
864#endif //DEBUG
8697a616 865}
dc877563 866
2a2fa4f0 867
8697a616 868void lttv_process_traceset_seek_time(LttvTracesetContext *self, LttTime start)
869{
870 guint i, nb_trace;
2a2fa4f0 871
8697a616 872 LttvTraceContext *tc;
2a2fa4f0 873
d448fce2 874 //g_tree_destroy(self->pqueue);
875 //self->pqueue = g_tree_new(compare_tracefile);
348c6ba8 876
8697a616 877 nb_trace = lttv_traceset_number(self->ts);
878 for(i = 0 ; i < nb_trace ; i++) {
879 tc = self->traces[i];
880 lttv_process_trace_seek_time(tc, start);
881 }
dc877563 882}
b445142a 883
308711e5 884
8697a616 885gboolean lttv_process_traceset_seek_position(LttvTracesetContext *self,
886 const LttvTracesetContextPosition *pos)
308711e5 887{
27304273 888 guint i;
d448fce2 889 /* If a position is set, seek the traceset to this position */
18c87975 890 if(ltt_time_compare(pos->timestamp, ltt_time_infinite) != 0) {
d448fce2 891
892 /* Test to see if the traces has been added to the trace set :
893 * It should NEVER happen. Clear all positions if a new trace comes in. */
894 /* FIXME I know this test is not optimal : should keep a number of
895 * tracefiles variable in the traceset.. eventually */
896 guint num_traces = lttv_traceset_number(self->ts);
897 guint tf_count = 0;
898 for(i=0; i<num_traces;i++) {
899 GArray * tracefiles = self->traces[i]->tracefiles;
900 guint j;
901 guint num_tracefiles = tracefiles->len;
902 for(j=0;j<num_tracefiles;j++)
903 tf_count++;
904 }
905 g_assert(tf_count == pos->tfcp->len);
906
907
908 //g_tree_destroy(self->pqueue);
909 //self->pqueue = g_tree_new(compare_tracefile);
18c87975 910
9ba3aaaf 911 for(i=0;i<pos->tfcp->len; i++) {
912 LttvTracefileContextPosition *tfcp =
913 &g_array_index(pos->tfcp, LttvTracefileContextPosition, i);
d448fce2 914
915 g_tree_remove(self->pqueue, tfcp->tfc);
9ba3aaaf 916
917 if(tfcp->used == TRUE) {
918 if(ltt_tracefile_seek_position(tfcp->tfc->tf, tfcp->event) != 0)
18c87975 919 return 1;
9ba3aaaf 920 tfcp->tfc->timestamp =
921 ltt_event_time(ltt_tracefile_get_event(tfcp->tfc->tf));
922 g_assert(ltt_time_compare(tfcp->tfc->timestamp,
923 ltt_time_infinite) != 0);
924 g_tree_insert(self->pqueue, tfcp->tfc, tfcp->tfc);
925
18c87975 926 } else {
9ba3aaaf 927 tfcp->tfc->timestamp = ltt_time_infinite;
18c87975 928 }
1986f254 929 }
308711e5 930 }
e7f5e89d 931#ifdef DEBUG
932 test_time.tv_sec = 0;
933 test_time.tv_nsec = 0;
934 g_debug("test tree after seek_position");
935 g_tree_foreach(self->pqueue, test_tree, NULL);
936#endif //DEBUG
937
938
939
2c82c4dc 940 return 0;
308711e5 941}
942
943
f57fd845 944#if 0 // pmf: temporary disable
b445142a 945static LttField *
eed2ef37 946find_field(LttEventType *et, const GQuark field)
b445142a 947{
f63ebe51 948 LttField *f;
b445142a 949
eed2ef37 950 if(field == 0) return NULL;
951
f63ebe51 952 f = ltt_eventtype_field_by_name(et, field);
953 if (!f) {
954 g_warning("Cannot find field %s in event %s.%s", g_quark_to_string(field),
955 g_quark_to_string(ltt_facility_name(ltt_eventtype_facility(et))),
956 g_quark_to_string(ltt_eventtype_name(et)));
957 }
958
959 return f;
b445142a 960}
f57fd845 961#endif
b445142a 962
f57fd845 963struct marker_info *lttv_trace_hook_get_marker(LttTrace *t, LttvTraceHook *th)
eed2ef37 964{
f57fd845 965 return marker_get_info_from_id(t, th->id);
eed2ef37 966}
967
60c5092c 968int lttv_trace_find_hook(LttTrace *t, GQuark facility_name, GQuark event_name,
6418800d 969 GQuark fields[], LttvHook h, gpointer hook_data, GArray **trace_hooks)
b445142a 970{
3c165eaf 971 struct marker_info *info;
937a4442 972 guint16 marker_id;
6418800d 973 int init_array_size;
60c5092c 974 GQuark marker_name;
975
976 marker_name = lttv_merge_facility_event_name(facility_name, event_name);
eed2ef37 977
937a4442 978 info = marker_get_info_from_name(t, marker_name);
979 if(unlikely(info == NULL)) {
e594b7fd 980 g_warning("No marker of name %s found", g_quark_to_string(marker_name));
981 return 1;
937a4442 982 }
b445142a 983
6418800d 984 init_array_size = (*trace_hooks)->len;
eed2ef37 985
937a4442 986 /* for each marker with the requested name */
987 do {
988 LttvTraceHook tmpth;
989 int found;
4173fa0e 990 GQuark *f;
e594b7fd 991 struct marker_field *marker_field;
937a4442 992
993 marker_id = marker_get_id_from_info(t, info);
994
995 tmpth.h = h;
996 tmpth.id = marker_id;
997 tmpth.hook_data = hook_data;
998 tmpth.fields = g_ptr_array_new();
999
1000 /* for each field requested */
032ba5da 1001 for(f = fields; f && *f != 0; f++) {
6418800d 1002 found = 0;
1003 for_each_marker_field(marker_field, info) {
e594b7fd 1004 if(marker_field->name == *f) {
937a4442 1005 found = 1;
6418800d 1006 g_ptr_array_add(tmpth.fields, marker_field);
937a4442 1007 break;
1008 }
1009 }
1010 if(!found) {
1011 /* Did not find the one of the fields in this instance of the
6418800d 1012 marker. Print a warning and skip this marker completely.
1013 Still iterate on other markers with same name. */
937a4442 1014 g_ptr_array_free(tmpth.fields, TRUE);
6418800d 1015 g_warning("Field %s cannot be found in marker %s",
1016 g_quark_to_string(*f), g_quark_to_string(marker_name));
1017 goto skip_marker;
937a4442 1018 }
1019 }
937a4442 1020 /* all fields were found: add the tracehook to the array */
6418800d 1021 *trace_hooks = g_array_append_val(*trace_hooks, tmpth);
1022skip_marker:
937a4442 1023 info = info->next;
1024 } while(info != NULL);
1025
6418800d 1026 /* Error if no new trace hook has been added */
6a62e071 1027 if (init_array_size == (*trace_hooks)->len) {
1028 g_warning("No marker of name %s has all requested fields",
1029 g_quark_to_string(marker_name));
1030 return 1;
1031 }
1032 return 0;
eed2ef37 1033}
1034
032ba5da 1035void lttv_trace_hook_remove_all(GArray **th)
eed2ef37 1036{
937a4442 1037 int i;
e594b7fd 1038 for(i=0; i<(*th)->len; i++) {
1039 g_ptr_array_free(g_array_index(*th, LttvTraceHook, i).fields, TRUE);
937a4442 1040 }
4e5a6126 1041 if((*th)->len)
1042 *th = g_array_remove_range(*th, 0, (*th)->len);
b445142a 1043}
1044
9ba3aaaf 1045LttvTracesetContextPosition *lttv_traceset_context_position_new(
1046 const LttvTracesetContext *self)
5e2c04a2 1047{
9ba3aaaf 1048 guint num_traces = lttv_traceset_number(self->ts);
1049 guint tf_count = 0;
1050 guint i;
1051
1052 for(i=0; i<num_traces;i++) {
1053 GArray * tracefiles = self->traces[i]->tracefiles;
1054 guint j;
1055 guint num_tracefiles = tracefiles->len;
1056 for(j=0;j<num_tracefiles;j++)
1057 tf_count++;
1058 }
1059 LttvTracesetContextPosition *pos =
1060 g_new(LttvTracesetContextPosition, 1);
1061 pos->tfcp = g_array_sized_new(FALSE, TRUE,
1062 sizeof(LttvTracefileContextPosition),
1063 tf_count);
1064 g_array_set_size(pos->tfcp, tf_count);
1065 for(i=0;i<pos->tfcp->len;i++) {
1066 LttvTracefileContextPosition *tfcp =
1067 &g_array_index(pos->tfcp, LttvTracefileContextPosition, i);
1068 tfcp->event = ltt_event_position_new();
1069 }
1070
27304273 1071 pos->timestamp = ltt_time_infinite;
1072 return pos;
5e2c04a2 1073}
1074
3054461a 1075/* Save all positions, the ones with infinite time will have NULL
1986f254 1076 * ep. */
9ba3aaaf 1077/* note : a position must be destroyed when a trace is added/removed from a
1078 * traceset */
27304273 1079void lttv_traceset_context_position_save(const LttvTracesetContext *self,
1080 LttvTracesetContextPosition *pos)
1081{
1986f254 1082 guint i;
1083 guint num_traces = lttv_traceset_number(self->ts);
9ba3aaaf 1084 guint tf_count = 0;
728d0c3e 1085
0bd2f89c 1086 pos->timestamp = ltt_time_infinite;
728d0c3e 1087
1986f254 1088 for(i=0; i<num_traces;i++) {
1089 GArray * tracefiles = self->traces[i]->tracefiles;
1090 guint j;
1091 guint num_tracefiles = tracefiles->len;
1092
1093 for(j=0;j<num_tracefiles;j++) {
9ba3aaaf 1094 g_assert(tf_count < pos->tfcp->len);
1986f254 1095 LttvTracefileContext **tfc = &g_array_index(tracefiles,
1096 LttvTracefileContext*, j);
9ba3aaaf 1097 LttvTracefileContextPosition *tfcp =
1098 &g_array_index(pos->tfcp, LttvTracefileContextPosition, tf_count);
1986f254 1099
9ba3aaaf 1100 tfcp->tfc = *tfc;
1986f254 1101
1102 if(ltt_time_compare((*tfc)->timestamp, ltt_time_infinite) != 0) {
9ba3aaaf 1103 LttEvent *event = ltt_tracefile_get_event((*tfc)->tf);
1104 ltt_event_position(event, tfcp->event);
1986f254 1105 if(ltt_time_compare((*tfc)->timestamp, pos->timestamp) < 0)
1106 pos->timestamp = (*tfc)->timestamp;
9ba3aaaf 1107 tfcp->used = TRUE;
1986f254 1108 } else {
9ba3aaaf 1109 tfcp->used = FALSE;
1986f254 1110 }
9ba3aaaf 1111
1112 //g_array_append_val(pos->tfc, *tfc);
1113 //g_array_append_val(pos->ep, ep);
1114 tf_count++;
1986f254 1115 }
1116
1117 }
8697a616 1118}
1119
1120void lttv_traceset_context_position_destroy(LttvTracesetContextPosition *pos)
1121{
27304273 1122 int i;
1986f254 1123
9ba3aaaf 1124 for(i=0;i<pos->tfcp->len;i++) {
1125 LttvTracefileContextPosition *tfcp =
1126 &g_array_index(pos->tfcp, LttvTracefileContextPosition, i);
1127 g_free(tfcp->event);
1128 tfcp->event = NULL;
1129 tfcp->used = FALSE;
1986f254 1130 }
9ba3aaaf 1131 g_array_free(pos->tfcp, TRUE);
27304273 1132 g_free(pos);
8697a616 1133}
1134
5e2c04a2 1135void lttv_traceset_context_position_copy(LttvTracesetContextPosition *dest,
1136 const LttvTracesetContextPosition *src)
1137{
27304273 1138 int i;
9ba3aaaf 1139 LttvTracefileContextPosition *src_tfcp, *dest_tfcp;
5e2c04a2 1140
9ba3aaaf 1141 g_assert(src->tfcp->len == src->tfcp->len);
27304273 1142
9ba3aaaf 1143 for(i=0;i<src->tfcp->len;i++) {
1144 src_tfcp =
1145 &g_array_index(src->tfcp, LttvTracefileContextPosition, i);
1146 dest_tfcp =
1147 &g_array_index(dest->tfcp, LttvTracefileContextPosition, i);
1148
1149 dest_tfcp->used = src_tfcp->used;
1150 dest_tfcp->tfc = src_tfcp->tfc;
1151
1152 if(src_tfcp->used) {
1986f254 1153 ltt_event_position_copy(
9ba3aaaf 1154 dest_tfcp->event,
1155 src_tfcp->event);
1156 }
5e2c04a2 1157 }
5e2c04a2 1158 dest->timestamp = src->timestamp;
1159}
1160
8697a616 1161gint lttv_traceset_context_ctx_pos_compare(const LttvTracesetContext *self,
1162 const LttvTracesetContextPosition *pos)
1163{
27304273 1164 int i;
826f1ab2 1165 int ret = 0;
2c82c4dc 1166
9ba3aaaf 1167 if(pos->tfcp->len == 0) {
2c82c4dc 1168 if(lttv_traceset_number(self->ts) == 0) return 0;
1169 else return 1;
1170 }
1171 if(lttv_traceset_number(self->ts) == 0)
1172 return -1;
1173
9ba3aaaf 1174 for(i=0;i<pos->tfcp->len;i++) {
1175 LttvTracefileContextPosition *tfcp =
1176 &g_array_index(pos->tfcp, LttvTracefileContextPosition, i);
1986f254 1177
9ba3aaaf 1178 if(tfcp->used == FALSE) {
1179 if(ltt_time_compare(tfcp->tfc->timestamp, ltt_time_infinite) < 0) {
1986f254 1180 ret = -1;
1181 }
1182 } else {
9ba3aaaf 1183 if(ltt_time_compare(tfcp->tfc->timestamp, ltt_time_infinite) == 0) {
1986f254 1184 ret = 1;
1185 } else {
9ba3aaaf 1186 LttEvent *event = ltt_tracefile_get_event(tfcp->tfc->tf);
8697a616 1187
1986f254 1188 ret = ltt_event_position_compare((LttEventPosition*)event,
9ba3aaaf 1189 tfcp->event);
1986f254 1190 }
1191 }
27304273 1192 if(ret != 0) return ret;
8697a616 1193
8697a616 1194 }
1195 return 0;
1196}
1197
1198
1199gint lttv_traceset_context_pos_pos_compare(
1200 const LttvTracesetContextPosition *pos1,
1201 const LttvTracesetContextPosition *pos2)
1202{
27304273 1203 int i, j;
b4aeb12d 1204 int ret = 0;
8697a616 1205
565f2491 1206 if(ltt_time_compare(pos1->timestamp, ltt_time_infinite) == 0) {
1207 if(ltt_time_compare(pos2->timestamp, ltt_time_infinite) == 0)
1208 return 0;
1209 else
1210 return 1;
2c82c4dc 1211 }
565f2491 1212 if(ltt_time_compare(pos2->timestamp, ltt_time_infinite) == 0)
2c82c4dc 1213 return -1;
1214
9ba3aaaf 1215 for(i=0;i<pos1->tfcp->len;i++) {
1216 LttvTracefileContextPosition *tfcp1 =
1217 &g_array_index(pos1->tfcp, LttvTracefileContextPosition, i);
27304273 1218
9ba3aaaf 1219 if(tfcp1->used == TRUE) {
1220 for(j=0;j<pos2->tfcp->len;j++) {
1221 LttvTracefileContextPosition *tfcp2 =
1222 &g_array_index(pos2->tfcp, LttvTracefileContextPosition, j);
1223
1224 if(tfcp1->tfc == tfcp2->tfc) {
1225 if(tfcp2->used == TRUE)
1226 ret = ltt_event_position_compare(tfcp1->event, tfcp2->event);
1986f254 1227 else
1228 ret = -1;
1229
1230 if(ret != 0) return ret;
1231 }
1232 }
9ba3aaaf 1233
1986f254 1234 } else {
9ba3aaaf 1235 for(j=0;j<pos2->tfcp->len;j++) {
1236 LttvTracefileContextPosition *tfcp2 =
1237 &g_array_index(pos2->tfcp, LttvTracefileContextPosition, j);
1238
1239 if(tfcp1->tfc == tfcp2->tfc)
1240 if(tfcp2->used == TRUE) ret = 1;
1241 if(ret != 0) return ret;
27304273 1242 }
8697a616 1243 }
1244 }
1245 return 0;
1246}
1247
1248
2d262115 1249LttTime lttv_traceset_context_position_get_time(
1250 const LttvTracesetContextPosition *pos)
1251{
1252 return pos->timestamp;
1253}
1254
1255
1256LttvTracefileContext *lttv_traceset_context_get_current_tfc(LttvTracesetContext *self)
1257{
1258 GTree *pqueue = self->pqueue;
b56b5fec 1259 LttvTracefileContext *tfc = NULL;
2d262115 1260
1261 g_tree_foreach(pqueue, get_first, &tfc);
1262
1263 return tfc;
1264}
18c87975 1265
2c82c4dc 1266/* lttv_process_traceset_synchronize_tracefiles
1267 *
1268 * Use the sync_position field of the trace set context to synchronize each
1269 * tracefile with the previously saved position.
1270 *
1271 * If no previous position has been saved, it simply does nothing.
1272 */
1273void lttv_process_traceset_synchronize_tracefiles(LttvTracesetContext *tsc)
1274{
1275 g_assert(lttv_process_traceset_seek_position(tsc, tsc->sync_position) == 0);
1276}
1277
1278
1279
1280
1281void lttv_process_traceset_get_sync_data(LttvTracesetContext *tsc)
1282{
1283 lttv_traceset_context_position_save(tsc, tsc->sync_position);
1284}
1285
0bd2f89c 1286struct seek_back_data {
1287 guint first_event; /* Index of the first event in the array : we will always
1288 overwrite at this position : this is a circular array.
1289 */
1290 guint events_found;
33e44b82 1291 guint n; /* number of events requested */
0bd2f89c 1292 GPtrArray *array; /* array of LttvTracesetContextPositions pointers */
b139ad2a 1293 LttvFilter *filter1;
1294 LttvFilter *filter2;
1295 LttvFilter *filter3;
fb3d6047 1296 gpointer data;
04f2543e 1297 check_handler *check;
1298 gboolean *stop_flag;
1299 guint raw_event_count;
0bd2f89c 1300};
1301
1302static gint seek_back_event_hook(void *hook_data, void* call_data)
1303{
1304 struct seek_back_data *sd = (struct seek_back_data*)hook_data;
1305 LttvTracefileContext *tfc = (LttvTracefileContext*)call_data;
1306 LttvTracesetContext *tsc = tfc->t_context->ts_context;
1307 LttvTracesetContextPosition *pos;
33e44b82 1308
fb3d6047 1309 if(sd->check && sd->check(sd->raw_event_count, sd->stop_flag, sd->data))
1310 return TRUE;
04f2543e 1311 sd->raw_event_count++;
1312
b139ad2a 1313 if(sd->filter1 != NULL && sd->filter1->head != NULL &&
1314 !lttv_filter_tree_parse(sd->filter1->head,
33e44b82 1315 ltt_tracefile_get_event(tfc->tf),
1316 tfc->tf,
1317 tfc->t_context->t,
b6ef18af 1318 tfc,NULL,NULL)) {
b139ad2a 1319 return FALSE;
0bd2f89c 1320 }
b139ad2a 1321 if(sd->filter2 != NULL && sd->filter2->head != NULL &&
1322 !lttv_filter_tree_parse(sd->filter2->head,
1323 ltt_tracefile_get_event(tfc->tf),
1324 tfc->tf,
1325 tfc->t_context->t,
b6ef18af 1326 tfc,NULL,NULL)) {
b139ad2a 1327 return FALSE;
1328 }
1329 if(sd->filter3 != NULL && sd->filter3->head != NULL &&
1330 !lttv_filter_tree_parse(sd->filter3->head,
1331 ltt_tracefile_get_event(tfc->tf),
1332 tfc->tf,
1333 tfc->t_context->t,
b6ef18af 1334 tfc,NULL,NULL)) {
b139ad2a 1335 return FALSE;
1336 }
1337
33e44b82 1338 pos = (LttvTracesetContextPosition*)g_ptr_array_index (sd->array,
1339 sd->first_event);
0bd2f89c 1340
1341 lttv_traceset_context_position_save(tsc, pos);
1342
1343 if(sd->first_event >= sd->array->len - 1) sd->first_event = 0;
1344 else sd->first_event++;
1345
33e44b82 1346 sd->events_found = min(sd->n, sd->events_found + 1);
0bd2f89c 1347
1348 return FALSE;
1349}
1350
0bd2f89c 1351/* Seek back n events back from the current position.
1352 *
1353 * Parameters :
1354 * @self The trace set context
1355 * @n number of events to jump over
9ba3aaaf 1356 * @first_offset The initial offset value used.
33e44b82 1357 * never put first_offset at ltt_time_zero.
1358 * @time_seeker Function pointer of the function to use to seek time :
1359 * either lttv_process_traceset_seek_time
1360 * or lttv_state_traceset_seek_time_closest
1361 * @filter The filter to call.
0bd2f89c 1362 *
1363 * Return value : the number of events found (might be lower than the number
1364 * requested if beginning of traceset is reached).
1365 *
1366 * The first search will go back first_offset and try to find the last n events
1367 * matching the filter. If there are not enough, it will try to go back from the
1368 * new trace point from first_offset*2, and so on, until beginning of trace or n
1369 * events are found.
1370 *
1371 * Note : this function does not take in account the LttvFilter : use the
1372 * similar function found in state.c instead.
1373 *
1374 * Note2 : the caller must make sure that the LttvTracesetContext does not
1375 * contain any hook, as process_traceset_middle is used in this routine.
1376 */
1377guint lttv_process_traceset_seek_n_backward(LttvTracesetContext *self,
33e44b82 1378 guint n, LttTime first_offset,
1379 seek_time_fct time_seeker,
04f2543e 1380 check_handler *check,
b139ad2a 1381 gboolean *stop_flag,
1382 LttvFilter *filter1,
1383 LttvFilter *filter2,
fb3d6047 1384 LttvFilter *filter3,
1385 gpointer data)
0bd2f89c 1386{
33e44b82 1387 if(lttv_traceset_number(self->ts) == 0) return 0;
1388 g_assert(ltt_time_compare(first_offset, ltt_time_zero) != 0);
1389
0bd2f89c 1390 guint i;
1391 LttvTracesetContextPosition *next_iter_end_pos =
9ba3aaaf 1392 lttv_traceset_context_position_new(self);
1393 LttvTracesetContextPosition *end_pos =
1394 lttv_traceset_context_position_new(self);
1395 LttvTracesetContextPosition *saved_pos =
1396 lttv_traceset_context_position_new(self);
0bd2f89c 1397 LttTime time;
9d227699 1398 LttTime asked_time;
0bd2f89c 1399 LttTime time_offset;
1400 struct seek_back_data sd;
1401 LttvHooks *hooks = lttv_hooks_new();
1402
1403 sd.first_event = 0;
1404 sd.events_found = 0;
1405 sd.array = g_ptr_array_sized_new(n);
b139ad2a 1406 sd.filter1 = filter1;
1407 sd.filter2 = filter2;
1408 sd.filter3 = filter3;
fb3d6047 1409 sd.data = data;
33e44b82 1410 sd.n = n;
04f2543e 1411 sd.check = check;
1412 sd.stop_flag = stop_flag;
1413 sd.raw_event_count = 0;
0bd2f89c 1414 g_ptr_array_set_size(sd.array, n);
1415 for(i=0;i<n;i++) {
9ba3aaaf 1416 g_ptr_array_index (sd.array, i) = lttv_traceset_context_position_new(self);
0bd2f89c 1417 }
33e44b82 1418
0bd2f89c 1419 lttv_traceset_context_position_save(self, next_iter_end_pos);
33e44b82 1420 lttv_traceset_context_position_save(self, saved_pos);
0bd2f89c 1421 /* Get the current time from which we will offset */
1422 time = lttv_traceset_context_position_get_time(next_iter_end_pos);
1423 /* the position saved might be end of traceset... */
1424 if(ltt_time_compare(time, self->time_span.end_time) > 0) {
1425 time = self->time_span.end_time;
1426 }
9d227699 1427 asked_time = time;
0bd2f89c 1428 time_offset = first_offset;
1429
1430 lttv_hooks_add(hooks, seek_back_event_hook, &sd, LTTV_PRIO_DEFAULT);
1431
1432 lttv_process_traceset_begin(self, NULL, NULL, NULL, hooks, NULL);
1433
1434 while(1) {
1435 /* stop criteria : - n events found
9d227699 1436 * - asked_time < beginning of trace */
1437 if(ltt_time_compare(asked_time, self->time_span.start_time) < 0) break;
0bd2f89c 1438
1439 lttv_traceset_context_position_copy(end_pos, next_iter_end_pos);
1440
1441 /* We must seek the traceset back to time - time_offset */
1442 /* this time becomes the new reference time */
1443 time = ltt_time_sub(time, time_offset);
9d227699 1444 asked_time = time;
0bd2f89c 1445
33e44b82 1446 time_seeker(self, time);
0bd2f89c 1447 lttv_traceset_context_position_save(self, next_iter_end_pos);
33e44b82 1448 /* Resync the time in case of a seek_closest */
1449 time = lttv_traceset_context_position_get_time(next_iter_end_pos);
1450 if(ltt_time_compare(time, self->time_span.end_time) > 0) {
1451 time = self->time_span.end_time;
1452 }
0bd2f89c 1453
1454 /* Process the traceset, calling a hook which adds events
1455 * to the array, overwriting the tail. It changes first_event and
1456 * events_found too. */
1457 /* We would like to have a clean context here : no other hook than our's */
1458
1459 lttv_process_traceset_middle(self, ltt_time_infinite,
1460 G_MAXUINT, end_pos);
1461
33e44b82 1462 if(sd.events_found < n) {
1463 if(sd.first_event > 0) {
1464 /* Save the first position */
1465 LttvTracesetContextPosition *pos =
1466 (LttvTracesetContextPosition*)g_ptr_array_index (sd.array, 0);
1467 lttv_traceset_context_position_copy(saved_pos, pos);
1468 }
1469 g_assert(n-sd.events_found <= sd.array->len);
1470 /* Change array size to n - events_found */
1471 for(i=n-sd.events_found;i<sd.array->len;i++) {
1472 LttvTracesetContextPosition *pos =
1473 (LttvTracesetContextPosition*)g_ptr_array_index (sd.array, i);
1474 lttv_traceset_context_position_destroy(pos);
1475 }
1476 g_ptr_array_set_size(sd.array, n-sd.events_found);
1477 sd.first_event = 0;
1478
1479 } else break; /* Second end criterion : n events found */
1480
0bd2f89c 1481 time_offset = ltt_time_mul(time_offset, BACKWARD_SEEK_MUL);
1482 }
1483
1484 lttv_traceset_context_position_destroy(end_pos);
1485 lttv_traceset_context_position_destroy(next_iter_end_pos);
1486
1487 lttv_process_traceset_end(self, NULL, NULL, NULL, hooks, NULL);
1488
33e44b82 1489 if(sd.events_found >= n) {
0bd2f89c 1490 /* Seek the traceset to the first event in the circular array */
1491 LttvTracesetContextPosition *pos =
1492 (LttvTracesetContextPosition*)g_ptr_array_index (sd.array,
1493 sd.first_event);
1494 g_assert(lttv_process_traceset_seek_position(self, pos) == 0);
33e44b82 1495 } else {
1496 /* Will seek to the last saved position : in the worst case, it will be the
1497 * original position (if events_found is 0) */
1498 g_assert(lttv_process_traceset_seek_position(self, saved_pos) == 0);
0bd2f89c 1499 }
1500
33e44b82 1501 for(i=0;i<sd.array->len;i++) {
0bd2f89c 1502 LttvTracesetContextPosition *pos =
1503 (LttvTracesetContextPosition*)g_ptr_array_index (sd.array, i);
1504 lttv_traceset_context_position_destroy(pos);
1505 }
1506 g_ptr_array_free(sd.array, TRUE);
1507
1508 lttv_hooks_destroy(hooks);
1509
33e44b82 1510 lttv_traceset_context_position_destroy(saved_pos);
1511
0bd2f89c 1512 return sd.events_found;
1513}
1514
1515
1516struct seek_forward_data {
1517 guint event_count; /* event counter */
1518 guint n; /* requested number of events to jump over */
b139ad2a 1519 LttvFilter *filter1;
1520 LttvFilter *filter2;
1521 LttvFilter *filter3;
fb3d6047 1522 gpointer data;
04f2543e 1523 check_handler *check;
1524 gboolean *stop_flag;
1525 guint raw_event_count; /* event counter */
0bd2f89c 1526};
1527
1528static gint seek_forward_event_hook(void *hook_data, void* call_data)
1529{
1530 struct seek_forward_data *sd = (struct seek_forward_data*)hook_data;
33e44b82 1531 LttvTracefileContext *tfc = (LttvTracefileContext*)call_data;
0bd2f89c 1532
fb3d6047 1533 if(sd->check && sd->check(sd->raw_event_count, sd->stop_flag, sd->data))
1534 return TRUE;
04f2543e 1535 sd->raw_event_count++;
1536
b139ad2a 1537 if(sd->filter1 != NULL && sd->filter1->head != NULL &&
1538 !lttv_filter_tree_parse(sd->filter1->head,
33e44b82 1539 ltt_tracefile_get_event(tfc->tf),
1540 tfc->tf,
1541 tfc->t_context->t,
b6ef18af 1542 tfc,NULL,NULL)) {
b139ad2a 1543 return FALSE;
1fae3dd3 1544 }
b139ad2a 1545 if(sd->filter2 != NULL && sd->filter2->head != NULL &&
1546 !lttv_filter_tree_parse(sd->filter2->head,
1547 ltt_tracefile_get_event(tfc->tf),
1548 tfc->tf,
1549 tfc->t_context->t,
b6ef18af 1550 tfc,NULL,NULL)) {
b139ad2a 1551 return FALSE;
1552 }
1553 if(sd->filter3 != NULL && sd->filter3->head != NULL &&
1554 !lttv_filter_tree_parse(sd->filter3->head,
1555 ltt_tracefile_get_event(tfc->tf),
1556 tfc->tf,
1557 tfc->t_context->t,
b6ef18af 1558 tfc,NULL,NULL)) {
b139ad2a 1559 return FALSE;
1560 }
1561
1562 sd->event_count++;
1563 if(sd->event_count >= sd->n)
1564 return TRUE;
e594b7fd 1565 return FALSE;
0bd2f89c 1566}
1567
aaecaa99 1568/* Seek back n events forward from the current position (1 to n)
1569 * 0 is ok too, but it will actually do nothing.
0bd2f89c 1570 *
1571 * Parameters :
33e44b82 1572 * @self the trace set context
1573 * @n number of events to jump over
1574 * @filter filter to call.
0bd2f89c 1575 *
1576 * returns : the number of events jumped over (may be less than requested if end
1577 * of traceset reached) */
1578guint lttv_process_traceset_seek_n_forward(LttvTracesetContext *self,
b139ad2a 1579 guint n,
04f2543e 1580 check_handler *check,
b139ad2a 1581 gboolean *stop_flag,
1582 LttvFilter *filter1,
1583 LttvFilter *filter2,
fb3d6047 1584 LttvFilter *filter3,
1585 gpointer data)
0bd2f89c 1586{
1587 struct seek_forward_data sd;
1588 sd.event_count = 0;
1589 sd.n = n;
b139ad2a 1590 sd.filter1 = filter1;
1591 sd.filter2 = filter2;
1592 sd.filter3 = filter3;
fb3d6047 1593 sd.data = data;
04f2543e 1594 sd.check = check;
1595 sd.stop_flag = stop_flag;
1596 sd.raw_event_count = 0;
aaecaa99 1597
1598 if(sd.event_count >= sd.n) return sd.event_count;
1599
0bd2f89c 1600 LttvHooks *hooks = lttv_hooks_new();
1601
1602 lttv_hooks_add(hooks, seek_forward_event_hook, &sd, LTTV_PRIO_DEFAULT);
1603
1604 lttv_process_traceset_begin(self, NULL, NULL, NULL, hooks, NULL);
1605
1606 /* it will end on the end of traceset, or the fact that the
aaecaa99 1607 * hook returns TRUE.
0bd2f89c 1608 */
1609 lttv_process_traceset_middle(self, ltt_time_infinite,
1610 G_MAXUINT, NULL);
1611
1612 /* Here, our position is either the end of traceset, or the exact position
aaecaa99 1613 * after n events : leave it like this. This might be placed on an event that
1614 * will be filtered out, we don't care : all we know is that the following
1615 * event filtered in will be the right one. */
0bd2f89c 1616
1617 lttv_process_traceset_end(self, NULL, NULL, NULL, hooks, NULL);
1618
1619 lttv_hooks_destroy(hooks);
1620
1621 return sd.event_count;
1622}
1623
1624
This page took 0.139264 seconds and 4 git commands to generate.