Adapt to the new format (several named control files). Provide a way to
[lttv.git] / ltt / branches / poly / include / ltt / trace.h
1 #ifndef TRACEFILE_H
2 #define TRACEFILE_H
3
4 #include <ltt/ltt.h>
5
6 /* A trace is specified as a pathname to the directory containing all the
7 associated data (control tracefiles, per cpu tracefiles, event
8 descriptions...).
9
10 When a trace is closed, all the associated facilities, types and fields
11 are released as well. */
12
13 LttTrace *ltt_trace_open(char *pathname);
14
15 void ltt_trace_close(LttTrace *t);
16
17
18 /* The characteristics of the system on which the trace was obtained
19 is described in a LttSystemDescription structure. */
20
21 typedef struct _LttSystemDescription {
22 char *description;
23 char *node_name;
24 char *domainname;
25 unsigned nb_cpu;
26 LttArchSize size;
27 LttArchEndian endian;
28 char *kernel_name;
29 char *kernel_release;
30 char *kernel_version;
31 char *machine;
32 char *processor;
33 char *hardware_platform;
34 char *operating_system;
35 unsigned ltt_major_version;
36 unsigned ltt_minor_version;
37 unsigned ltt_block_size;
38 LttTime trace_start;
39 LttTime trace_end;
40 } LttSystemDescription;
41
42 LttSystemDescription *ltt_trace_system_description(LttTrace *t)
43
44
45 /* Functions to discover the facilities in the trace. Once the number
46 of facilities is known, they may be accessed by position. Multiple
47 versions of a facility (same name, different checksum) have consecutive
48 positions. */
49
50 unsigned ltt_trace_facility_number(LttTrace *t);
51
52 LttFacility *ltt_trace_facility_get(LttTrace *t, unsigned i);
53
54
55 /* Look for a facility by name. It returns the number of facilities found
56 and sets the position argument to the first found. Returning 0, the named
57 facility is unknown, returning 1, the named facility is at the specified
58 position, returning n, the facilities are from position to
59 position + n - 1. */
60
61 unsigned ltt_trace_facility_find(LttTrace *t, char *name, unsigned *position);
62
63
64 /* Functions to discover all the event types in the trace */
65
66 unsigned ltt_trace_eventtype_number(LttTrace *t);
67
68 LttEventType *ltt_trace_eventtype_get(LttTrace *t, unsigned i);
69
70
71 /* There is one "per cpu" tracefile for each CPU, numbered from 0 to
72 the maximum number of CPU in the system. When the number of CPU installed
73 is less than the maximum, some positions are unused. There are also a
74 number of "control" tracefiles (facilities, interrupts...). */
75
76 unsigned ltt_trace_control_tracefile_number(LttTrace *t);
77
78 unsigned ltt_trace_per_cpu_tracefile_number(LttTrace *t);
79
80
81 /* It is possible to search for the tracefiles by name or by CPU position.
82 The index within the tracefiles of the same type is returned if found
83 and a negative value otherwise. */
84
85 int ltt_trace_control_tracefile_find(LttTrace *t, char *name);
86
87 int ltt_trace_per_cpu_tracefile_find(LttTrace *t, unsigned i);
88
89
90 /* Get a specific tracefile */
91
92 LttTracefile *ltt_trace_control_tracefile_get(LttTrace *t, unsigned i);
93
94 LttTracefile *ltt_trace_per_cpu_tracefile_get(LttTrace *t, unsigned i);
95
96
97 /* Get the name of a tracefile */
98
99 char *ltt_tracefile_name(LttTracefile *tf);
100
101
102 /* Seek to the first event of the trace with time larger or equal to time */
103
104 void ltt_tracefile_seek_time(LttTracefile *t, LttTime time);
105
106
107 /* Read the next event */
108
109 LttEvent *ltt_tracefile_read(LttTracefile *t);
110
111 #endif // TRACE_H
This page took 0.033085 seconds and 4 git commands to generate.