Initial port of the detailed event view
[lttv.git] / lttv / lttv / traceset.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 TRACESET_H
20#define TRACESET_H
21
22#include <lttv/attribute.h>
23#include <lttv/hook.h>
7a4bdb54 24#include <lttv/event.h>
dc877563 25#include <ltt/ltt.h>
9aaa78dc 26#include <ltt/time.h>
7a4bdb54 27#include <lttv/trace.h>
dc877563 28/* A traceset is a set of traces to be analyzed together. */
29
ba576a78 30typedef struct _LttvTraceset LttvTraceset;
dc877563 31
7a4bdb54 32typedef struct _LttvTracesetPosition LttvTracesetPosition;
dc877563 33
922581a4
YB
34struct bt_context;
35
7a4bdb54
YB
36
37//TODO ybrosseau 2012-05-15 put these struct in the .c to make them opaque
38struct _LttvTraceset {
39 char * filename;
40 GPtrArray *traces; /* Array of pointers to LttvTrace */
41 struct bt_context *context;
42 LttvAttribute *a;
43 LttvHooks *event_hooks;
44 struct bt_ctf_iter *iter;
115c78c2 45 GPtrArray *state_trace_handle_index;
7a4bdb54
YB
46};
47
48struct _LttvTrace {
49 // Trace id for babeltrace
50 LttvTraceset *traceset; /* container traceset */
51 gint id;
52 LttvAttribute *a;
53 guint ref_count;
54 LttvTraceState *state;
55};
56
57/* In babeltrace, the position concept is an iterator. */
58struct _LttvTracesetPosition {
59 struct bt_ctf_iter *iter;
3d1e7ee5 60 struct bt_iter_pos *bt_pos;
7a4bdb54
YB
61};
62
dc877563 63/* Tracesets may be added to, removed from and their content listed. */
64
7a4bdb54 65LttvTraceset *lttv_traceset_new(void);
dc877563 66
49bf71b5 67char * lttv_traceset_name(LttvTraceset * s);
68
2bc1bcfb 69#ifdef BABEL_CLEANUP
308711e5 70LttvTrace *lttv_trace_new(LttTrace *t);
2bc1bcfb 71#endif
308711e5 72
451aaf27
FD
73void get_absolute_pathname(const gchar *pathname, gchar * abs_pathname);
74
f7afe191 75LttvTraceset *lttv_traceset_copy(LttvTraceset *s_orig);
76
77LttvTraceset *lttv_traceset_load(const gchar *filename);
78
922581a4
YB
79struct bt_context *lttv_traceset_get_context(LttvTraceset *s);
80
81
7a4bdb54 82
f7afe191 83gint lttv_traceset_save(LttvTraceset *s);
84
dc877563 85void lttv_traceset_destroy(LttvTraceset *s);
86
308711e5 87
88void lttv_traceset_add(LttvTraceset *s, LttvTrace *t);
dc877563 89
2bc1bcfb 90/*
3685e022 91 * lttv_trace_create : Add all traces recursively to a traceset from a path
2bc1bcfb 92 *
451aaf27 93 *
2bc1bcfb 94 * ts is the traceset in which will be contained the traces
95 *
3685e022 96 * trace_path is the path where to find a set of trace.
97 * Traverse the path recursively to add all traces within.
2bc1bcfb 98 *
3685e022 99 * return 0 on success or a negative integer on failure
2bc1bcfb 100 */
3685e022 101int lttv_traceset_add_path(LttvTraceset *ts, char *path);
2bc1bcfb 102
dc877563 103unsigned lttv_traceset_number(LttvTraceset *s);
104
308711e5 105LttvTrace *lttv_traceset_get(LttvTraceset *s, unsigned i);
dc877563 106
107void lttv_traceset_remove(LttvTraceset *s, unsigned i);
108
dc877563 109/* An attributes table is attached to the set and to each trace in the set. */
110
111LttvAttribute *lttv_traceset_attribute(LttvTraceset *s);
112
7a4bdb54
YB
113/* Take a position snapshot */
114LttvTracesetPosition *lttv_traceset_create_position(LttvTraceset *traceset);
2176f952 115
7a4bdb54
YB
116/* Destroy position snapshot */
117void lttv_traceset_destroy_position(LttvTracesetPosition *traceset_pos);
a43d67ba 118
9a366873 119void lttv_traceset_seek_to_position(const LttvTracesetPosition *traceset_pos);
a43d67ba 120
7a4bdb54 121guint lttv_traceset_get_cpuid_from_event(LttvEvent *event);
451aaf27
FD
122/* Returns the minimum timestamp of the traces in the traceset */
123guint64 lttv_traceset_get_timestamp_begin(LttvTraceset *traceset);
124/* Returns the maximum timestamp of the traces in the traceset */
125guint64 lttv_traceset_get_timestamp_end(LttvTraceset *traceset);
9a366873
FD
126/* Return a TimeInterval from timestamp of the first event to the last event [experimentale]*/
127TimeInterval lttv_traceset_get_time_span_real(LttvTraceset *ts);
9aaa78dc
FD
128/* Returns a TimeInterval struct that represents the min and max of the traceset */
129TimeInterval lttv_traceset_get_time_span(LttvTraceset *traceset);
7a4bdb54
YB
130
131const char *lttv_traceset_get_name_from_event(LttvEvent *event);
dc877563 132
9a366873
FD
133LttvTracesetPosition *lttv_traceset_create_time_position(LttvTraceset *ts, LttTime timestamp);
134
135guint64 lttv_traceset_position_get_timestamp(const LttvTracesetPosition *pos);
136
137LttTime lttv_traceset_position_get_time(const LttvTracesetPosition *pos);
138
139int lttv_traceset_position_compare(const LttvTracesetPosition *pos1, const LttvTracesetPosition *pos2);
140
141
142
7a4bdb54 143#endif // TRACESET_H
This page took 0.074645 seconds and 4 git commands to generate.