liblttvtraceread: clean up by removing old commented code
[lttv.git] / ltt / branches / poly / 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>
29af7cfd 24#include <stdint.h>
25#include <glib.h>
26
27struct LttTrace {
28 GQuark pathname; //the pathname of the trace
29 //LttSystemDescription * system_description;//system description
30
29af7cfd 31 guint num_cpu;
32
33 guint32 arch_type;
34 guint32 arch_variant;
35 guint8 arch_size;
36 guint8 ltt_major_version;
37 guint8 ltt_minor_version;
38 guint8 flight_recorder;
39 guint32 freq_scale;
40 uint64_t start_freq;
41 uint64_t start_tsc;
42 uint64_t start_monotonic;
43 LttTime start_time;
44 LttTime start_time_from_tsc;
29af7cfd 45
46 GData *tracefiles; //tracefiles groups
47 /* Support for markers */
48 GArray *markers; //indexed by marker ID
49 GHashTable *markers_hash; //indexed by name hash
c09a11e9 50 GHashTable *markers_format_hash; //indexed by name hash
29af7cfd 51};
52
53
1b82f325 54
3aee1200 55extern GQuark LTT_FACILITY_NAME_HEARTBEAT,
d1bb700c 56 LTT_EVENT_NAME_HEARTBEAT,
57 LTT_EVENT_NAME_HEARTBEAT_FULL;
3aee1200 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
2a74fbf4 72/* copy reopens a trace
73 *
74 * return value NULL if error while opening the trace
75 */
f7afe191 76LttTrace *ltt_trace_copy(LttTrace *self);
1b82f325 77
826f1ab2 78GQuark ltt_trace_name(const LttTrace *t);
49bf71b5 79
290dfc8c 80void ltt_trace_close(LttTrace *t);
1b82f325 81
b56dcdf2 82guint ltt_trace_get_num_cpu(LttTrace *t);
1b82f325 83
963b5f2d 84LttSystemDescription *ltt_trace_system_description(LttTrace *t);
1b82f325 85
1b82f325 86
487ad181 87/* Get the start time and end time of the trace */
88
89void ltt_trace_time_span_get(LttTrace *t, LttTime *start, LttTime *end);
90
91
290dfc8c 92/* Get the name of a tracefile */
1b82f325 93
348c6ba8 94GQuark ltt_tracefile_name(const LttTracefile *tf);
95GQuark ltt_tracefile_long_name(const LttTracefile *tf);
1b82f325 96
d3d34f49 97/* get the cpu number of the tracefile */
98
ae3d0f50 99guint ltt_tracefile_cpu(LttTracefile *tf);
100
101/* For usertrace */
102guint ltt_tracefile_tid(LttTracefile *tf);
103guint ltt_tracefile_pgid(LttTracefile *tf);
104guint64 ltt_tracefile_creation(LttTracefile *tf);
105
d3d34f49 106
107LttTrace *ltt_tracefile_get_trace(LttTracefile *tf);
1b82f325 108
80da81ad 109/* Get the number of blocks in the tracefile */
110
111unsigned ltt_tracefile_block_number(LttTracefile *tf);
112
113
1b82f325 114/* Seek to the first event of the trace with time larger or equal to time */
115
3aee1200 116int ltt_tracefile_seek_time(LttTracefile *t, LttTime time);
1b82f325 117
80da81ad 118/* Seek to the first event with position equal or larger to ep */
119
3aee1200 120int ltt_tracefile_seek_position(LttTracefile *t,
04b44e05 121 const LttEventPosition *ep);
1b82f325 122
123/* Read the next event */
124
3aee1200 125int ltt_tracefile_read(LttTracefile *t);
a5dcde2f 126
3aee1200 127/* ltt_tracefile_read cut down in pieces */
128int ltt_tracefile_read_seek(LttTracefile *t);
129int ltt_tracefile_read_update_event(LttTracefile *t);
130int ltt_tracefile_read_op(LttTracefile *t);
a5dcde2f 131
eed2ef37 132/* Get the current event of the tracefile : valid until the next read */
133LttEvent *ltt_tracefile_get_event(LttTracefile *tf);
134
3aee1200 135/* open tracefile */
a5dcde2f 136
3aee1200 137gint ltt_tracefile_open(LttTrace *t, gchar * fileName, LttTracefile *tf);
a5dcde2f 138
a5dcde2f 139/* get the data type size and endian type of the local machine */
140
141void getDataEndianType(LttArchSize * size, LttArchEndian * endian);
142
143/* get an integer number */
3aee1200 144gint64 get_int(gboolean reverse_byte_order, gint size, void *data);
a5dcde2f 145
146/* get the node name of the system */
147
45e14832 148gchar * ltt_trace_system_description_node_name (LttSystemDescription * s);
a5dcde2f 149
150
151/* get the domain name of the system */
152
45e14832 153gchar * ltt_trace_system_description_domain_name (LttSystemDescription * s);
a5dcde2f 154
155
156/* get the description of the system */
157
45e14832 158gchar * ltt_trace_system_description_description (LttSystemDescription * s);
a5dcde2f 159
160
bf33dd50 161/* get the NTP start time of the trace */
a5dcde2f 162
7bd563ec 163LttTime ltt_trace_start_time(LttTrace *t);
a5dcde2f 164
bf33dd50 165/* get the monotonic start time of the trace */
166
167LttTime ltt_trace_start_time_monotonic(LttTrace *t);
168
18206708 169/* copy tracefile info over another. Used for sync. */
170LttTracefile *ltt_tracefile_new();
171void ltt_tracefile_destroy(LttTracefile *tf);
172void ltt_tracefile_copy(LttTracefile *dest, const LttTracefile *src);
173
45e14832 174void get_absolute_pathname(const gchar *pathname, gchar * abs_pathname);
18206708 175
e45551ac 176/* May return a NULL tracefile group */
3865ea09 177GData **ltt_trace_get_tracefiles_groups(LttTrace *trace);
77175651 178
179typedef void (*ForEachTraceFileFunc)(LttTracefile *tf, gpointer func_args);
180
181struct compute_tracefile_group_args {
182 ForEachTraceFileFunc func;
183 gpointer func_args;
184};
185
3865ea09 186
187void compute_tracefile_group(GQuark key_id,
188 GArray *group,
189 struct compute_tracefile_group_args *args);
77175651 190
3aee1200 191
a0c1f622 192gint64 ltt_get_int(gboolean reverse_byte_order, gint size, void *data);
193
194guint64 ltt_get_uint(gboolean reverse_byte_order, gint size, void *data);
195
ae3d0f50 196LttTime ltt_interpolate_time_from_tsc(LttTracefile *tf, guint64 tsc);
197
91f8d488 198/* Set to enable event debugging output */
199void ltt_event_debug(int state);
200
1b82f325 201#endif // TRACE_H
This page took 0.059823 seconds and 4 git commands to generate.