update
[lttv.git] / ltt / branches / poly / ltt / ltt-private.h
CommitLineData
449cb9d7 1/* This file is part of the Linux Trace Toolkit viewer
2 * Copyright (C) 2003-2004 Xiangxiu Yang
1b44b0b5 3 * 2006 Mathieu Desnoyers
449cb9d7 4 *
1b44b0b5 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.
449cb9d7 8 *
1b44b0b5 9 * This library is distributed in the hope that it will be useful,
449cb9d7 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
1b44b0b5 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
449cb9d7 13 *
1b44b0b5 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.
449cb9d7 18 */
19
fcdf0ec2 20#ifndef LTT_PRIVATE_H
21#define LTT_PRIVATE_H
22
858bd80a 23#include <glib.h>
cbd41522 24#include <sys/types.h>
fcdf0ec2 25#include <ltt/ltt.h>
3b10b765 26#include <endian.h>
e3247aa5 27
eed2ef37 28#ifndef max
29#define max(a,b) ((a)>(b)?(a):(b))
30#endif
31
2312de30 32#ifndef min
33#define min(a,b) ((a)<(b)?(a):(b))
34#endif
35
36
eed2ef37 37
3aee1200 38#define LTT_MAGIC_NUMBER 0x00D6B7ED
39#define LTT_REV_MAGIC_NUMBER 0xEDB7D600
40
41#define NSEC_PER_USEC 1000
42
cbd41522 43#define LTT_PACKED_STRUCT __attribute__ ((packed))
44
3aee1200 45/* Hardcoded facilities */
46#define LTT_FACILITY_CORE 0
3b10b765 47
48/* Byte ordering */
49#define LTT_GET_BO(t) ((t)->reverse_bo)
50
51#define LTT_HAS_FLOAT(t) ((t)->float_word_order!=0)
52#define LTT_GET_FLOAT_BO(t) \
53 (((t)->float_word_order==__BYTE_ORDER)?0:1)
54
f104d082 55#define SEQUENCE_AVG_ELEMENTS 1000
56
3aee1200 57/* Hardcoded core events */
58enum ltt_core_events {
59 LTT_EVENT_FACILITY_LOAD,
60 LTT_EVENT_FACILITY_UNLOAD,
b77d1b57 61 LTT_EVENT_HEARTBEAT,
d1bb700c 62 LTT_EVENT_HEARTBEAT_FULL,
b77d1b57 63 LTT_EVENT_STATE_DUMP_FACILITY_LOAD
3aee1200 64};
65
66
67#if 0
e3247aa5 68/* enumeration definition */
69
70typedef enum _BuildinEvent{
71 TRACE_FACILITY_LOAD = 0,
72 TRACE_BLOCK_START = 17,
73 TRACE_BLOCK_END = 18,
0d7aac52 74 TRACE_TIME_HEARTBEAT= 19
e3247aa5 75} BuildinEvent;
fcdf0ec2 76
7c6b3cd7 77
78/* structure definition */
79
e3247aa5 80typedef struct _FacilityLoad{
45e14832 81 gchar * name;
e3247aa5 82 LttChecksum checksum;
cbd41522 83 guint32 base_code;
e3247aa5 84} LTT_PACKED_STRUCT FacilityLoad;
85
86typedef struct _BlockStart {
3aee1200 87 LttTime time; //Time stamp of this block
e3247aa5 88 LttCycleCount cycle_count; //cycle count of the event
cbd41522 89 guint32 block_id; //block id
e3247aa5 90} LTT_PACKED_STRUCT BlockStart;
91
92typedef struct _BlockEnd {
3aee1200 93 LttTime time; //Time stamp of this block
e3247aa5 94 LttCycleCount cycle_count; //cycle count of the event
cbd41522 95 guint32 block_id; //block id
e3247aa5 96} LTT_PACKED_STRUCT BlockEnd;
3aee1200 97#endif //0
98
99
100typedef guint8 uint8_t;
101typedef guint16 uint16_t;
102typedef guint32 uint32_t;
103typedef guint64 uint64_t;
104
16fcbb80 105/* Hardcoded facility load event : this plus an preceding "name" string */
3aee1200 106struct LttFacilityLoad {
107 guint32 checksum;
108 guint32 id;
c88ddec5 109 guint32 int_size;
3aee1200 110 guint32 long_size;
111 guint32 pointer_size;
112 guint32 size_t_size;
c88ddec5 113 guint32 has_alignment;
16fcbb80 114} LTT_PACKED_STRUCT;
3aee1200 115
116struct LttFacilityUnload {
117 guint32 id;
16fcbb80 118} LTT_PACKED_STRUCT;
3aee1200 119
120struct LttStateDumpFacilityLoad {
121 guint32 checksum;
122 guint32 id;
c88ddec5 123 guint32 int_size;
3aee1200 124 guint32 long_size;
125 guint32 pointer_size;
126 guint32 size_t_size;
c88ddec5 127 guint32 has_alignment;
16fcbb80 128} LTT_PACKED_STRUCT;
e3247aa5 129
78f79181 130/* Empty event */
e3247aa5 131typedef struct _TimeHeartbeat {
e3247aa5 132} LTT_PACKED_STRUCT TimeHeartbeat;
133
d1bb700c 134typedef struct _TimeHeartbeatFull {
135 guint64 tsc;
136} LTT_PACKED_STRUCT TimeHeartbeatFull;
137
3aee1200 138struct ltt_event_header_hb {
139 uint32_t timestamp;
140 unsigned char facility_id;
141 unsigned char event_id;
142 uint16_t event_size;
16fcbb80 143} LTT_PACKED_STRUCT;
3aee1200 144
145struct ltt_event_header_nohb {
146 uint64_t timestamp;
147 unsigned char facility_id;
148 unsigned char event_id;
149 uint16_t event_size;
16fcbb80 150} LTT_PACKED_STRUCT;
3aee1200 151
b7576a11 152
153/* Block and trace headers */
154
155struct ltt_trace_header_any {
156 uint32_t magic_number;
157 uint32_t arch_type;
158 uint32_t arch_variant;
159 uint32_t float_word_order;
160 uint8_t arch_size;
161 uint8_t major_version;
162 uint8_t minor_version;
163 uint8_t flight_recorder;
164 uint8_t has_heartbeat;
165 uint8_t has_alignment; /* Event header alignment */
c88ddec5 166 uint32_t freq_scale;
b7576a11 167} LTT_PACKED_STRUCT;
168
169
170/* For version 0.3 */
171
172struct ltt_trace_header_0_3 {
3aee1200 173 uint32_t magic_number;
174 uint32_t arch_type;
175 uint32_t arch_variant;
79257ba5 176 uint32_t float_word_order;
3aee1200 177 uint8_t arch_size;
b7576a11 178 uint8_t major_version;
179 uint8_t minor_version;
180 uint8_t flight_recorder;
181 uint8_t has_heartbeat;
182 uint8_t has_alignment; /* Event header alignment */
c88ddec5 183 uint32_t freq_scale;
16fcbb80 184} LTT_PACKED_STRUCT;
3aee1200 185
cb310b57 186/* For version 0.7 */
986e2a7c 187
cb310b57 188struct ltt_trace_header_0_7 {
e939e5b2 189 uint32_t magic_number;
190 uint32_t arch_type;
191 uint32_t arch_variant;
192 uint32_t float_word_order;
193 uint8_t arch_size;
194 uint8_t major_version;
195 uint8_t minor_version;
196 uint8_t flight_recorder;
197 uint8_t has_heartbeat;
198 uint8_t has_alignment; /* Event header alignment */
cb310b57 199 uint32_t freq_scale;
e939e5b2 200 uint64_t start_freq;
201 uint64_t start_tsc;
202 uint64_t start_monotonic;
e939e5b2 203 uint64_t start_time_sec;
204 uint64_t start_time_usec;
205} LTT_PACKED_STRUCT;
206
d1bb700c 207/* For version 0.8 */
208
209struct ltt_trace_header_0_8 {
210 uint32_t magic_number;
211 uint32_t arch_type;
212 uint32_t arch_variant;
213 uint32_t float_word_order;
214 uint8_t arch_size;
215 uint8_t major_version;
216 uint8_t minor_version;
217 uint8_t flight_recorder;
218 uint8_t has_heartbeat;
219 uint8_t has_alignment; /* Event header alignment */
220 uint8_t tsc_lsb_truncate;
221 uint8_t tscbits;
222 uint32_t freq_scale;
223 uint64_t start_freq;
224 uint64_t start_tsc;
225 uint64_t start_monotonic;
226 uint64_t start_time_sec;
227 uint64_t start_time_usec;
228} LTT_PACKED_STRUCT;
229
e939e5b2 230
3aee1200 231struct ltt_block_start_header {
232 struct {
3aee1200 233 uint64_t cycle_count;
986e2a7c 234 uint64_t freq;
3aee1200 235 } begin;
236 struct {
3aee1200 237 uint64_t cycle_count;
986e2a7c 238 uint64_t freq;
3aee1200 239 } end;
240 uint32_t lost_size; /* Size unused at the end of the buffer */
241 uint32_t buf_size; /* The size of this sub-buffer */
51551c6f 242 struct ltt_trace_header_any trace[0];
16fcbb80 243} LTT_PACKED_STRUCT;
3aee1200 244
e3247aa5 245
246struct _LttType{
f104d082 247// LTTV does not care about type names. Everything is a field.
248// GQuark type_name; //type name if it is a named type
45e14832 249 gchar * fmt;
f104d082 250 guint size;
e3247aa5 251 LttTypeEnum type_class; //which type
2312de30 252 GHashTable *enum_map; //maps enum labels to numbers.
880fded3 253 gint32 highest_value; //For enum
254 gint32 lowest_value; //For enum
f104d082 255 GArray *fields; // Array of LttFields, for array, sequence, union, struct.
256 GData *fields_by_name;
c88ddec5 257 guint network; // Is the type in network byte order ?
e8548639 258 //part added by gaby for fmt:
259 char *header;
260 char *separator;
261 char *footer;
7c6b3cd7 262};
263
e3247aa5 264struct _LttEventType{
3aee1200 265 GQuark name;
45e14832 266 gchar * description;
f104d082 267 guint index; //id of the event type within the facility
e3247aa5 268 LttFacility * facility; //the facility that contains the event type
f104d082 269 GArray * fields; //event's fields (LttField)
270 GData *fields_by_name;
dd3a6d39 271 int has_compact_data; //event header contains compact data (first field)
7c6b3cd7 272};
273
3aee1200 274/* Structure LttEvent and LttEventPosition must begin with the _exact_ same
275 * fields in the exact same order. LttEventPosition is a parent of LttEvent. */
c02ea99f 276struct _LttEvent{
3aee1200 277
278 /* Begin of LttEventPosition fields */
279 LttTracefile *tracefile;
280 unsigned int block;
eed2ef37 281 unsigned int offset;
3aee1200 282
283 /* Timekeeping */
284 uint64_t tsc; /* Current timestamp counter */
285
286 /* End of LttEventPosition fields */
287
c88ddec5 288 guint32 timestamp; /* truncated timestamp */
3aee1200 289
c88ddec5 290 unsigned char facility_id; /* facility ID are never reused. */
3aee1200 291 unsigned char event_id;
292
c02ea99f 293 LttTime event_time;
3aee1200 294
c02ea99f 295 void * data; //event data
77175651 296 guint data_size;
b77d1b57 297 guint event_size; //event_size field of the header :
298 //used to verify data_size from facility.
dd3a6d39 299 uint32_t compact_data;
3aee1200 300
c02ea99f 301 int count; //the number of overflow of cycle count
2dee981d 302 gint64 overflow_nsec; //precalculated nsec for overflows
3aee1200 303};
dfb73233 304
3aee1200 305struct _LttEventPosition{
306 LttTracefile *tracefile;
307 unsigned int block;
eed2ef37 308 unsigned int offset;
3aee1200 309
310 /* Timekeeping */
311 uint64_t tsc; /* Current timestamp counter */
c02ea99f 312};
313
314
3aee1200 315enum field_status { FIELD_UNKNOWN, FIELD_VARIABLE, FIELD_FIXED };
316
e3247aa5 317struct _LttField{
f104d082 318 GQuark name;
319 gchar *description;
320 LttType field_type; //field type
321
322 off_t offset_root; //offset from the root
323 enum field_status fixed_root; //offset fixed according to the root
324
325 guint field_size; // size of the field
326 // Only if field type size is set to 0
327 // (it's variable), then the field_size should be
328 // dynamically calculated while reading the trace
329 // and put here. Otherwise, the field_size always
d1bb700c 330 // equals the type size.
f104d082 331 off_t array_offset; // offset of the beginning of the array (for array
332 // and sequences)
333 GArray * dynamic_offsets; // array of offsets calculated dynamically at
334 // each event for sequences and arrays that
335 // contain variable length fields.
7c6b3cd7 336};
337
e3247aa5 338struct _LttFacility{
3aee1200 339 LttTrace *trace;
3aee1200 340 GQuark name;
341 guint32 checksum; //checksum of the facility
342 guint32 id; //id of the facility
343
f104d082 344 guint32 int_size;
cb03932a 345 guint32 long_size;
f104d082 346 guint32 pointer_size;
3aee1200 347 guint32 size_t_size;
348 guint32 alignment;
349
3aee1200 350 GArray *events;
351 GData *events_by_name;
f104d082 352 // not necessary in LTTV GData *named_types;
3aee1200 353
354 unsigned char exists; /* 0 does not exist, 1 exists */
7c6b3cd7 355};
356
3aee1200 357typedef struct _LttBuffer {
358 void * head;
359 unsigned int index;
360
361 struct {
362 LttTime timestamp;
363 uint64_t cycle_count;
986e2a7c 364 uint64_t freq; /* Frequency in khz */
3aee1200 365 } begin;
366 struct {
367 LttTime timestamp;
368 uint64_t cycle_count;
986e2a7c 369 uint64_t freq; /* Frequency in khz */
3aee1200 370 } end;
371 uint32_t lost_size; /* Size unused at the end of the buffer */
372
373 /* Timekeeping */
374 uint64_t tsc; /* Current timestamp counter */
986e2a7c 375 uint64_t freq; /* Frequency in khz */
791dffa6 376 //double nsecs_per_cycle; /* Precalculated from freq */
377 guint32 cyc2ns_scale;
3aee1200 378} LttBuffer;
379
e3247aa5 380struct _LttTracefile{
3aee1200 381 gboolean cpu_online; //is the cpu online ?
d3d34f49 382 GQuark long_name; //tracefile complete filename
3aee1200 383 GQuark name; //tracefile name
384 guint cpu_num; //cpu number of the tracefile
c88ddec5 385 guint tid; //Usertrace tid, else 0
386 guint pgid; //Usertrace pgid, else 0
387 guint64 creation; //Usertrace creation, else 0
e3247aa5 388 LttTrace * trace; //trace containing the tracefile
389 int fd; //file descriptor
390 off_t file_size; //file size
f628823c 391 //unsigned block_size; //block_size
f104d082 392 guint num_blocks; //number of blocks in the file
3aee1200 393 gboolean reverse_bo; //must we reverse byte order ?
3b10b765 394 gboolean float_word_order; //what is the byte order of floats ?
c88ddec5 395 size_t has_alignment; //alignment of events in the tracefile.
396 // 0 or the architecture size in bytes.
3aee1200 397
90440c06 398 guint8 has_heartbeat;
823820eb 399 size_t buffer_header_size;
d1bb700c 400 int compact; //compact tracefile ?
401 uint8_t tsc_lsb_truncate;
402 uint8_t tscbits;
403 uint8_t tsc_msb_cutoff;
404 uint64_t tsc_mask;
405 uint64_t tsc_mask_next_bit; //next MSB after the mask
823820eb 406
c88ddec5 407 /* Current event */
3aee1200 408 LttEvent event; //Event currently accessible in the trace
409
c88ddec5 410 /* Current block */
3aee1200 411 LttBuffer buffer; //current buffer
412 guint32 buf_size; /* The size of blocks */
413
c88ddec5 414 /* Time flow */
3aee1200 415 //unsigned int count; //the number of overflow of cycle count
416 //double nsec_per_cycle; //Nsec per cycle
417 //TimeHeartbeat * last_heartbeat; //last heartbeat
418
887208b7 419 //LttCycleCount cycles_per_nsec_reciprocal; // Optimisation for speed
3aee1200 420 //void * last_event_pos;
7c6b3cd7 421
3aee1200 422 //LttTime prev_block_end_time; //the end time of previous block
423 //LttTime prev_event_time; //the time of the previous event
424 //LttCycleCount pre_cycle_count; //previous cycle count of the event
e3247aa5 425};
7c6b3cd7 426
3aee1200 427struct _LttTrace{
428 GQuark pathname; //the pathname of the trace
429 //LttSystemDescription * system_description;//system description
430
431 GArray *facilities_by_num; /* fac_id as index in array */
432 GData *facilities_by_name; /* fac name (GQuark) as index */
433 /* Points to array of fac_id of all the
b56dcdf2 434 * facilities that has this name. */
435 guint num_cpu;
3aee1200 436
16fcbb80 437 guint32 arch_type;
438 guint32 arch_variant;
439 guint8 arch_size;
3aee1200 440 guint8 ltt_major_version;
441 guint8 ltt_minor_version;
442 guint8 flight_recorder;
c88ddec5 443 guint32 freq_scale;
791dffa6 444 uint64_t start_freq;
445 uint64_t start_tsc;
986e2a7c 446 uint64_t start_monotonic;
447 LttTime start_time;
88612d17 448 LttTime start_time_from_tsc;
d1bb700c 449 GArray *compact_facilities;
dd3a6d39 450 uint8_t compact_event_bits;
3aee1200 451
452 GData *tracefiles; //tracefiles groups
d2007fbd 453 /* Support for markers */
454 GArray *markers; //indexed by marker ID
455 GHashTable *markers_hash; //indexed by name hash
80da81ad 456};
7c6b3cd7 457
a5dcde2f 458/* The characteristics of the system on which the trace was obtained
459 is described in a LttSystemDescription structure. */
460
461struct _LttSystemDescription {
45e14832 462 gchar *description;
463 gchar *node_name;
464 gchar *domain_name;
a5dcde2f 465 unsigned nb_cpu;
466 LttArchSize size;
467 LttArchEndian endian;
45e14832 468 gchar *kernel_name;
469 gchar *kernel_release;
470 gchar *kernel_version;
471 gchar *machine;
472 gchar *processor;
473 gchar *hardware_platform;
474 gchar *operating_system;
a5dcde2f 475 LttTime trace_start;
476 LttTime trace_end;
477};
478
7c6b3cd7 479/*****************************************************************************
480 macro for size of some data types
481 *****************************************************************************/
3aee1200 482// alignment -> dynamic!
483
484//#define TIMESTAMP_SIZE sizeof(guint32)
485//#define EVENT_ID_SIZE sizeof(guint16)
486//#define EVENT_HEADER_SIZE (TIMESTAMP_SIZE + EVENT_ID_SIZE)
487
7c6b3cd7 488
83e160f2 489off_t get_alignment(LttField *field);
490
f104d082 491/* Calculate the offset needed to align the type.
492 * If has_alignment is 0, alignment is disactivated.
493 * else, the function returns the offset needed to
494 * align align_drift on the has_alignment value (should be
495 * the size of the architecture). */
496static inline unsigned int ltt_align(size_t align_drift,
83e160f2 497 size_t size_of_type,
498 size_t has_alignment)
f104d082 499{
c88ddec5 500 size_t alignment = min(has_alignment, size_of_type);
501
502 if(!has_alignment) return 0;
503
504 g_assert(size_of_type != 0);
505 return ((alignment - align_drift) & (alignment-1));
f104d082 506}
507
f104d082 508
fcdf0ec2 509#endif /* LTT_PRIVATE_H */
This page took 0.08044 seconds and 4 git commands to generate.