enum fix
[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
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License Version 2.1 as published by the Free Software Foundation.
7 *
8 * This library 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 GNU
11 * Lesser General Public License for more details.
12 *
13 * You should have received a copy of the GNU Lesser General Public
14 * License along with this library; if not, write to the
15 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
16 * Boston, MA 02111-1307, USA.
17 */
18
963b5f2d 19#ifndef TRACE_H
20#define TRACE_H
1b82f325 21
22#include <ltt/ltt.h>
23
3aee1200 24extern GQuark LTT_FACILITY_NAME_HEARTBEAT,
25 LTT_EVENT_NAME_HEARTBEAT;
26
1b82f325 27/* A trace is specified as a pathname to the directory containing all the
290dfc8c 28 associated data (control tracefiles, per cpu tracefiles, event
1b82f325 29 descriptions...).
30
31 When a trace is closed, all the associated facilities, types and fields
2a74fbf4 32 are released as well.
33
34 return value is NULL if there is an error when opening the trace.
35
36 */
1b82f325 37
45e14832 38LttTrace *ltt_trace_open(const gchar *pathname);
f7afe191 39
2a74fbf4 40/* copy reopens a trace
41 *
42 * return value NULL if error while opening the trace
43 */
f7afe191 44LttTrace *ltt_trace_copy(LttTrace *self);
1b82f325 45
3aee1200 46GQuark ltt_trace_name(LttTrace *t);
49bf71b5 47
290dfc8c 48void ltt_trace_close(LttTrace *t);
1b82f325 49
50
963b5f2d 51LttSystemDescription *ltt_trace_system_description(LttTrace *t);
1b82f325 52
1b82f325 53
290dfc8c 54/* Functions to discover the facilities in the trace. Once the number
55 of facilities is known, they may be accessed by position. Multiple
56 versions of a facility (same name, different checksum) have consecutive
57 positions. */
1b82f325 58
290dfc8c 59unsigned ltt_trace_facility_number(LttTrace *t);
1b82f325 60
290dfc8c 61LttFacility *ltt_trace_facility_get(LttTrace *t, unsigned i);
1b82f325 62
3aee1200 63LttFacility * ltt_trace_facility_by_id(LttTrace * trace, guint8 id);
1b82f325 64
77175651 65/* Returns an array of indexes (guint) that matches the facility name */
66GArray *ltt_trace_facility_get_by_name(LttTrace *t, GQuark name);
1b82f325 67
290dfc8c 68/* Functions to discover all the event types in the trace */
1b82f325 69
290dfc8c 70unsigned ltt_trace_eventtype_number(LttTrace *t);
1b82f325 71
290dfc8c 72LttEventType *ltt_trace_eventtype_get(LttTrace *t, unsigned i);
1b82f325 73
1b82f325 74
487ad181 75/* Get the start time and end time of the trace */
76
77void ltt_trace_time_span_get(LttTrace *t, LttTime *start, LttTime *end);
78
79
290dfc8c 80/* Get the name of a tracefile */
1b82f325 81
3aee1200 82GQuark ltt_tracefile_name(LttTracefile *tf);
1b82f325 83
d3d34f49 84/* get the cpu number of the tracefile */
85
86guint ltt_tracefile_num(LttTracefile *tf);
87
88LttTrace *ltt_tracefile_get_trace(LttTracefile *tf);
1b82f325 89
80da81ad 90/* Get the number of blocks in the tracefile */
91
92unsigned ltt_tracefile_block_number(LttTracefile *tf);
93
94
1b82f325 95/* Seek to the first event of the trace with time larger or equal to time */
96
3aee1200 97int ltt_tracefile_seek_time(LttTracefile *t, LttTime time);
1b82f325 98
80da81ad 99/* Seek to the first event with position equal or larger to ep */
100
3aee1200 101int ltt_tracefile_seek_position(LttTracefile *t,
04b44e05 102 const LttEventPosition *ep);
1b82f325 103
104/* Read the next event */
105
3aee1200 106int ltt_tracefile_read(LttTracefile *t);
a5dcde2f 107
3aee1200 108/* ltt_tracefile_read cut down in pieces */
109int ltt_tracefile_read_seek(LttTracefile *t);
110int ltt_tracefile_read_update_event(LttTracefile *t);
111int ltt_tracefile_read_op(LttTracefile *t);
a5dcde2f 112
eed2ef37 113/* Get the current event of the tracefile : valid until the next read */
114LttEvent *ltt_tracefile_get_event(LttTracefile *tf);
115
3aee1200 116/* open tracefile */
a5dcde2f 117
3aee1200 118gint ltt_tracefile_open(LttTrace *t, gchar * fileName, LttTracefile *tf);
a5dcde2f 119
a5dcde2f 120/* get the data type size and endian type of the local machine */
121
122void getDataEndianType(LttArchSize * size, LttArchEndian * endian);
123
124/* get an integer number */
3aee1200 125gint64 get_int(gboolean reverse_byte_order, gint size, void *data);
a5dcde2f 126
127/* get the node name of the system */
128
45e14832 129gchar * ltt_trace_system_description_node_name (LttSystemDescription * s);
a5dcde2f 130
131
132/* get the domain name of the system */
133
45e14832 134gchar * ltt_trace_system_description_domain_name (LttSystemDescription * s);
a5dcde2f 135
136
137/* get the description of the system */
138
45e14832 139gchar * ltt_trace_system_description_description (LttSystemDescription * s);
a5dcde2f 140
141
142/* get the start time of the trace */
143
144LttTime ltt_trace_system_description_trace_start_time(LttSystemDescription *s);
145
18206708 146/* copy tracefile info over another. Used for sync. */
147LttTracefile *ltt_tracefile_new();
148void ltt_tracefile_destroy(LttTracefile *tf);
149void ltt_tracefile_copy(LttTracefile *dest, const LttTracefile *src);
150
45e14832 151void get_absolute_pathname(const gchar *pathname, gchar * abs_pathname);
18206708 152
e45551ac 153/* May return a NULL tracefile group */
3865ea09 154GData **ltt_trace_get_tracefiles_groups(LttTrace *trace);
77175651 155
156typedef void (*ForEachTraceFileFunc)(LttTracefile *tf, gpointer func_args);
157
158struct compute_tracefile_group_args {
159 ForEachTraceFileFunc func;
160 gpointer func_args;
161};
162
3865ea09 163
164void compute_tracefile_group(GQuark key_id,
165 GArray *group,
166 struct compute_tracefile_group_args *args);
77175651 167
168LttFacility *ltt_trace_get_facility_by_num(LttTrace *t, guint num);
169
3aee1200 170
77175651 171gint check_fields_compatibility(LttEventType *event_type1,
172 LttEventType *event_type2,
173 LttField *field1, LttField *field2);
3aee1200 174
1b82f325 175#endif // TRACE_H
This page took 0.040598 seconds and 4 git commands to generate.