add debug
[lttv.git] / ltt / branches / poly / ltt / trace.h
... / ...
CommitLineData
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 <stdint.h>
25#include <glib.h>
26
27struct LttTrace {
28 GQuark pathname; //the pathname of the trace
29 //LttSystemDescription * system_description;//system description
30
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;
45 uint8_t compact_event_bits;
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};
52
53
54
55extern GQuark LTT_FACILITY_NAME_HEARTBEAT,
56 LTT_EVENT_NAME_HEARTBEAT,
57 LTT_EVENT_NAME_HEARTBEAT_FULL;
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
70LttTrace *ltt_trace_open(const gchar *pathname);
71
72/* copy reopens a trace
73 *
74 * return value NULL if error while opening the trace
75 */
76LttTrace *ltt_trace_copy(LttTrace *self);
77
78GQuark ltt_trace_name(const LttTrace *t);
79
80void ltt_trace_close(LttTrace *t);
81
82guint ltt_trace_get_num_cpu(LttTrace *t);
83
84LttSystemDescription *ltt_trace_system_description(LttTrace *t);
85
86
87/* Functions to discover the facilities in the trace. Once the number
88 of facilities is known, they may be accessed by position. Multiple
89 versions of a facility (same name, different checksum) have consecutive
90 positions. */
91
92//unsigned ltt_trace_facility_number(LttTrace *t);
93
94//LttFacility * ltt_trace_facility_by_id(LttTrace * trace, guint8 id);
95
96/* Returns an array of indexes (guint) that matches the facility name */
97//GArray *ltt_trace_facility_get_by_name(LttTrace *t, GQuark name);
98
99/* Functions to discover all the event types in the trace */
100
101//unsigned ltt_trace_eventtype_number(LttTrace *t);
102
103//LttEventType *ltt_trace_eventtype_get(LttTrace *t, unsigned i);
104
105
106/* Get the start time and end time of the trace */
107
108void ltt_trace_time_span_get(LttTrace *t, LttTime *start, LttTime *end);
109
110
111/* Get the name of a tracefile */
112
113GQuark ltt_tracefile_name(const LttTracefile *tf);
114GQuark ltt_tracefile_long_name(const LttTracefile *tf);
115
116/* get the cpu number of the tracefile */
117
118guint ltt_tracefile_cpu(LttTracefile *tf);
119
120/* For usertrace */
121guint ltt_tracefile_tid(LttTracefile *tf);
122guint ltt_tracefile_pgid(LttTracefile *tf);
123guint64 ltt_tracefile_creation(LttTracefile *tf);
124
125
126LttTrace *ltt_tracefile_get_trace(LttTracefile *tf);
127
128/* Get the number of blocks in the tracefile */
129
130unsigned ltt_tracefile_block_number(LttTracefile *tf);
131
132
133/* Seek to the first event of the trace with time larger or equal to time */
134
135int ltt_tracefile_seek_time(LttTracefile *t, LttTime time);
136
137/* Seek to the first event with position equal or larger to ep */
138
139int ltt_tracefile_seek_position(LttTracefile *t,
140 const LttEventPosition *ep);
141
142/* Read the next event */
143
144int ltt_tracefile_read(LttTracefile *t);
145
146/* ltt_tracefile_read cut down in pieces */
147int ltt_tracefile_read_seek(LttTracefile *t);
148int ltt_tracefile_read_update_event(LttTracefile *t);
149int ltt_tracefile_read_op(LttTracefile *t);
150
151/* Get the current event of the tracefile : valid until the next read */
152LttEvent *ltt_tracefile_get_event(LttTracefile *tf);
153
154/* open tracefile */
155
156gint ltt_tracefile_open(LttTrace *t, gchar * fileName, LttTracefile *tf);
157
158/* get the data type size and endian type of the local machine */
159
160void getDataEndianType(LttArchSize * size, LttArchEndian * endian);
161
162/* get an integer number */
163gint64 get_int(gboolean reverse_byte_order, gint size, void *data);
164
165/* get the node name of the system */
166
167gchar * ltt_trace_system_description_node_name (LttSystemDescription * s);
168
169
170/* get the domain name of the system */
171
172gchar * ltt_trace_system_description_domain_name (LttSystemDescription * s);
173
174
175/* get the description of the system */
176
177gchar * ltt_trace_system_description_description (LttSystemDescription * s);
178
179
180/* get the NTP start time of the trace */
181
182LttTime ltt_trace_start_time(LttTrace *t);
183
184/* get the monotonic start time of the trace */
185
186LttTime ltt_trace_start_time_monotonic(LttTrace *t);
187
188/* copy tracefile info over another. Used for sync. */
189LttTracefile *ltt_tracefile_new();
190void ltt_tracefile_destroy(LttTracefile *tf);
191void ltt_tracefile_copy(LttTracefile *dest, const LttTracefile *src);
192
193void get_absolute_pathname(const gchar *pathname, gchar * abs_pathname);
194
195/* May return a NULL tracefile group */
196GData **ltt_trace_get_tracefiles_groups(LttTrace *trace);
197
198typedef void (*ForEachTraceFileFunc)(LttTracefile *tf, gpointer func_args);
199
200struct compute_tracefile_group_args {
201 ForEachTraceFileFunc func;
202 gpointer func_args;
203};
204
205
206void compute_tracefile_group(GQuark key_id,
207 GArray *group,
208 struct compute_tracefile_group_args *args);
209
210//LttFacility *ltt_trace_get_facility_by_num(LttTrace *t, guint num);
211
212
213//gint check_fields_compatibility(LttEventType *event_type1,
214// LttEventType *event_type2,
215// LttField *field1, LttField *field2);
216
217gint64 ltt_get_int(gboolean reverse_byte_order, gint size, void *data);
218
219guint64 ltt_get_uint(gboolean reverse_byte_order, gint size, void *data);
220
221LttTime ltt_interpolate_time_from_tsc(LttTracefile *tf, guint64 tsc);
222
223#endif // TRACE_H
This page took 0.02496 seconds and 4 git commands to generate.