remove event.c and type.c
[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>
24
3aee1200 25extern GQuark LTT_FACILITY_NAME_HEARTBEAT,
d1bb700c 26 LTT_EVENT_NAME_HEARTBEAT,
27 LTT_EVENT_NAME_HEARTBEAT_FULL;
3aee1200 28
1b82f325 29/* A trace is specified as a pathname to the directory containing all the
290dfc8c 30 associated data (control tracefiles, per cpu tracefiles, event
1b82f325 31 descriptions...).
32
33 When a trace is closed, all the associated facilities, types and fields
2a74fbf4 34 are released as well.
35
36 return value is NULL if there is an error when opening the trace.
37
38 */
1b82f325 39
45e14832 40LttTrace *ltt_trace_open(const gchar *pathname);
f7afe191 41
2a74fbf4 42/* copy reopens a trace
43 *
44 * return value NULL if error while opening the trace
45 */
f7afe191 46LttTrace *ltt_trace_copy(LttTrace *self);
1b82f325 47
826f1ab2 48GQuark ltt_trace_name(const LttTrace *t);
49bf71b5 49
290dfc8c 50void ltt_trace_close(LttTrace *t);
1b82f325 51
b56dcdf2 52guint ltt_trace_get_num_cpu(LttTrace *t);
1b82f325 53
963b5f2d 54LttSystemDescription *ltt_trace_system_description(LttTrace *t);
1b82f325 55
1b82f325 56
290dfc8c 57/* Functions to discover the facilities in the trace. Once the number
58 of facilities is known, they may be accessed by position. Multiple
59 versions of a facility (same name, different checksum) have consecutive
60 positions. */
1b82f325 61
290dfc8c 62unsigned ltt_trace_facility_number(LttTrace *t);
1b82f325 63
3aee1200 64LttFacility * ltt_trace_facility_by_id(LttTrace * trace, guint8 id);
1b82f325 65
77175651 66/* Returns an array of indexes (guint) that matches the facility name */
67GArray *ltt_trace_facility_get_by_name(LttTrace *t, GQuark name);
1b82f325 68
290dfc8c 69/* Functions to discover all the event types in the trace */
1b82f325 70
290dfc8c 71unsigned ltt_trace_eventtype_number(LttTrace *t);
1b82f325 72
290dfc8c 73LttEventType *ltt_trace_eventtype_get(LttTrace *t, unsigned i);
1b82f325 74
1b82f325 75
487ad181 76/* Get the start time and end time of the trace */
77
78void ltt_trace_time_span_get(LttTrace *t, LttTime *start, LttTime *end);
79
80
290dfc8c 81/* Get the name of a tracefile */
1b82f325 82
348c6ba8 83GQuark ltt_tracefile_name(const LttTracefile *tf);
84GQuark ltt_tracefile_long_name(const LttTracefile *tf);
1b82f325 85
d3d34f49 86/* get the cpu number of the tracefile */
87
ae3d0f50 88guint ltt_tracefile_cpu(LttTracefile *tf);
89
90/* For usertrace */
91guint ltt_tracefile_tid(LttTracefile *tf);
92guint ltt_tracefile_pgid(LttTracefile *tf);
93guint64 ltt_tracefile_creation(LttTracefile *tf);
94
d3d34f49 95
96LttTrace *ltt_tracefile_get_trace(LttTracefile *tf);
1b82f325 97
80da81ad 98/* Get the number of blocks in the tracefile */
99
100unsigned ltt_tracefile_block_number(LttTracefile *tf);
101
102
1b82f325 103/* Seek to the first event of the trace with time larger or equal to time */
104
3aee1200 105int ltt_tracefile_seek_time(LttTracefile *t, LttTime time);
1b82f325 106
80da81ad 107/* Seek to the first event with position equal or larger to ep */
108
3aee1200 109int ltt_tracefile_seek_position(LttTracefile *t,
04b44e05 110 const LttEventPosition *ep);
1b82f325 111
112/* Read the next event */
113
3aee1200 114int ltt_tracefile_read(LttTracefile *t);
a5dcde2f 115
3aee1200 116/* ltt_tracefile_read cut down in pieces */
117int ltt_tracefile_read_seek(LttTracefile *t);
118int ltt_tracefile_read_update_event(LttTracefile *t);
119int ltt_tracefile_read_op(LttTracefile *t);
a5dcde2f 120
eed2ef37 121/* Get the current event of the tracefile : valid until the next read */
122LttEvent *ltt_tracefile_get_event(LttTracefile *tf);
123
3aee1200 124/* open tracefile */
a5dcde2f 125
3aee1200 126gint ltt_tracefile_open(LttTrace *t, gchar * fileName, LttTracefile *tf);
a5dcde2f 127
a5dcde2f 128/* get the data type size and endian type of the local machine */
129
130void getDataEndianType(LttArchSize * size, LttArchEndian * endian);
131
132/* get an integer number */
3aee1200 133gint64 get_int(gboolean reverse_byte_order, gint size, void *data);
a5dcde2f 134
135/* get the node name of the system */
136
45e14832 137gchar * ltt_trace_system_description_node_name (LttSystemDescription * s);
a5dcde2f 138
139
140/* get the domain name of the system */
141
45e14832 142gchar * ltt_trace_system_description_domain_name (LttSystemDescription * s);
a5dcde2f 143
144
145/* get the description of the system */
146
45e14832 147gchar * ltt_trace_system_description_description (LttSystemDescription * s);
a5dcde2f 148
149
bf33dd50 150/* get the NTP start time of the trace */
a5dcde2f 151
7bd563ec 152LttTime ltt_trace_start_time(LttTrace *t);
a5dcde2f 153
bf33dd50 154/* get the monotonic start time of the trace */
155
156LttTime ltt_trace_start_time_monotonic(LttTrace *t);
157
18206708 158/* copy tracefile info over another. Used for sync. */
159LttTracefile *ltt_tracefile_new();
160void ltt_tracefile_destroy(LttTracefile *tf);
161void ltt_tracefile_copy(LttTracefile *dest, const LttTracefile *src);
162
45e14832 163void get_absolute_pathname(const gchar *pathname, gchar * abs_pathname);
18206708 164
e45551ac 165/* May return a NULL tracefile group */
3865ea09 166GData **ltt_trace_get_tracefiles_groups(LttTrace *trace);
77175651 167
168typedef void (*ForEachTraceFileFunc)(LttTracefile *tf, gpointer func_args);
169
170struct compute_tracefile_group_args {
171 ForEachTraceFileFunc func;
172 gpointer func_args;
173};
174
3865ea09 175
176void compute_tracefile_group(GQuark key_id,
177 GArray *group,
178 struct compute_tracefile_group_args *args);
77175651 179
180LttFacility *ltt_trace_get_facility_by_num(LttTrace *t, guint num);
181
3aee1200 182
77175651 183gint check_fields_compatibility(LttEventType *event_type1,
184 LttEventType *event_type2,
185 LttField *field1, LttField *field2);
3aee1200 186
a0c1f622 187gint64 ltt_get_int(gboolean reverse_byte_order, gint size, void *data);
188
189guint64 ltt_get_uint(gboolean reverse_byte_order, gint size, void *data);
190
ae3d0f50 191LttTime ltt_interpolate_time_from_tsc(LttTracefile *tf, guint64 tsc);
192
1b82f325 193#endif // TRACE_H
This page took 0.055812 seconds and 4 git commands to generate.