ltt_trace_read with external LttEvent
[lttv.git] / ltt / branches / poly / ltt / ltt.h
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
19 #ifndef LTT_H
20 #define LTT_H
21
22 #include <ltt/time.h>
23 #include <glib.h>
24
25 /* A trace is associated with a tracing session run on a single, possibly
26 multi-cpu, system. It is defined as a pathname to a directory containing
27 all the relevant trace files. All the tracefiles for a trace were
28 generated in a single system for the same time period by the same
29 trace daemon. They simply contain different events. Typically control
30 tracefiles contain the important events (process creations and registering
31 tracing facilities) for all CPUs, and one file for each CPU contains all
32 the events for that CPU. All the tracefiles within the same trace directory
33 then use the exact same id numbers for event types.
34
35 A tracefile (LttTracefile) contains a list of events (LttEvent) sorted
36 by time for each CPU; events from different CPUs may be slightly out of
37 order, especially using the (possibly drifting) cycle counters as
38 time unit.
39
40 A facility is a list of event types (LttEventType), declared in a special
41 eventdefs file. A corresponding checksum differentiates different
42 facilities which would have the same name but a different content
43 (e.g., different versions). The files are stored within the trace
44 directory and are accessed automatically upon opening a trace.
45 The list of facilities (and associated checksum) used in a trace
46 must be known in order to properly decode the contained events. An event
47 is stored in the "facilities" control tracefile to denote each different
48 facility used.
49
50 Event types (LttEventType) refer to data types (LttType) describing
51 their content. The data types supported are integer and unsigned integer
52 (of various length), enumerations (a special form of unsigned integer),
53 floating point (of various length), fixed size arrays, sequence
54 (variable sized arrays), structures and null terminated strings.
55 The elements of arrays and sequences, and the data members for
56 structures, may be of any nested data type (LttType).
57
58 An LttField is a special object to denote a specific, possibly nested,
59 field within an event type. Suppose an event type socket_connect is a
60 structure containing two data members, source and destination, of type
61 socket_address. Type socket_address contains two unsigned integer
62 data members, ip and port. An LttField is different from a data type
63 structure member since it can denote a specific nested field, like the
64 source port, and store associated access information (byte offset within
65 the event data). The LttField objects are trace specific since the
66 contained information (byte offsets) may vary with the architecture
67 associated to the trace. */
68
69 typedef struct _LttTrace LttTrace;
70
71 typedef struct _LttTracefile LttTracefile;
72
73 typedef struct _LttFacility LttFacility;
74
75 typedef struct _LttEventType LttEventType;
76
77 typedef struct _LttType LttType;
78
79 typedef struct _LttField LttField;
80
81 typedef struct _LttEvent LttEvent;
82
83 typedef struct _LttSystemDescription LttSystemDescription;
84
85
86 /* Checksums are used to differentiate facilities which have the same name
87 but differ. */
88
89 typedef unsigned long LttChecksum;
90
91
92 /* Events are usually stored with the easily obtained CPU clock cycle count,
93 ltt_cycle_count. This can be converted to the real time value, LttTime,
94 using linear interpolation between regularly sampled values (e.g. a few
95 times per second) of the real time clock with their corresponding
96 cycle count values. */
97
98
99 typedef struct _TimeInterval{
100 LttTime start_time;
101 LttTime end_time;
102 } TimeInterval;
103
104
105 typedef guint64 LttCycleCount;
106
107
108 /* Event positions are used to seek within a tracefile based on
109 the block number and event position within the block. */
110
111 typedef struct _LttEventPosition LttEventPosition;
112
113
114 /* Differences between architectures include word sizes, endianess,
115 alignment, floating point format and calling conventions. For a
116 packed binary trace, endianess and size matter, assuming that the
117 floating point format is standard (and is seldom used anyway). */
118
119 typedef enum _LttArchSize
120 { LTT_LP32, LTT_ILP32, LTT_LP64, LTT_ILP64, LTT_UNKNOWN
121 } LttArchSize;
122
123
124 typedef enum _LttArchEndian
125 { LTT_LITTLE_ENDIAN, LTT_BIG_ENDIAN
126 } LttArchEndian;
127
128 typedef enum _LttTypeEnum
129 { LTT_INT, LTT_UINT, LTT_FLOAT, LTT_STRING, LTT_ENUM, LTT_ARRAY,
130 LTT_SEQUENCE, LTT_STRUCT, LTT_UNION
131 } LttTypeEnum;
132
133
134 #endif // LTT_H
This page took 0.031989 seconds and 4 git commands to generate.