genevent for 0.1.99.1
[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 24
25extern GQuark LTT_FACILITY_NAME_HEARTBEAT,
26 LTT_EVENT_NAME_HEARTBEAT;
27
1b82f325 28/* A trace is specified as a pathname to the directory containing all the
290dfc8c 29 associated data (control tracefiles, per cpu tracefiles, event
1b82f325 30 descriptions...).
31
32 When a trace is closed, all the associated facilities, types and fields
2a74fbf4 33 are released as well.
34
35 return value is NULL if there is an error when opening the trace.
36
37 */
1b82f325 38
45e14832 39LttTrace *ltt_trace_open(const gchar *pathname);
f7afe191 40
2a74fbf4 41/* copy reopens a trace
42 *
43 * return value NULL if error while opening the trace
44 */
f7afe191 45LttTrace *ltt_trace_copy(LttTrace *self);
1b82f325 46
3aee1200 47GQuark ltt_trace_name(LttTrace *t);
49bf71b5 48
290dfc8c 49void ltt_trace_close(LttTrace *t);
1b82f325 50
51
963b5f2d 52LttSystemDescription *ltt_trace_system_description(LttTrace *t);
1b82f325 53
1b82f325 54
290dfc8c 55/* Functions to discover the facilities in the trace. Once the number
56 of facilities is known, they may be accessed by position. Multiple
57 versions of a facility (same name, different checksum) have consecutive
58 positions. */
1b82f325 59
290dfc8c 60unsigned ltt_trace_facility_number(LttTrace *t);
1b82f325 61
290dfc8c 62LttFacility *ltt_trace_facility_get(LttTrace *t, unsigned i);
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
3aee1200 83GQuark ltt_tracefile_name(LttTracefile *tf);
1b82f325 84
85
80da81ad 86/* Get the number of blocks in the tracefile */
87
88unsigned ltt_tracefile_block_number(LttTracefile *tf);
89
90
1b82f325 91/* Seek to the first event of the trace with time larger or equal to time */
92
3aee1200 93int ltt_tracefile_seek_time(LttTracefile *t, LttTime time);
1b82f325 94
80da81ad 95/* Seek to the first event with position equal or larger to ep */
96
3aee1200 97int ltt_tracefile_seek_position(LttTracefile *t,
04b44e05 98 const LttEventPosition *ep);
1b82f325 99
100/* Read the next event */
101
3aee1200 102int ltt_tracefile_read(LttTracefile *t);
a5dcde2f 103
3aee1200 104/* ltt_tracefile_read cut down in pieces */
105int ltt_tracefile_read_seek(LttTracefile *t);
106int ltt_tracefile_read_update_event(LttTracefile *t);
107int ltt_tracefile_read_op(LttTracefile *t);
a5dcde2f 108
3aee1200 109/* open tracefile */
a5dcde2f 110
3aee1200 111gint ltt_tracefile_open(LttTrace *t, gchar * fileName, LttTracefile *tf);
a5dcde2f 112
a5dcde2f 113/* get the data type size and endian type of the local machine */
114
115void getDataEndianType(LttArchSize * size, LttArchEndian * endian);
116
117/* get an integer number */
3aee1200 118gint64 get_int(gboolean reverse_byte_order, gint size, void *data);
a5dcde2f 119
120/* get the node name of the system */
121
45e14832 122gchar * ltt_trace_system_description_node_name (LttSystemDescription * s);
a5dcde2f 123
124
125/* get the domain name of the system */
126
45e14832 127gchar * ltt_trace_system_description_domain_name (LttSystemDescription * s);
a5dcde2f 128
129
130/* get the description of the system */
131
45e14832 132gchar * ltt_trace_system_description_description (LttSystemDescription * s);
a5dcde2f 133
134
135/* get the start time of the trace */
136
137LttTime ltt_trace_system_description_trace_start_time(LttSystemDescription *s);
138
18206708 139/* copy tracefile info over another. Used for sync. */
140LttTracefile *ltt_tracefile_new();
141void ltt_tracefile_destroy(LttTracefile *tf);
142void ltt_tracefile_copy(LttTracefile *dest, const LttTracefile *src);
143
45e14832 144void get_absolute_pathname(const gchar *pathname, gchar * abs_pathname);
18206708 145
77175651 146GData *ltt_trace_get_tracefiles_groups(LttTrace *trace);
147
148typedef void (*ForEachTraceFileFunc)(LttTracefile *tf, gpointer func_args);
149
150struct compute_tracefile_group_args {
151 ForEachTraceFileFunc func;
152 gpointer func_args;
153};
154
155void compute_tracefile_group(GArray *group,
156 struct compute_tracefile_group_args args);
157
158LttFacility *ltt_trace_get_facility_by_num(LttTrace *t, guint num);
159
3aee1200 160
77175651 161gint check_fields_compatibility(LttEventType *event_type1,
162 LttEventType *event_type2,
163 LttField *field1, LttField *field2);
3aee1200 164
1b82f325 165#endif // TRACE_H
This page took 0.039375 seconds and 4 git commands to generate.