remove event.c and type.c
[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;
3c165eaf 140 uint16_t event_id;
3aee1200 141 uint16_t event_size;
16fcbb80 142} LTT_PACKED_STRUCT;
3aee1200 143
144struct ltt_event_header_nohb {
145 uint64_t timestamp;
3c165eaf 146 uint16_t event_id;
3aee1200 147 uint16_t event_size;
16fcbb80 148} LTT_PACKED_STRUCT;
3aee1200 149
b7576a11 150
151/* Block and trace headers */
152
153struct ltt_trace_header_any {
154 uint32_t magic_number;
155 uint32_t arch_type;
156 uint32_t arch_variant;
157 uint32_t float_word_order;
158 uint8_t arch_size;
159 uint8_t major_version;
160 uint8_t minor_version;
161 uint8_t flight_recorder;
162 uint8_t has_heartbeat;
163 uint8_t has_alignment; /* Event header alignment */
c88ddec5 164 uint32_t freq_scale;
b7576a11 165} LTT_PACKED_STRUCT;
166
3c165eaf 167struct ltt_trace_header_1_0 {
d1bb700c 168 uint32_t magic_number;
169 uint32_t arch_type;
170 uint32_t arch_variant;
171 uint32_t float_word_order;
172 uint8_t arch_size;
173 uint8_t major_version;
174 uint8_t minor_version;
175 uint8_t flight_recorder;
176 uint8_t has_heartbeat;
177 uint8_t has_alignment; /* Event header alignment */
178 uint8_t tsc_lsb_truncate;
179 uint8_t tscbits;
180 uint32_t freq_scale;
181 uint64_t start_freq;
182 uint64_t start_tsc;
183 uint64_t start_monotonic;
184 uint64_t start_time_sec;
185 uint64_t start_time_usec;
186} LTT_PACKED_STRUCT;
187
e939e5b2 188
3aee1200 189struct ltt_block_start_header {
190 struct {
3aee1200 191 uint64_t cycle_count;
986e2a7c 192 uint64_t freq;
3aee1200 193 } begin;
194 struct {
3aee1200 195 uint64_t cycle_count;
986e2a7c 196 uint64_t freq;
3aee1200 197 } end;
198 uint32_t lost_size; /* Size unused at the end of the buffer */
199 uint32_t buf_size; /* The size of this sub-buffer */
51551c6f 200 struct ltt_trace_header_any trace[0];
16fcbb80 201} LTT_PACKED_STRUCT;
3aee1200 202
e3247aa5 203
14b1ac27 204#if 0
e3247aa5 205struct _LttType{
f104d082 206// LTTV does not care about type names. Everything is a field.
207// GQuark type_name; //type name if it is a named type
45e14832 208 gchar * fmt;
f104d082 209 guint size;
e3247aa5 210 LttTypeEnum type_class; //which type
2312de30 211 GHashTable *enum_map; //maps enum labels to numbers.
880fded3 212 gint32 highest_value; //For enum
213 gint32 lowest_value; //For enum
f104d082 214 GArray *fields; // Array of LttFields, for array, sequence, union, struct.
215 GData *fields_by_name;
c88ddec5 216 guint network; // Is the type in network byte order ?
e8548639 217 //part added by gaby for fmt:
218 char *header;
219 char *separator;
220 char *footer;
7c6b3cd7 221};
14b1ac27 222#endif //0
7c6b3cd7 223
d7913a10 224#if 0
e3247aa5 225struct _LttEventType{
3aee1200 226 GQuark name;
45e14832 227 gchar * description;
f104d082 228 guint index; //id of the event type within the facility
3c165eaf 229 struct marker_info *info;
f104d082 230 GArray * fields; //event's fields (LttField)
231 GData *fields_by_name;
dd3a6d39 232 int has_compact_data; //event header contains compact data (first field)
7c6b3cd7 233};
d7913a10 234#endif //0
7c6b3cd7 235
3aee1200 236/* Structure LttEvent and LttEventPosition must begin with the _exact_ same
237 * fields in the exact same order. LttEventPosition is a parent of LttEvent. */
c02ea99f 238struct _LttEvent{
3aee1200 239
240 /* Begin of LttEventPosition fields */
241 LttTracefile *tracefile;
242 unsigned int block;
eed2ef37 243 unsigned int offset;
3aee1200 244
245 /* Timekeeping */
246 uint64_t tsc; /* Current timestamp counter */
247
248 /* End of LttEventPosition fields */
249
c88ddec5 250 guint32 timestamp; /* truncated timestamp */
3aee1200 251
3c165eaf 252 guint16 event_id;
3aee1200 253
c02ea99f 254 LttTime event_time;
3aee1200 255
c02ea99f 256 void * data; //event data
77175651 257 guint data_size;
b77d1b57 258 guint event_size; //event_size field of the header :
259 //used to verify data_size from facility.
dd3a6d39 260 uint32_t compact_data;
3aee1200 261
c02ea99f 262 int count; //the number of overflow of cycle count
2dee981d 263 gint64 overflow_nsec; //precalculated nsec for overflows
3aee1200 264};
dfb73233 265
3aee1200 266struct _LttEventPosition{
267 LttTracefile *tracefile;
268 unsigned int block;
eed2ef37 269 unsigned int offset;
3aee1200 270
271 /* Timekeeping */
272 uint64_t tsc; /* Current timestamp counter */
c02ea99f 273};
274
275
3aee1200 276enum field_status { FIELD_UNKNOWN, FIELD_VARIABLE, FIELD_FIXED };
277
14b1ac27 278#if 0
e3247aa5 279struct _LttField{
f104d082 280 GQuark name;
281 gchar *description;
282 LttType field_type; //field type
283
284 off_t offset_root; //offset from the root
285 enum field_status fixed_root; //offset fixed according to the root
286
287 guint field_size; // size of the field
288 // Only if field type size is set to 0
289 // (it's variable), then the field_size should be
290 // dynamically calculated while reading the trace
291 // and put here. Otherwise, the field_size always
d1bb700c 292 // equals the type size.
f104d082 293 off_t array_offset; // offset of the beginning of the array (for array
294 // and sequences)
295 GArray * dynamic_offsets; // array of offsets calculated dynamically at
296 // each event for sequences and arrays that
297 // contain variable length fields.
7c6b3cd7 298};
14b1ac27 299#endif //0
3c165eaf 300#if 0
e3247aa5 301struct _LttFacility{
3aee1200 302 LttTrace *trace;
3aee1200 303 GQuark name;
304 guint32 checksum; //checksum of the facility
305 guint32 id; //id of the facility
306
f104d082 307 guint32 int_size;
cb03932a 308 guint32 long_size;
f104d082 309 guint32 pointer_size;
3aee1200 310 guint32 size_t_size;
311 guint32 alignment;
312
3aee1200 313 GArray *events;
314 GData *events_by_name;
f104d082 315 // not necessary in LTTV GData *named_types;
3aee1200 316
317 unsigned char exists; /* 0 does not exist, 1 exists */
7c6b3cd7 318};
3c165eaf 319#endif //0
7c6b3cd7 320
3aee1200 321typedef struct _LttBuffer {
322 void * head;
323 unsigned int index;
324
325 struct {
326 LttTime timestamp;
327 uint64_t cycle_count;
986e2a7c 328 uint64_t freq; /* Frequency in khz */
3aee1200 329 } begin;
330 struct {
331 LttTime timestamp;
332 uint64_t cycle_count;
986e2a7c 333 uint64_t freq; /* Frequency in khz */
3aee1200 334 } end;
335 uint32_t lost_size; /* Size unused at the end of the buffer */
336
337 /* Timekeeping */
338 uint64_t tsc; /* Current timestamp counter */
986e2a7c 339 uint64_t freq; /* Frequency in khz */
791dffa6 340 //double nsecs_per_cycle; /* Precalculated from freq */
341 guint32 cyc2ns_scale;
3aee1200 342} LttBuffer;
343
e3247aa5 344struct _LttTracefile{
3aee1200 345 gboolean cpu_online; //is the cpu online ?
d3d34f49 346 GQuark long_name; //tracefile complete filename
3aee1200 347 GQuark name; //tracefile name
348 guint cpu_num; //cpu number of the tracefile
c88ddec5 349 guint tid; //Usertrace tid, else 0
350 guint pgid; //Usertrace pgid, else 0
351 guint64 creation; //Usertrace creation, else 0
e3247aa5 352 LttTrace * trace; //trace containing the tracefile
353 int fd; //file descriptor
354 off_t file_size; //file size
f628823c 355 //unsigned block_size; //block_size
f104d082 356 guint num_blocks; //number of blocks in the file
3aee1200 357 gboolean reverse_bo; //must we reverse byte order ?
3b10b765 358 gboolean float_word_order; //what is the byte order of floats ?
c88ddec5 359 size_t has_alignment; //alignment of events in the tracefile.
360 // 0 or the architecture size in bytes.
3aee1200 361
90440c06 362 guint8 has_heartbeat;
823820eb 363 size_t buffer_header_size;
d1bb700c 364 int compact; //compact tracefile ?
365 uint8_t tsc_lsb_truncate;
366 uint8_t tscbits;
367 uint8_t tsc_msb_cutoff;
368 uint64_t tsc_mask;
369 uint64_t tsc_mask_next_bit; //next MSB after the mask
823820eb 370
c88ddec5 371 /* Current event */
3aee1200 372 LttEvent event; //Event currently accessible in the trace
373
c88ddec5 374 /* Current block */
3aee1200 375 LttBuffer buffer; //current buffer
376 guint32 buf_size; /* The size of blocks */
377
c88ddec5 378 /* Time flow */
3aee1200 379 //unsigned int count; //the number of overflow of cycle count
380 //double nsec_per_cycle; //Nsec per cycle
381 //TimeHeartbeat * last_heartbeat; //last heartbeat
382
887208b7 383 //LttCycleCount cycles_per_nsec_reciprocal; // Optimisation for speed
3aee1200 384 //void * last_event_pos;
7c6b3cd7 385
3aee1200 386 //LttTime prev_block_end_time; //the end time of previous block
387 //LttTime prev_event_time; //the time of the previous event
388 //LttCycleCount pre_cycle_count; //previous cycle count of the event
e3247aa5 389};
7c6b3cd7 390
3aee1200 391struct _LttTrace{
392 GQuark pathname; //the pathname of the trace
393 //LttSystemDescription * system_description;//system description
394
395 GArray *facilities_by_num; /* fac_id as index in array */
396 GData *facilities_by_name; /* fac name (GQuark) as index */
397 /* Points to array of fac_id of all the
b56dcdf2 398 * facilities that has this name. */
399 guint num_cpu;
3aee1200 400
16fcbb80 401 guint32 arch_type;
402 guint32 arch_variant;
403 guint8 arch_size;
3aee1200 404 guint8 ltt_major_version;
405 guint8 ltt_minor_version;
406 guint8 flight_recorder;
c88ddec5 407 guint32 freq_scale;
791dffa6 408 uint64_t start_freq;
409 uint64_t start_tsc;
986e2a7c 410 uint64_t start_monotonic;
411 LttTime start_time;
88612d17 412 LttTime start_time_from_tsc;
dd3a6d39 413 uint8_t compact_event_bits;
3aee1200 414
415 GData *tracefiles; //tracefiles groups
d2007fbd 416 /* Support for markers */
417 GArray *markers; //indexed by marker ID
418 GHashTable *markers_hash; //indexed by name hash
80da81ad 419};
7c6b3cd7 420
a5dcde2f 421/* The characteristics of the system on which the trace was obtained
422 is described in a LttSystemDescription structure. */
423
424struct _LttSystemDescription {
45e14832 425 gchar *description;
426 gchar *node_name;
427 gchar *domain_name;
a5dcde2f 428 unsigned nb_cpu;
429 LttArchSize size;
430 LttArchEndian endian;
45e14832 431 gchar *kernel_name;
432 gchar *kernel_release;
433 gchar *kernel_version;
434 gchar *machine;
435 gchar *processor;
436 gchar *hardware_platform;
437 gchar *operating_system;
a5dcde2f 438 LttTime trace_start;
439 LttTime trace_end;
440};
441
7c6b3cd7 442/*****************************************************************************
443 macro for size of some data types
444 *****************************************************************************/
3aee1200 445// alignment -> dynamic!
446
447//#define TIMESTAMP_SIZE sizeof(guint32)
448//#define EVENT_ID_SIZE sizeof(guint16)
449//#define EVENT_HEADER_SIZE (TIMESTAMP_SIZE + EVENT_ID_SIZE)
450
7c6b3cd7 451
83e160f2 452off_t get_alignment(LttField *field);
453
f104d082 454/* Calculate the offset needed to align the type.
455 * If has_alignment is 0, alignment is disactivated.
456 * else, the function returns the offset needed to
457 * align align_drift on the has_alignment value (should be
458 * the size of the architecture). */
459static inline unsigned int ltt_align(size_t align_drift,
83e160f2 460 size_t size_of_type,
461 size_t has_alignment)
f104d082 462{
c88ddec5 463 size_t alignment = min(has_alignment, size_of_type);
464
465 if(!has_alignment) return 0;
466
467 g_assert(size_of_type != 0);
468 return ((alignment - align_drift) & (alignment-1));
f104d082 469}
470
f104d082 471
fcdf0ec2 472#endif /* LTT_PRIVATE_H */
This page took 0.073308 seconds and 4 git commands to generate.