Rework about dialog by using gtk_show_about_dialog
[lttv.git] / ltt / trace.h
CommitLineData
9c312311 1/* This file is part of the Linux Trace Toolkit trace reading library
2 * Copyright (C) 2003-2004 Michel Dagenais
1b44b0b5 3 * 2005 Mathieu Desnoyers
9c312311 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
963b5f2d 20#ifndef TRACE_H
21#define TRACE_H
1b82f325 22
23#include <ltt/ltt.h>
f4e57537 24#include <ltt/ltt-private.h>
29af7cfd 25#include <stdint.h>
26#include <glib.h>
27
28struct LttTrace {
29 GQuark pathname; //the pathname of the trace
30 //LttSystemDescription * system_description;//system description
31
29af7cfd 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;
9c9bf2d4
BP
44 double drift;
45 double offset;
29af7cfd 46 LttTime start_time;
47 LttTime start_time_from_tsc;
8b0a0cc8
YB
48 gboolean is_live; /* Flag indicating that read trace is currently being recorded */
49 LttTime live_safe_timestamp; /* In a live trace, timestamp were all data should be readable */
29af7cfd 50
8b0a0cc8 51 GData *tracefiles; /*tracefiles groups*/
29af7cfd 52};
53
8655430b 54static inline guint ltt_trace_get_num_cpu(LttTrace *t)
55{
56 return t->num_cpu;
57}
29af7cfd 58
1b82f325 59/* A trace is specified as a pathname to the directory containing all the
290dfc8c 60 associated data (control tracefiles, per cpu tracefiles, event
1b82f325 61 descriptions...).
62
63 When a trace is closed, all the associated facilities, types and fields
2a74fbf4 64 are released as well.
65
66 return value is NULL if there is an error when opening the trace.
67
68 */
1b82f325 69
45e14832 70LttTrace *ltt_trace_open(const gchar *pathname);
f7afe191 71
8b0a0cc8
YB
72/* Same as ltt_trace_open but open the trace in live mode */
73LttTrace *ltt_trace_open_live(const gchar *pathname);
74
75
2a74fbf4 76/* copy reopens a trace
77 *
78 * return value NULL if error while opening the trace
79 */
f7afe191 80LttTrace *ltt_trace_copy(LttTrace *self);
1b82f325 81
8655430b 82static inline GQuark ltt_trace_name(const LttTrace *t)
83{
84 return t->pathname;
85}
8b0a0cc8
YB
86/* Update the informations concerning a trace, normally a live one */
87int ltt_trace_update(LttTrace *trace);
1b82f325 88
8655430b 89void ltt_trace_close(LttTrace *t);
1b82f325 90
963b5f2d 91LttSystemDescription *ltt_trace_system_description(LttTrace *t);
1b82f325 92
1b82f325 93
487ad181 94/* Get the start time and end time of the trace */
95
96void ltt_trace_time_span_get(LttTrace *t, LttTime *start, LttTime *end);
97
98
290dfc8c 99/* Get the name of a tracefile */
1b82f325 100
8655430b 101static inline GQuark ltt_tracefile_name(const LttTracefile *tf)
102{
103 return tf->name;
104}
105
106static inline GQuark ltt_tracefile_long_name(const LttTracefile *tf)
107{
108 return tf->long_name;
109}
1b82f325 110
d3d34f49 111/* get the cpu number of the tracefile */
112
8655430b 113static inline guint ltt_tracefile_cpu(LttTracefile *tf)
114{
115 return tf->cpu_num;
116}
ae3d0f50 117
118/* For usertrace */
8655430b 119static inline guint ltt_tracefile_tid(LttTracefile *tf)
120{
121 return tf->tid;
122}
123
124static inline guint ltt_tracefile_pgid(LttTracefile *tf)
125{
126 return tf->pgid;
127}
128
129static inline guint64 ltt_tracefile_creation(LttTracefile *tf)
130{
131 return tf->creation;
132}
133
134static inline LttTrace *ltt_tracefile_get_trace(LttTracefile *tf)
135{
136 return tf->trace;
137}
1b82f325 138
80da81ad 139/* Get the number of blocks in the tracefile */
140
8655430b 141static inline guint ltt_tracefile_block_number(LttTracefile *tf)
142{
143 return tf->num_blocks;
144}
80da81ad 145
146
1b82f325 147/* Seek to the first event of the trace with time larger or equal to time */
148
3aee1200 149int ltt_tracefile_seek_time(LttTracefile *t, LttTime time);
1b82f325 150
8b0a0cc8
YB
151
152int ltt_tracefile_get_current_position(const LttTracefile *tf, LttEventPosition *ep);
153
80da81ad 154/* Seek to the first event with position equal or larger to ep */
155
3aee1200 156int ltt_tracefile_seek_position(LttTracefile *t,
04b44e05 157 const LttEventPosition *ep);
1b82f325 158
159/* Read the next event */
160
3aee1200 161int ltt_tracefile_read(LttTracefile *t);
a5dcde2f 162
3aee1200 163/* ltt_tracefile_read cut down in pieces */
164int ltt_tracefile_read_seek(LttTracefile *t);
165int ltt_tracefile_read_update_event(LttTracefile *t);
166int ltt_tracefile_read_op(LttTracefile *t);
a5dcde2f 167
eed2ef37 168/* Get the current event of the tracefile : valid until the next read */
169LttEvent *ltt_tracefile_get_event(LttTracefile *tf);
170
a5dcde2f 171/* get the data type size and endian type of the local machine */
172
173void getDataEndianType(LttArchSize * size, LttArchEndian * endian);
174
175/* get an integer number */
3aee1200 176gint64 get_int(gboolean reverse_byte_order, gint size, void *data);
a5dcde2f 177
178/* get the node name of the system */
179
45e14832 180gchar * ltt_trace_system_description_node_name (LttSystemDescription * s);
a5dcde2f 181
182
183/* get the domain name of the system */
184
45e14832 185gchar * ltt_trace_system_description_domain_name (LttSystemDescription * s);
a5dcde2f 186
187
188/* get the description of the system */
189
45e14832 190gchar * ltt_trace_system_description_description (LttSystemDescription * s);
a5dcde2f 191
192
bf33dd50 193/* get the NTP start time of the trace */
a5dcde2f 194
7bd563ec 195LttTime ltt_trace_start_time(LttTrace *t);
a5dcde2f 196
bf33dd50 197/* get the monotonic start time of the trace */
198
199LttTime ltt_trace_start_time_monotonic(LttTrace *t);
200
45e14832 201void get_absolute_pathname(const gchar *pathname, gchar * abs_pathname);
18206708 202
e45551ac 203/* May return a NULL tracefile group */
3865ea09 204GData **ltt_trace_get_tracefiles_groups(LttTrace *trace);
77175651 205
206typedef void (*ForEachTraceFileFunc)(LttTracefile *tf, gpointer func_args);
207
208struct compute_tracefile_group_args {
209 ForEachTraceFileFunc func;
210 gpointer func_args;
211};
212
3865ea09 213void compute_tracefile_group(GQuark key_id,
214 GArray *group,
215 struct compute_tracefile_group_args *args);
77175651 216
3aee1200 217
a0c1f622 218gint64 ltt_get_int(gboolean reverse_byte_order, gint size, void *data);
219
220guint64 ltt_get_uint(gboolean reverse_byte_order, gint size, void *data);
221
9c9bf2d4
BP
222guint64 tsc_to_uint64(guint32 freq_scale, uint64_t start_freq, guint64 tsc);
223
ae3d0f50 224LttTime ltt_interpolate_time_from_tsc(LttTracefile *tf, guint64 tsc);
225
91f8d488 226/* Set to enable event debugging output */
227void ltt_event_debug(int state);
228
a31d2894
WB
229/* A structure representing the version number of the trace */
230struct LttTraceVersion {
231 guint8 ltt_major_version;
232 guint8 ltt_minor_version;
233};
234
235/* To get the version number of a trace */
236int ltt_get_trace_version(const gchar *pathname, struct LttTraceVersion * version_number);
237
1b82f325 238#endif // TRACE_H
This page took 0.077649 seconds and 4 git commands to generate.