update compat
[lttv.git] / tags / lttv-0.11.3-23102008 / ltt / trace.h
1 /* This file is part of the Linux Trace Toolkit trace reading library
2 * Copyright (C) 2003-2004 Michel Dagenais
3 * 2005 Mathieu Desnoyers
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License Version 2.1 as published by the Free Software Foundation.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17 * Boston, MA 02111-1307, USA.
18 */
19
20 #ifndef TRACE_H
21 #define TRACE_H
22
23 #include <ltt/ltt.h>
24 #include <ltt/ltt-private.h>
25 #include <stdint.h>
26 #include <glib.h>
27
28 struct LttTrace {
29 GQuark pathname; //the pathname of the trace
30 //LttSystemDescription * system_description;//system description
31
32 guint num_cpu;
33
34 guint32 arch_type;
35 guint32 arch_variant;
36 guint8 arch_size;
37 guint8 ltt_major_version;
38 guint8 ltt_minor_version;
39 guint8 flight_recorder;
40 guint32 freq_scale;
41 uint64_t start_freq;
42 uint64_t start_tsc;
43 uint64_t start_monotonic;
44 LttTime start_time;
45 LttTime start_time_from_tsc;
46
47 GData *tracefiles; //tracefiles groups
48 /* Support for markers */
49 GArray *markers; //indexed by marker ID
50 GHashTable *markers_hash; //indexed by name hash
51 GHashTable *markers_format_hash; //indexed by name hash
52 };
53
54 static inline guint ltt_trace_get_num_cpu(LttTrace *t)
55 {
56 return t->num_cpu;
57 }
58
59 /* A trace is specified as a pathname to the directory containing all the
60 associated data (control tracefiles, per cpu tracefiles, event
61 descriptions...).
62
63 When a trace is closed, all the associated facilities, types and fields
64 are released as well.
65
66 return value is NULL if there is an error when opening the trace.
67
68 */
69
70 LttTrace *ltt_trace_open(const gchar *pathname);
71
72 /* copy reopens a trace
73 *
74 * return value NULL if error while opening the trace
75 */
76 LttTrace *ltt_trace_copy(LttTrace *self);
77
78 static inline GQuark ltt_trace_name(const LttTrace *t)
79 {
80 return t->pathname;
81 }
82
83
84 void ltt_trace_close(LttTrace *t);
85
86 LttSystemDescription *ltt_trace_system_description(LttTrace *t);
87
88
89 /* Get the start time and end time of the trace */
90
91 void ltt_trace_time_span_get(LttTrace *t, LttTime *start, LttTime *end);
92
93
94 /* Get the name of a tracefile */
95
96 static inline GQuark ltt_tracefile_name(const LttTracefile *tf)
97 {
98 return tf->name;
99 }
100
101 static inline GQuark ltt_tracefile_long_name(const LttTracefile *tf)
102 {
103 return tf->long_name;
104 }
105
106 /* get the cpu number of the tracefile */
107
108 static inline guint ltt_tracefile_cpu(LttTracefile *tf)
109 {
110 return tf->cpu_num;
111 }
112
113 /* For usertrace */
114 static inline guint ltt_tracefile_tid(LttTracefile *tf)
115 {
116 return tf->tid;
117 }
118
119 static inline guint ltt_tracefile_pgid(LttTracefile *tf)
120 {
121 return tf->pgid;
122 }
123
124 static inline guint64 ltt_tracefile_creation(LttTracefile *tf)
125 {
126 return tf->creation;
127 }
128
129 static inline LttTrace *ltt_tracefile_get_trace(LttTracefile *tf)
130 {
131 return tf->trace;
132 }
133
134 /* Get the number of blocks in the tracefile */
135
136 static inline guint ltt_tracefile_block_number(LttTracefile *tf)
137 {
138 return tf->num_blocks;
139 }
140
141
142 /* Seek to the first event of the trace with time larger or equal to time */
143
144 int ltt_tracefile_seek_time(LttTracefile *t, LttTime time);
145
146 /* Seek to the first event with position equal or larger to ep */
147
148 int ltt_tracefile_seek_position(LttTracefile *t,
149 const LttEventPosition *ep);
150
151 /* Read the next event */
152
153 int ltt_tracefile_read(LttTracefile *t);
154
155 /* ltt_tracefile_read cut down in pieces */
156 int ltt_tracefile_read_seek(LttTracefile *t);
157 int ltt_tracefile_read_update_event(LttTracefile *t);
158 int ltt_tracefile_read_op(LttTracefile *t);
159
160 /* Get the current event of the tracefile : valid until the next read */
161 LttEvent *ltt_tracefile_get_event(LttTracefile *tf);
162
163 /* get the data type size and endian type of the local machine */
164
165 void getDataEndianType(LttArchSize * size, LttArchEndian * endian);
166
167 /* get an integer number */
168 gint64 get_int(gboolean reverse_byte_order, gint size, void *data);
169
170 /* get the node name of the system */
171
172 gchar * ltt_trace_system_description_node_name (LttSystemDescription * s);
173
174
175 /* get the domain name of the system */
176
177 gchar * ltt_trace_system_description_domain_name (LttSystemDescription * s);
178
179
180 /* get the description of the system */
181
182 gchar * ltt_trace_system_description_description (LttSystemDescription * s);
183
184
185 /* get the NTP start time of the trace */
186
187 LttTime ltt_trace_start_time(LttTrace *t);
188
189 /* get the monotonic start time of the trace */
190
191 LttTime ltt_trace_start_time_monotonic(LttTrace *t);
192
193 void get_absolute_pathname(const gchar *pathname, gchar * abs_pathname);
194
195 /* May return a NULL tracefile group */
196 GData **ltt_trace_get_tracefiles_groups(LttTrace *trace);
197
198 typedef void (*ForEachTraceFileFunc)(LttTracefile *tf, gpointer func_args);
199
200 struct compute_tracefile_group_args {
201 ForEachTraceFileFunc func;
202 gpointer func_args;
203 };
204
205 void compute_tracefile_group(GQuark key_id,
206 GArray *group,
207 struct compute_tracefile_group_args *args);
208
209
210 gint64 ltt_get_int(gboolean reverse_byte_order, gint size, void *data);
211
212 guint64 ltt_get_uint(gboolean reverse_byte_order, gint size, void *data);
213
214 LttTime ltt_interpolate_time_from_tsc(LttTracefile *tf, guint64 tsc);
215
216 /* Set to enable event debugging output */
217 void ltt_event_debug(int state);
218
219 #endif // TRACE_H
This page took 0.032766 seconds and 4 git commands to generate.