Commit | Line | Data |
---|---|---|
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> |
190724cd | 25 | #include <lttv/time.h> |
7a4bdb54 | 26 | #include <lttv/trace.h> |
190724cd | 27 | |
dc877563 | 28 | /* A traceset is a set of traces to be analyzed together. */ |
29 | ||
ba576a78 | 30 | typedef struct _LttvTraceset LttvTraceset; |
dc877563 | 31 | |
7a4bdb54 | 32 | typedef struct _LttvTracesetPosition LttvTracesetPosition; |
dc877563 | 33 | |
922581a4 YB |
34 | struct bt_context; |
35 | ||
7a4bdb54 YB |
36 | |
37 | //TODO ybrosseau 2012-05-15 put these struct in the .c to make them opaque | |
38 | struct _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; |
58b4e4ae | 46 | gboolean has_precomputed_states; |
8924e3e4 | 47 | TimeInterval time_span; |
8284135e | 48 | char *common_path; |
7a4bdb54 YB |
49 | }; |
50 | ||
8284135e YB |
51 | #define TRACE_NAME_SIZE 100 |
52 | ||
7a4bdb54 YB |
53 | struct _LttvTrace { |
54 | // Trace id for babeltrace | |
55 | LttvTraceset *traceset; /* container traceset */ | |
56 | gint id; | |
57 | LttvAttribute *a; | |
58 | guint ref_count; | |
59 | LttvTraceState *state; | |
8284135e YB |
60 | char short_name[TRACE_NAME_SIZE]; |
61 | char *full_path; | |
7a4bdb54 YB |
62 | }; |
63 | ||
64 | /* In babeltrace, the position concept is an iterator. */ | |
65 | struct _LttvTracesetPosition { | |
66 | struct bt_ctf_iter *iter; | |
3d1e7ee5 | 67 | struct bt_iter_pos *bt_pos; |
88bf15f0 FD |
68 | guint64 timestamp; |
69 | int cpu_id; | |
7a4bdb54 YB |
70 | }; |
71 | ||
dc877563 | 72 | /* Tracesets may be added to, removed from and their content listed. */ |
73 | ||
7a4bdb54 | 74 | LttvTraceset *lttv_traceset_new(void); |
dc877563 | 75 | |
49bf71b5 | 76 | char * lttv_traceset_name(LttvTraceset * s); |
77 | ||
2bc1bcfb | 78 | #ifdef BABEL_CLEANUP |
308711e5 | 79 | LttvTrace *lttv_trace_new(LttTrace *t); |
2bc1bcfb | 80 | #endif |
308711e5 | 81 | |
451aaf27 FD |
82 | void get_absolute_pathname(const gchar *pathname, gchar * abs_pathname); |
83 | ||
f7afe191 | 84 | LttvTraceset *lttv_traceset_copy(LttvTraceset *s_orig); |
85 | ||
86 | LttvTraceset *lttv_traceset_load(const gchar *filename); | |
87 | ||
922581a4 YB |
88 | struct bt_context *lttv_traceset_get_context(LttvTraceset *s); |
89 | ||
90 | ||
7a4bdb54 | 91 | |
f7afe191 | 92 | gint lttv_traceset_save(LttvTraceset *s); |
93 | ||
dc877563 | 94 | void lttv_traceset_destroy(LttvTraceset *s); |
95 | ||
88bf15f0 | 96 | LttvHooks *lttv_traceset_get_hooks(LttvTraceset *s); |
308711e5 | 97 | |
98 | void lttv_traceset_add(LttvTraceset *s, LttvTrace *t); | |
dc877563 | 99 | |
2bc1bcfb | 100 | /* |
3685e022 | 101 | * lttv_trace_create : Add all traces recursively to a traceset from a path |
2bc1bcfb | 102 | * |
451aaf27 | 103 | * |
2bc1bcfb | 104 | * ts is the traceset in which will be contained the traces |
105 | * | |
3685e022 | 106 | * trace_path is the path where to find a set of trace. |
107 | * Traverse the path recursively to add all traces within. | |
2bc1bcfb | 108 | * |
3685e022 | 109 | * return 0 on success or a negative integer on failure |
2bc1bcfb | 110 | */ |
3685e022 | 111 | int lttv_traceset_add_path(LttvTraceset *ts, char *path); |
2bc1bcfb | 112 | |
dc877563 | 113 | unsigned lttv_traceset_number(LttvTraceset *s); |
114 | ||
308711e5 | 115 | LttvTrace *lttv_traceset_get(LttvTraceset *s, unsigned i); |
dc877563 | 116 | |
117 | void lttv_traceset_remove(LttvTraceset *s, unsigned i); | |
118 | ||
8284135e YB |
119 | int lttv_traceset_get_trace_index_from_event(LttvEvent *event); |
120 | ||
121 | int lttv_traceset_get_trace_index_from_handle_id(LttvTraceset *ts, int handle_id); | |
122 | ||
dc877563 | 123 | /* An attributes table is attached to the set and to each trace in the set. */ |
124 | ||
125 | LttvAttribute *lttv_traceset_attribute(LttvTraceset *s); | |
126 | ||
7a4bdb54 | 127 | /* Take a position snapshot */ |
68573dd0 | 128 | LttvTracesetPosition *lttv_traceset_create_current_position(LttvTraceset *traceset); |
2176f952 | 129 | |
7a4bdb54 YB |
130 | /* Destroy position snapshot */ |
131 | void lttv_traceset_destroy_position(LttvTracesetPosition *traceset_pos); | |
a43d67ba | 132 | |
9a366873 | 133 | void lttv_traceset_seek_to_position(const LttvTracesetPosition *traceset_pos); |
a43d67ba | 134 | |
7a4bdb54 | 135 | guint lttv_traceset_get_cpuid_from_event(LttvEvent *event); |
451aaf27 FD |
136 | /* Returns the minimum timestamp of the traces in the traceset */ |
137 | guint64 lttv_traceset_get_timestamp_begin(LttvTraceset *traceset); | |
138 | /* Returns the maximum timestamp of the traces in the traceset */ | |
139 | guint64 lttv_traceset_get_timestamp_end(LttvTraceset *traceset); | |
9a366873 FD |
140 | /* Return a TimeInterval from timestamp of the first event to the last event [experimentale]*/ |
141 | TimeInterval lttv_traceset_get_time_span_real(LttvTraceset *ts); | |
9aaa78dc FD |
142 | /* Returns a TimeInterval struct that represents the min and max of the traceset */ |
143 | TimeInterval lttv_traceset_get_time_span(LttvTraceset *traceset); | |
7a4bdb54 YB |
144 | |
145 | const char *lttv_traceset_get_name_from_event(LttvEvent *event); | |
dc877563 | 146 | |
9a366873 FD |
147 | LttvTracesetPosition *lttv_traceset_create_time_position(LttvTraceset *ts, LttTime timestamp); |
148 | ||
149 | guint64 lttv_traceset_position_get_timestamp(const LttvTracesetPosition *pos); | |
150 | ||
151 | LttTime lttv_traceset_position_get_time(const LttvTracesetPosition *pos); | |
152 | ||
ff5c41f1 YB |
153 | LttTime lttv_traceset_get_current_time(const LttvTraceset *ts); |
154 | ||
9a366873 FD |
155 | int lttv_traceset_position_compare(const LttvTracesetPosition *pos1, const LttvTracesetPosition *pos2); |
156 | ||
ff5c41f1 YB |
157 | int lttv_traceset_position_time_compare(const LttvTracesetPosition *pos1, |
158 | const LttvTracesetPosition *pos2); | |
9a366873 | 159 | |
ff5c41f1 YB |
160 | int lttv_traceset_position_compare_current(const LttvTraceset *ts, |
161 | const LttvTracesetPosition *pos); | |
9a366873 | 162 | |
7a4bdb54 | 163 | #endif // TRACESET_H |