float word order
[lttv.git] / ltt / branches / poly / ltt / tracefile.c
CommitLineData
449cb9d7 1/* This file is part of the Linux Trace Toolkit viewer
3aee1200 2 * Copyright (C) 2005 Mathieu Desnoyers
449cb9d7 3 *
3aee1200 4 * Complete rewrite from the original version made by XangXiu Yang.
5 *
449cb9d7 6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License Version 2 as
8 * published by the Free Software Foundation;
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
18 * MA 02111-1307, USA.
19 */
20
4e4d11b3 21#ifdef HAVE_CONFIG_H
22#include <config.h>
23#endif
24
6cd62ccf 25#include <stdio.h>
26#include <fcntl.h>
8d1e6362 27#include <string.h>
28#include <dirent.h>
6cd62ccf 29#include <sys/stat.h>
30#include <sys/types.h>
8d1e6362 31#include <errno.h>
32#include <unistd.h>
42db9bf1 33#include <math.h>
cdf90f40 34#include <glib.h>
3aee1200 35#include <malloc.h>
36#include <sys/mman.h>
6cd62ccf 37
ef35d837 38// For realpath
39#include <limits.h>
40#include <stdlib.h>
41
42
6cd62ccf 43#include "parser.h"
a5dcde2f 44#include <ltt/ltt.h>
45#include "ltt-private.h"
963b5f2d 46#include <ltt/trace.h>
a5dcde2f 47#include <ltt/facility.h>
c02ea99f 48#include <ltt/event.h>
8d1e6362 49#include <ltt/type.h>
1a2ceb63 50#include <ltt/ltt-types.h>
6cd62ccf 51
3aee1200 52
53/* Facility names used in this file */
54
55GQuark LTT_FACILITY_NAME_HEARTBEAT,
56 LTT_EVENT_NAME_HEARTBEAT;
57GQuark LTT_TRACEFILE_NAME_FACILITIES;
58
86005ded 59#ifndef g_open
60#define g_open open
61#endif
62
63
51b5991e 64#define __UNUSED__ __attribute__((__unused__))
6cd62ccf 65
a1062ddd 66#define g_info(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_INFO, format)
3aee1200 67
68#ifndef g_debug
a1062ddd 69#define g_debug(format...) g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, format)
3aee1200 70#endif
a1062ddd 71
45e14832 72#define g_close close
8959a0c8 73
b77d1b57 74/* Those macros must be called from within a function where page_size is a known
75 * variable */
76#define PAGE_MASK (~(page_size-1))
77#define PAGE_ALIGN(addr) (((addr)+page_size-1)&PAGE_MASK)
78
6cd62ccf 79/* set the offset of the fields belonging to the event,
80 need the information of the archecture */
3aee1200 81void set_fields_offsets(LttTracefile *tf, LttEventType *event_type);
eed2ef37 82//size_t get_fields_offsets(LttTracefile *tf, LttEventType *event_type, void *data);
6cd62ccf 83
3aee1200 84/* get the size of the field type according to
85 * The facility size information. */
86static inline void preset_field_type_size(LttTracefile *tf,
87 LttEventType *event_type,
88 off_t offset_root, off_t offset_parent,
89 enum field_status *fixed_root, enum field_status *fixed_parent,
90 LttField *field);
6cd62ccf 91
3aee1200 92/* map a fixed size or a block information from the file (fd) */
93static gint map_block(LttTracefile * tf, guint block_num);
94
95/* calculate nsec per cycles for current block */
96static double calc_nsecs_per_cycle(LttTracefile * t);
6cd62ccf 97
3aee1200 98/* go to the next event */
99static int ltt_seek_next_event(LttTracefile *tf);
6cd62ccf 100
eed2ef37 101void ltt_update_event_size(LttTracefile *tf);
102
3aee1200 103#if 0
43da6a59 104/* Functions to parse system.xml file (using glib xml parser) */
51b5991e 105static void parser_start_element (GMarkupParseContext __UNUSED__ *context,
43da6a59 106 const gchar *element_name,
107 const gchar **attribute_names,
108 const gchar **attribute_values,
109 gpointer user_data,
110 GError **error)
111{
112 int i=0;
113 LttSystemDescription* des = (LttSystemDescription* )user_data;
114 if(strcmp("system", element_name)){
2a74fbf4 115 *error = g_error_new(G_MARKUP_ERROR,
116 G_LOG_LEVEL_WARNING,
117 "This is not system.xml file");
118 return;
43da6a59 119 }
120
121 while(attribute_names[i]){
122 if(strcmp("node_name", attribute_names[i])==0){
123 des->node_name = g_strdup(attribute_values[i]);
124 }else if(strcmp("domainname", attribute_names[i])==0){
125 des->domain_name = g_strdup(attribute_values[i]);
126 }else if(strcmp("cpu", attribute_names[i])==0){
127 des->nb_cpu = atoi(attribute_values[i]);
128 }else if(strcmp("arch_size", attribute_names[i])==0){
129 if(strcmp(attribute_values[i],"LP32") == 0) des->size = LTT_LP32;
130 else if(strcmp(attribute_values[i],"ILP32") == 0) des->size = LTT_ILP32;
131 else if(strcmp(attribute_values[i],"LP64") == 0) des->size = LTT_LP64;
132 else if(strcmp(attribute_values[i],"ILP64") == 0) des->size = LTT_ILP64;
133 else if(strcmp(attribute_values[i],"UNKNOWN") == 0) des->size = LTT_UNKNOWN;
134 }else if(strcmp("endian", attribute_names[i])==0){
135 if(strcmp(attribute_values[i],"LITTLE_ENDIAN") == 0)
136 des->endian = LTT_LITTLE_ENDIAN;
137 else if(strcmp(attribute_values[i],"BIG_ENDIAN") == 0)
138 des->endian = LTT_BIG_ENDIAN;
139 }else if(strcmp("kernel_name", attribute_names[i])==0){
140 des->kernel_name = g_strdup(attribute_values[i]);
141 }else if(strcmp("kernel_release", attribute_names[i])==0){
142 des->kernel_release = g_strdup(attribute_values[i]);
143 }else if(strcmp("kernel_version", attribute_names[i])==0){
144 des->kernel_version = g_strdup(attribute_values[i]);
145 }else if(strcmp("machine", attribute_names[i])==0){
146 des->machine = g_strdup(attribute_values[i]);
147 }else if(strcmp("processor", attribute_names[i])==0){
148 des->processor = g_strdup(attribute_values[i]);
149 }else if(strcmp("hardware_platform", attribute_names[i])==0){
150 des->hardware_platform = g_strdup(attribute_values[i]);
151 }else if(strcmp("operating_system", attribute_names[i])==0){
152 des->operating_system = g_strdup(attribute_values[i]);
153 }else if(strcmp("ltt_major_version", attribute_names[i])==0){
154 des->ltt_major_version = atoi(attribute_values[i]);
155 }else if(strcmp("ltt_minor_version", attribute_names[i])==0){
156 des->ltt_minor_version = atoi(attribute_values[i]);
157 }else if(strcmp("ltt_block_size", attribute_names[i])==0){
158 des->ltt_block_size = atoi(attribute_values[i]);
159 }else{
2a74fbf4 160 *error = g_error_new(G_MARKUP_ERROR,
161 G_LOG_LEVEL_WARNING,
162 "Not a valid attribute");
163 return;
43da6a59 164 }
165 i++;
166 }
167}
168
51b5991e 169static void parser_characters (GMarkupParseContext __UNUSED__ *context,
43da6a59 170 const gchar *text,
51b5991e 171 gsize __UNUSED__ text_len,
43da6a59 172 gpointer user_data,
51b5991e 173 GError __UNUSED__ **error)
43da6a59 174{
175 LttSystemDescription* des = (LttSystemDescription* )user_data;
176 des->description = g_strdup(text);
177}
3aee1200 178#endif //0
77175651 179LttFacility *ltt_trace_get_facility_by_num(LttTrace *t,
3aee1200 180 guint num)
181{
182 g_assert(num < t->facilities_by_num->len);
183
184 return &g_array_index(t->facilities_by_num, LttFacility, num);
185
186}
43da6a59 187
b56dcdf2 188guint ltt_trace_get_num_cpu(LttTrace *t)
189{
190 return t->num_cpu;
191}
192
43da6a59 193
6cd62ccf 194/*****************************************************************************
195 *Function name
963b5f2d 196 * ltt_tracefile_open : open a trace file, construct a LttTracefile
6cd62ccf 197 *Input params
963b5f2d 198 * t : the trace containing the tracefile
199 * fileName : path name of the trace file
3aee1200 200 * tf : the tracefile structure
6cd62ccf 201 *Return value
3aee1200 202 * : 0 for success, -1 otherwise.
6cd62ccf 203 ****************************************************************************/
204
3aee1200 205gint ltt_tracefile_open(LttTrace *t, gchar * fileName, LttTracefile *tf)
6cd62ccf 206{
963b5f2d 207 struct stat lTDFStat; /* Trace data file status */
3aee1200 208 struct ltt_block_start_header *header;
b77d1b57 209 int page_size = getpagesize();
6cd62ccf 210
211 //open the file
d3d34f49 212 tf->long_name = g_quark_from_string(fileName);
963b5f2d 213 tf->trace = t;
3865ea09 214 tf->fd = open(fileName, O_RDONLY);
6cd62ccf 215 if(tf->fd < 0){
2a74fbf4 216 g_warning("Unable to open input data file %s\n", fileName);
3aee1200 217 goto end;
6cd62ccf 218 }
219
220 // Get the file's status
221 if(fstat(tf->fd, &lTDFStat) < 0){
2a74fbf4 222 g_warning("Unable to get the status of the input data file %s\n", fileName);
3aee1200 223 goto close_file;
6cd62ccf 224 }
225
226 // Is the file large enough to contain a trace
3aee1200 227 if(lTDFStat.st_size < (off_t)(sizeof(struct ltt_block_start_header))){
8710c6c7 228 g_print("The input data file %s does not contain a trace\n", fileName);
3aee1200 229 goto close_file;
230 }
231
232 /* Temporarily map the buffer start header to get trace information */
233 /* Multiple of pages aligned head */
b77d1b57 234 tf->buffer.head = mmap(0,
235 PAGE_ALIGN(sizeof(struct ltt_block_start_header)), PROT_READ,
3aee1200 236 MAP_PRIVATE, tf->fd, 0);
3865ea09 237 if(tf->buffer.head == MAP_FAILED) {
3aee1200 238 perror("Error in allocating memory for buffer of tracefile");
239 goto close_file;
6cd62ccf 240 }
3865ea09 241 g_assert( ( (guint)tf->buffer.head&(8-1) ) == 0); // make sure it's aligned.
3aee1200 242
243 header = (struct ltt_block_start_header*)tf->buffer.head;
6cd62ccf 244
3aee1200 245 if(header->trace.magic_number == LTT_MAGIC_NUMBER)
246 tf->reverse_bo = 0;
247 else if(header->trace.magic_number == LTT_REV_MAGIC_NUMBER)
248 tf->reverse_bo = 1;
249 else /* invalid magic number, bad tracefile ! */
250 goto unmap_file;
79257ba5 251 /* Get float byte order : might be different from int byte order
252 * (or is set to 0 if the trace has no float (kernel trace)) */
253 tf->float_word_order = header->trace.float_word_order;
3aee1200 254
6cd62ccf 255 //store the size of the file
256 tf->file_size = lTDFStat.st_size;
f628823c 257 tf->buf_size = ltt_get_uint32(LTT_GET_BO(tf), &header->buf_size);
258 tf->num_blocks = tf->file_size / tf->buf_size;
259
260 if(munmap(tf->buffer.head,
261 PAGE_ALIGN(sizeof(struct ltt_block_start_header)))) {
262 g_warning("unmap size : %u\n",
263 PAGE_ALIGN(sizeof(struct ltt_block_start_header)));
264 perror("munmap error");
265 g_assert(0);
266 }
3aee1200 267 tf->buffer.head = NULL;
6cd62ccf 268
963b5f2d 269 //read the first block
3aee1200 270 if(map_block(tf,0)) {
271 perror("Cannot map block for tracefile");
272 goto close_file;
273 }
274
275 return 0;
6cd62ccf 276
3aee1200 277 /* Error */
278unmap_file:
f628823c 279 if(munmap(tf->buffer.head,
280 PAGE_ALIGN(sizeof(struct ltt_block_start_header)))) {
281 g_warning("unmap size : %u\n",
282 PAGE_ALIGN(sizeof(struct ltt_block_start_header)));
283 perror("munmap error");
284 g_assert(0);
285 }
3aee1200 286close_file:
3865ea09 287 close(tf->fd);
3aee1200 288end:
289 return -1;
6cd62ccf 290}
291
d3d34f49 292LttTrace *ltt_tracefile_get_trace(LttTracefile *tf)
293{
294 return tf->trace;
295}
296
3aee1200 297#if 0
6cd62ccf 298/*****************************************************************************
963b5f2d 299 *Open control and per cpu tracefiles
6cd62ccf 300 ****************************************************************************/
301
45e14832 302void ltt_tracefile_open_cpu(LttTrace *t, gchar * tracefile_name)
6cd62ccf 303{
963b5f2d 304 LttTracefile * tf;
305 tf = ltt_tracefile_open(t,tracefile_name);
4a6c8e36 306 if(!tf) return;
963b5f2d 307 t->per_cpu_tracefile_number++;
308 g_ptr_array_add(t->per_cpu_tracefiles, tf);
6cd62ccf 309}
310
45e14832 311gint ltt_tracefile_open_control(LttTrace *t, gchar * control_name)
6cd62ccf 312{
963b5f2d 313 LttTracefile * tf;
c02ea99f 314 LttEvent ev;
963b5f2d 315 LttFacility * f;
963b5f2d 316 void * pos;
317 FacilityLoad fLoad;
8d1e6362 318 unsigned int i;
963b5f2d 319
320 tf = ltt_tracefile_open(t,control_name);
2a74fbf4 321 if(!tf) {
322 g_warning("ltt_tracefile_open_control : bad file descriptor");
323 return -1;
324 }
963b5f2d 325 t->control_tracefile_number++;
326 g_ptr_array_add(t->control_tracefiles,tf);
327
328 //parse facilities tracefile to get base_id
542ceddd 329 if(strcmp(&control_name[strlen(control_name)-10],"facilities") ==0){
963b5f2d 330 while(1){
c02ea99f 331 if(!ltt_tracefile_read(tf,&ev)) return 0; // end of file
40331ba8 332
c02ea99f 333 if(ev.event_id == TRACE_FACILITY_LOAD){
334 pos = ev.data;
45e14832 335 fLoad.name = (gchar*)pos;
47a166fc 336 fLoad.checksum = *(LttChecksum*)(pos + strlen(fLoad.name));
cbd41522 337 fLoad.base_code = *(guint32 *)(pos + strlen(fLoad.name) + sizeof(LttChecksum));
963b5f2d 338
339 for(i=0;i<t->facility_number;i++){
340 f = (LttFacility*)g_ptr_array_index(t->facilities,i);
341 if(strcmp(f->name,fLoad.name)==0 && fLoad.checksum==f->checksum){
342 f->base_id = fLoad.base_code;
343 break;
344 }
345 }
2a74fbf4 346 if(i==t->facility_number) {
8d1e6362 347 g_warning("Facility: %s, checksum: %u is not found",
348 fLoad.name,(unsigned int)fLoad.checksum);
2a74fbf4 349 return -1;
350 }
c02ea99f 351 }else if(ev.event_id == TRACE_BLOCK_START){
40331ba8 352 continue;
c02ea99f 353 }else if(ev.event_id == TRACE_BLOCK_END){
40331ba8 354 break;
2a74fbf4 355 }else {
8d1e6362 356 g_warning("Not valid facilities trace file");
2a74fbf4 357 return -1;
358 }
963b5f2d 359 }
360 }
2a74fbf4 361 return 0;
6cd62ccf 362}
3aee1200 363#endif //0
6cd62ccf 364
365/*****************************************************************************
366 *Function name
963b5f2d 367 * ltt_tracefile_close: close a trace file,
6cd62ccf 368 *Input params
963b5f2d 369 * t : tracefile which will be closed
6cd62ccf 370 ****************************************************************************/
371
963b5f2d 372void ltt_tracefile_close(LttTracefile *t)
6cd62ccf 373{
f628823c 374 int page_size = getpagesize();
375
3aee1200 376 if(t->buffer.head != NULL)
f628823c 377 if(munmap(t->buffer.head, PAGE_ALIGN(t->buf_size))) {
378 g_warning("unmap size : %u\n",
379 PAGE_ALIGN(t->buf_size));
380 perror("munmap error");
381 g_assert(0);
382 }
383
3865ea09 384 close(t->fd);
963b5f2d 385}
6cd62ccf 386
6cd62ccf 387
963b5f2d 388/*****************************************************************************
389 *Get system information
390 ****************************************************************************/
3aee1200 391#if 0
45e14832 392gint getSystemInfo(LttSystemDescription* des, gchar * pathname)
963b5f2d 393{
45e14832 394 int fd;
395 GIOChannel *iochan;
396 gchar *buf = NULL;
397 gsize length;
43da6a59 398
399 GMarkupParseContext * context;
2a74fbf4 400 GError * error = NULL;
43da6a59 401 GMarkupParser markup_parser =
402 {
403 parser_start_element,
8d1e6362 404 NULL,
43da6a59 405 parser_characters,
406 NULL, /* passthrough */
407 NULL /* error */
408 };
963b5f2d 409
45e14832 410 fd = g_open(pathname, O_RDONLY, 0);
411 if(fd == -1){
2a74fbf4 412 g_warning("Can not open file : %s\n", pathname);
413 return -1;
6cd62ccf 414 }
963b5f2d 415
45e14832 416 iochan = g_io_channel_unix_new(fd);
417
43da6a59 418 context = g_markup_parse_context_new(&markup_parser, 0, des,NULL);
6cd62ccf 419
45e14832 420 //while(fgets(buf,DIR_NAME_SIZE, fp) != NULL){
421 while(g_io_channel_read_line(iochan, &buf, &length, NULL, &error)
422 != G_IO_STATUS_EOF) {
423
424 if(error != NULL) {
425 g_warning("Can not read xml file: \n%s\n", error->message);
426 g_error_free(error);
427 }
428 if(!g_markup_parse_context_parse(context, buf, length, &error)){
2a74fbf4 429 if(error != NULL) {
430 g_warning("Can not parse xml file: \n%s\n", error->message);
431 g_error_free(error);
432 }
433 g_markup_parse_context_free(context);
45e14832 434
435 g_io_channel_shutdown(iochan, FALSE, &error); /* No flush */
436 if(error != NULL) {
437 g_warning("Can not close file: \n%s\n", error->message);
438 g_error_free(error);
439 }
440
441 close(fd);
2a74fbf4 442 return -1;
43da6a59 443 }
963b5f2d 444 }
2a74fbf4 445 g_markup_parse_context_free(context);
45e14832 446
447 g_io_channel_shutdown(iochan, FALSE, &error); /* No flush */
448 if(error != NULL) {
449 g_warning("Can not close file: \n%s\n", error->message);
450 g_error_free(error);
451 }
452
453 g_close(fd);
454
455 g_free(buf);
2a74fbf4 456 return 0;
6cd62ccf 457}
3aee1200 458#endif //0
6cd62ccf 459
460/*****************************************************************************
963b5f2d 461 *The following functions get facility/tracefile information
6cd62ccf 462 ****************************************************************************/
3aee1200 463#if 0
45e14832 464gint getFacilityInfo(LttTrace *t, gchar* eventdefs)
6cd62ccf 465{
45e14832 466 GDir * dir;
467 const gchar * name;
8d1e6362 468 unsigned int i,j;
963b5f2d 469 LttFacility * f;
470 LttEventType * et;
45e14832 471 gchar fullname[DIR_NAME_SIZE];
472 GError * error = NULL;
473
474 dir = g_dir_open(eventdefs, 0, &error);
963b5f2d 475
45e14832 476 if(error != NULL) {
477 g_warning("Can not open directory: %s, %s\n", eventdefs, error->message);
478 g_error_free(error);
2a74fbf4 479 return -1;
480 }
963b5f2d 481
45e14832 482 while((name = g_dir_read_name(dir)) != NULL){
483 if(!g_pattern_match_simple("*.xml", name)) continue;
484 strcpy(fullname,eventdefs);
485 strcat(fullname,name);
486 ltt_facility_open(t,fullname);
487 }
488 g_dir_close(dir);
963b5f2d 489
963b5f2d 490 for(j=0;j<t->facility_number;j++){
8710c6c7 491 f = (LttFacility*)g_ptr_array_index(t->facilities, j);
963b5f2d 492 for(i=0; i<f->event_number; i++){
493 et = f->events[i];
40331ba8 494 setFieldsOffset(NULL, et, NULL, t);
963b5f2d 495 }
496 }
2a74fbf4 497 return 0;
963b5f2d 498}
3aee1200 499#endif //0
6cd62ccf 500
963b5f2d 501/*****************************************************************************
502 *A trace is specified as a pathname to the directory containing all the
503 *associated data (control tracefiles, per cpu tracefiles, event
504 *descriptions...).
505 *
506 *When a trace is closed, all the associated facilities, types and fields
507 *are released as well.
8d1e6362 508 */
509
510
511/****************************************************************************
512 * get_absolute_pathname
803229fa 513 *
8d1e6362 514 * return the unique pathname in the system
515 *
ef35d837 516 * MD : Fixed this function so it uses realpath, dealing well with
517 * forgotten cases (.. were not used correctly before).
803229fa 518 *
963b5f2d 519 ****************************************************************************/
45e14832 520void get_absolute_pathname(const gchar *pathname, gchar * abs_pathname)
9f797243 521{
9f797243 522 abs_pathname[0] = '\0';
803229fa 523
ef35d837 524 if ( realpath (pathname, abs_pathname) != NULL)
525 return;
526 else
527 {
8d1e6362 528 /* error, return the original path unmodified */
ef35d837 529 strcpy(abs_pathname, pathname);
9f797243 530 return;
531 }
ef35d837 532 return;
9f797243 533}
534
3aee1200 535/* Search for something like : .*_.*
536 *
537 * The left side is the name, the right side is the number.
538 */
539
540int get_tracefile_name_number(const gchar *raw_name,
541 GQuark *name,
542 guint *num)
6cd62ccf 543{
3aee1200 544 guint raw_name_len = strlen(raw_name);
545 gchar char_name[PATH_MAX];
3aee1200 546 int i;
547 int underscore_pos;
548 long int cpu_num;
549 gchar *endptr;
550
551 for(i=raw_name_len-1;i>=0;i--) {
552 if(raw_name[i] == '_') break;
553 }
554 if(i==0) /* Either not found or name length is 0 */
555 return -1;
556 underscore_pos = i;
963b5f2d 557
3aee1200 558 cpu_num = strtol(raw_name+underscore_pos+1, &endptr, 10);
559
560 if(endptr == raw_name+underscore_pos+1)
561 return -1; /* No digit */
562 if(cpu_num == LONG_MIN || cpu_num == LONG_MAX)
563 return -1; /* underflow / overflow */
1a2ceb63 564
3aee1200 565 strncpy(char_name, raw_name, underscore_pos);
1a2ceb63 566
69bd59ed 567 char_name[underscore_pos] = '\0';
568
3aee1200 569 *name = g_quark_from_string(char_name);
570 *num = cpu_num;
b333a76b 571
3aee1200 572 return 0;
573}
963b5f2d 574
3aee1200 575
3865ea09 576GData **ltt_trace_get_tracefiles_groups(LttTrace *trace)
77175651 577{
3865ea09 578 return &trace->tracefiles;
77175651 579}
580
581
3865ea09 582void compute_tracefile_group(GQuark key_id,
583 GArray *group,
584 struct compute_tracefile_group_args *args)
77175651 585{
586 int i;
587 LttTracefile *tf;
588
589 for(i=0; i<group->len; i++) {
590 tf = &g_array_index (group, LttTracefile, i);
591 if(tf->cpu_online)
3865ea09 592 args->func(tf, args->func_args);
77175651 593 }
594}
595
596
3aee1200 597void ltt_tracefile_group_destroy(gpointer data)
598{
599 GArray *group = (GArray *)data;
600 int i;
601 LttTracefile *tf;
602
603 for(i=0; i<group->len; i++) {
604 tf = &g_array_index (group, LttTracefile, i);
605 if(tf->cpu_online)
606 ltt_tracefile_close(tf);
607 }
608 g_array_free(group, TRUE);
6cd62ccf 609}
610
3aee1200 611gboolean ltt_tracefile_group_has_cpu_online(gpointer data)
49bf71b5 612{
3aee1200 613 GArray *group = (GArray *)data;
614 int i;
615 LttTracefile *tf;
616
617 for(i=0; i<group->len; i++) {
618 tf = &g_array_index (group, LttTracefile, i);
619 if(tf->cpu_online) return 1;
620 }
621 return 0;
49bf71b5 622}
623
624
3aee1200 625/* Open each tracefile under a specific directory. Put them in a
626 * GData : permits to access them using their tracefile group pathname.
627 * i.e. access control/modules tracefile group by index :
628 * "control/module".
3865ea09 629 *
630 * relative path is the path relative to the trace root
631 * root path is the full path
3aee1200 632 *
633 * A tracefile group is simply an array where all the per cpu tracefiles sits.
634 */
635
69bd59ed 636static int open_tracefiles(LttTrace *trace, gchar *root_path,
637 gchar *relative_path)
f7afe191 638{
3aee1200 639 DIR *dir = opendir(root_path);
640 struct dirent *entry;
641 struct stat stat_buf;
642 int ret;
3865ea09 643
69bd59ed 644 gchar path[PATH_MAX];
3aee1200 645 int path_len;
69bd59ed 646 gchar *path_ptr;
3aee1200 647
3865ea09 648 int rel_path_len;
69bd59ed 649 gchar rel_path[PATH_MAX];
650 gchar *rel_path_ptr;
cb03932a 651 LttTracefile tmp_tf;
3865ea09 652
3aee1200 653 if(dir == NULL) {
654 perror(root_path);
655 return ENOENT;
656 }
657
658 strncpy(path, root_path, PATH_MAX-1);
659 path_len = strlen(path);
660 path[path_len] = '/';
661 path_len++;
662 path_ptr = path + path_len;
663
3865ea09 664 strncpy(rel_path, relative_path, PATH_MAX-1);
665 rel_path_len = strlen(rel_path);
666 rel_path[rel_path_len] = '/';
667 rel_path_len++;
668 rel_path_ptr = rel_path + rel_path_len;
669
3aee1200 670 while((entry = readdir(dir)) != NULL) {
671
672 if(entry->d_name[0] == '.') continue;
673
674 strncpy(path_ptr, entry->d_name, PATH_MAX - path_len);
3865ea09 675 strncpy(rel_path_ptr, entry->d_name, PATH_MAX - rel_path_len);
3aee1200 676
677 ret = stat(path, &stat_buf);
678 if(ret == -1) {
679 perror(path);
680 continue;
681 }
682
683 g_debug("Tracefile file or directory : %s\n", path);
684
74a588bb 685 if(strcmp(rel_path, "/eventdefs") == 0) continue;
686
3aee1200 687 if(S_ISDIR(stat_buf.st_mode)) {
688
689 g_debug("Entering subdirectory...\n");
3865ea09 690 ret = open_tracefiles(trace, path, rel_path);
3aee1200 691 if(ret < 0) continue;
692 } else if(S_ISREG(stat_buf.st_mode)) {
3aee1200 693 GQuark name;
694 guint num;
695 GArray *group;
3aee1200 696
3865ea09 697 if(get_tracefile_name_number(rel_path, &name, &num))
3aee1200 698 continue; /* invalid name */
3865ea09 699
cb03932a 700 g_debug("Opening file.\n");
701 if(ltt_tracefile_open(trace, path, &tmp_tf)) {
702 g_info("Error opening tracefile %s", path);
703
704 continue; /* error opening the tracefile : bad magic number ? */
705 }
706
3865ea09 707 g_debug("Tracefile name is %s and number is %u",
708 g_quark_to_string(name), num);
709
cb03932a 710 tmp_tf.cpu_online = 1;
711 tmp_tf.cpu_num = num;
d3d34f49 712 tmp_tf.name = name;
cb03932a 713
3865ea09 714 group = g_datalist_id_get_data(&trace->tracefiles, name);
3aee1200 715 if(group == NULL) {
716 /* Elements are automatically cleared when the array is allocated.
717 * It makes the cpu_online variable set to 0 : cpu offline, by default.
718 */
719 group = g_array_sized_new (FALSE, TRUE, sizeof(LttTracefile), 10);
3865ea09 720 g_datalist_id_set_data_full(&trace->tracefiles, name,
3aee1200 721 group, ltt_tracefile_group_destroy);
722 }
cb03932a 723
3aee1200 724 /* Add the per cpu tracefile to the named group */
725 unsigned int old_len = group->len;
726 if(num+1 > old_len)
727 group = g_array_set_size(group, num+1);
cb03932a 728 g_array_index (group, LttTracefile, num) = tmp_tf;
3aee1200 729
3aee1200 730 }
731 }
732
733 closedir(dir);
734
735 return 0;
f7afe191 736}
737
3aee1200 738/* ltt_get_facility_description
739 *
740 * Opens the trace corresponding to the requested facility (identified by fac_id
741 * and checksum).
742 *
743 * The name searched is : %trace root%/eventdefs/facname_checksum.xml
744 *
745 * Returns 0 on success, or 1 on failure.
746 */
747
748static int ltt_get_facility_description(LttFacility *f,
749 LttTrace *t,
750 LttTracefile *fac_tf)
6cd62ccf 751{
3aee1200 752 char desc_file_name[PATH_MAX];
753 const gchar *text;
754 guint textlen;
755 gint err;
3aee1200 756
757 text = g_quark_to_string(t->pathname);
758 textlen = strlen(text);
759
760 if(textlen >= PATH_MAX) goto name_error;
761 strcpy(desc_file_name, text);
762
763 text = "/eventdefs/";
764 textlen+=strlen(text);
765 if(textlen >= PATH_MAX) goto name_error;
766 strcat(desc_file_name, text);
767
768 text = g_quark_to_string(f->name);
769 textlen+=strlen(text);
770 if(textlen >= PATH_MAX) goto name_error;
771 strcat(desc_file_name, text);
772
773 text = "_";
774 textlen+=strlen(text);
775 if(textlen >= PATH_MAX) goto name_error;
776 strcat(desc_file_name, text);
963b5f2d 777
3aee1200 778 err = snprintf(desc_file_name+textlen, PATH_MAX-textlen-1,
779 "%u", f->checksum);
d2083cab 780 if(err < 0) goto name_error;
3aee1200 781
782 textlen=strlen(desc_file_name);
783
784 text = ".xml";
785 textlen+=strlen(text);
786 if(textlen >= PATH_MAX) goto name_error;
787 strcat(desc_file_name, text);
963b5f2d 788
3aee1200 789 err = ltt_facility_open(f, t, desc_file_name);
790 if(err) goto facility_error;
3aee1200 791
792 return 0;
793
794facility_error:
795name_error:
796 return 1;
797}
798
799static void ltt_fac_ids_destroy(gpointer data)
800{
801 GArray *fac_ids = (GArray *)data;
963b5f2d 802
3aee1200 803 g_array_free(fac_ids, TRUE);
804}
805
806
807/* Presumes the tracefile is already seeked at the beginning. It makes sense,
808 * because it must be done just after the opening */
809static int ltt_process_facility_tracefile(LttTracefile *tf)
810{
811 int err;
812 LttFacility *fac;
813 GArray *fac_ids;
cb03932a 814 guint i;
815 LttEventType *et;
3aee1200 816
817 while(1) {
818 err = ltt_tracefile_read_seek(tf);
819 if(err == EPERM) goto seek_error;
820 else if(err == ERANGE) break; /* End of tracefile */
821
822 err = ltt_tracefile_read_update_event(tf);
823 if(err) goto update_error;
824
825 /* We are on a facility load/or facility unload/ or heartbeat event */
826 /* The rules are :
827 * * facility 0 is hardcoded : this is the core facility. It will be shown
828 * in the facility array though, and is shown as "loaded builtin" in the
829 * trace.
830 * It contains event :
831 * 0 : facility load
832 * 1 : facility unload
833 * 2 : state dump facility load
d2083cab 834 * 3 : heartbeat
3aee1200 835 */
d2083cab 836 if(tf->event.facility_id != LTT_FACILITY_CORE) {
837 /* Should only contain core facility */
3aee1200 838 g_warning("Error in processing facility file %s, "
839 "should not contain facility id %u.", g_quark_to_string(tf->name),
840 tf->event.facility_id);
841 err = EPERM;
842 goto fac_id_error;
d2083cab 843 } else {
3aee1200 844
845 struct LttFacilityLoad *fac_load_data;
b77d1b57 846 struct LttStateDumpFacilityLoad *fac_state_dump_load_data;
3aee1200 847 char *fac_name;
848
849 // FIXME align
850 switch((enum ltt_core_events)tf->event.event_id) {
851 case LTT_EVENT_FACILITY_LOAD:
b77d1b57 852 fac_name = (char*)(tf->event.data);
d2083cab 853 g_debug("Doing LTT_EVENT_FACILITY_LOAD of facility %s",
854 fac_name);
3aee1200 855 fac_load_data =
b77d1b57 856 (struct LttFacilityLoad *)
857 (tf->event.data + strlen(fac_name) + 1);
3aee1200 858 fac = &g_array_index (tf->trace->facilities_by_num, LttFacility,
859 ltt_get_uint32(LTT_GET_BO(tf), &fac_load_data->id));
860 g_assert(fac->exists == 0);
861 fac->name = g_quark_from_string(fac_name);
862 fac->checksum = ltt_get_uint32(LTT_GET_BO(tf),
863 &fac_load_data->checksum);
864 fac->id = ltt_get_uint32(LTT_GET_BO(tf), &fac_load_data->id);
865 fac->pointer_size = ltt_get_uint32(LTT_GET_BO(tf),
866 &fac_load_data->pointer_size);
cb03932a 867 fac->long_size = ltt_get_uint32(LTT_GET_BO(tf),
868 &fac_load_data->long_size);
eed2ef37 869 fac->size_t_size = ltt_get_uint32(LTT_GET_BO(tf),
3aee1200 870 &fac_load_data->size_t_size);
871 fac->alignment = ltt_get_uint32(LTT_GET_BO(tf),
872 &fac_load_data->alignment);
873
874 if(ltt_get_facility_description(fac, tf->trace, tf))
cb03932a 875 continue; /* error opening description */
3aee1200 876
877 fac->trace = tf->trace;
cb03932a 878
879 /* Preset the field offsets */
880 for(i=0; i<fac->events->len; i++){
881 et = &g_array_index(fac->events, LttEventType, i);
882 set_fields_offsets(tf, et);
883 }
884
3aee1200 885 fac->exists = 1;
886
77175651 887 fac_ids = g_datalist_id_get_data(&tf->trace->facilities_by_name,
888 fac->name);
3aee1200 889 if(fac_ids == NULL) {
890 fac_ids = g_array_sized_new (FALSE, TRUE, sizeof(guint), 1);
891 g_datalist_id_set_data_full(&tf->trace->facilities_by_name,
892 fac->name,
893 fac_ids, ltt_fac_ids_destroy);
894 }
895 g_array_append_val(fac_ids, fac->id);
896
897 break;
898 case LTT_EVENT_FACILITY_UNLOAD:
d2083cab 899 g_debug("Doing LTT_EVENT_FACILITY_UNLOAD");
3aee1200 900 /* We don't care about unload : facilities ID are valid for the whole
901 * trace. They simply won't be used after the unload. */
902 break;
903 case LTT_EVENT_STATE_DUMP_FACILITY_LOAD:
b77d1b57 904 fac_name = (char*)(tf->event.data);
d2083cab 905 g_debug("Doing LTT_EVENT_STATE_DUMP_FACILITY_LOAD of facility %s",
906 fac_name);
b77d1b57 907 fac_state_dump_load_data =
d2083cab 908 (struct LttStateDumpFacilityLoad *)
b77d1b57 909 (tf->event.data + strlen(fac_name) + 1);
3aee1200 910 fac = &g_array_index (tf->trace->facilities_by_num, LttFacility,
b77d1b57 911 ltt_get_uint32(LTT_GET_BO(tf), &fac_state_dump_load_data->id));
3aee1200 912 g_assert(fac->exists == 0);
913 fac->name = g_quark_from_string(fac_name);
914 fac->checksum = ltt_get_uint32(LTT_GET_BO(tf),
d2083cab 915 &fac_state_dump_load_data->checksum);
916 fac->id = fac_state_dump_load_data->id;
3aee1200 917 fac->pointer_size = ltt_get_uint32(LTT_GET_BO(tf),
d2083cab 918 &fac_state_dump_load_data->pointer_size);
cb03932a 919 fac->long_size = ltt_get_uint32(LTT_GET_BO(tf),
920 &fac_state_dump_load_data->long_size);
eed2ef37 921 fac->size_t_size = ltt_get_uint32(LTT_GET_BO(tf),
d2083cab 922 &fac_state_dump_load_data->size_t_size);
3aee1200 923 fac->alignment = ltt_get_uint32(LTT_GET_BO(tf),
d2083cab 924 &fac_state_dump_load_data->alignment);
3aee1200 925 if(ltt_get_facility_description(fac, tf->trace, tf))
cb03932a 926 continue; /* error opening description */
3aee1200 927
928 fac->trace = tf->trace;
929
cb03932a 930 /* Preset the field offsets */
931 for(i=0; i<fac->events->len; i++){
932 et = &g_array_index(fac->events, LttEventType, i);
933 set_fields_offsets(tf, et);
934 }
935
3aee1200 936 fac->exists = 1;
937
938 fac_ids = g_datalist_id_get_data(&tf->trace->facilities_by_name,
939 fac->name);
940 if(fac_ids == NULL) {
941 fac_ids = g_array_sized_new (FALSE, TRUE, sizeof(guint), 1);
942 g_datalist_id_set_data_full(&tf->trace->facilities_by_name,
943 fac->name,
944 fac_ids, ltt_fac_ids_destroy);
945 }
946 g_array_append_val(fac_ids, fac->id);
947
948 break;
949 case LTT_EVENT_HEARTBEAT:
950 break;
951 default:
952 g_warning("Error in processing facility file %s, "
953 "unknown event id %hhu in core facility.",
954 g_quark_to_string(tf->name),
955 tf->event.event_id);
956 err = EPERM;
957 goto event_id_error;
958 }
959 }
963b5f2d 960 }
3aee1200 961 return 0;
963b5f2d 962
3aee1200 963 /* Error handling */
3aee1200 964event_id_error:
965fac_id_error:
966update_error:
967seek_error:
d2083cab 968 g_warning("An error occured in facility tracefile parsing");
3aee1200 969 return err;
6cd62ccf 970}
971
963b5f2d 972
3aee1200 973LttTrace *ltt_trace_open(const gchar *pathname)
974{
975 gchar abs_path[PATH_MAX];
976 LttTrace * t;
977 LttTracefile *tf;
978 GArray *group;
b56dcdf2 979 int i, ret;
16fcbb80 980 struct ltt_block_start_header *header;
b56dcdf2 981 DIR *dir;
982 struct dirent *entry;
983 guint control_found = 0;
984 guint eventdefs_found = 0;
985 struct stat stat_buf;
986 gchar path[PATH_MAX];
3aee1200 987
988 t = g_new(LttTrace, 1);
989 if(!t) goto alloc_error;
990
991 get_absolute_pathname(pathname, abs_path);
992 t->pathname = g_quark_from_string(abs_path);
993
3aee1200 994 g_datalist_init(&t->tracefiles);
b56dcdf2 995
996 /* Test to see if it looks like a trace */
997 dir = opendir(abs_path);
998 if(dir == NULL) {
999 perror(abs_path);
1000 goto open_error;
1001 }
1002 while((entry = readdir(dir)) != NULL) {
1003 strcpy(path, abs_path);
1004 strcat(path, "/");
1005 strcat(path, entry->d_name);
1006 ret = stat(path, &stat_buf);
1007 if(ret == -1) {
1008 perror(path);
1009 continue;
1010 }
1011 if(S_ISDIR(stat_buf.st_mode)) {
1012 if(strcmp(entry->d_name, "control") == 0) {
1013 control_found = 1;
1014 }
1015 if(strcmp(entry->d_name, "eventdefs") == 0) {
1016 eventdefs_found = 1;
1017 }
1018 }
1019 }
1020 closedir(dir);
1021
1022 if(!control_found || !eventdefs_found) goto find_error;
1023
1024 /* Open all the tracefiles */
e45551ac 1025 if(open_tracefiles(t, abs_path, "")) {
1026 g_warning("Error opening tracefile %s", abs_path);
b56dcdf2 1027 goto find_error;
e45551ac 1028 }
3aee1200 1029
1030 /* Prepare the facilities containers : array and mapping */
1031 /* Array is zeroed : the "exists" field is set to false by default */
1032 t->facilities_by_num = g_array_sized_new (FALSE,
1033 TRUE, sizeof(LttFacility),
1034 NUM_FACILITIES);
1035 t->facilities_by_num = g_array_set_size(t->facilities_by_num, NUM_FACILITIES);
1036
1037 g_datalist_init(&t->facilities_by_name);
1038
1039 /* Parse each trace control/facilitiesN files : get runtime fac. info */
1040 group = g_datalist_id_get_data(&t->tracefiles, LTT_TRACEFILE_NAME_FACILITIES);
1041 if(group == NULL) {
1042 g_error("Trace %s has no facility tracefile", abs_path);
3865ea09 1043 g_assert(0);
3aee1200 1044 goto facilities_error;
1045 }
1046
16fcbb80 1047 /* Get the trace information for the control/facility 0 tracefile */
1048 g_assert(group->len > 0);
1049 tf = &g_array_index (group, LttTracefile, 0);
1050 header = (struct ltt_block_start_header*)tf->buffer.head;
1051 t->arch_type = ltt_get_uint32(LTT_GET_BO(tf), &header->trace.arch_type);
1052 t->arch_variant = ltt_get_uint32(LTT_GET_BO(tf), &header->trace.arch_variant);
1053 t->arch_size = header->trace.arch_size;
1054 t->ltt_major_version = header->trace.major_version;
1055 t->ltt_minor_version = header->trace.minor_version;
1056 t->flight_recorder = header->trace.flight_recorder;
1057 t->has_heartbeat = header->trace.has_heartbeat;
1058 t->has_alignment = header->trace.has_alignment;
1059 t->has_tsc = header->trace.has_tsc;
b56dcdf2 1060
1061 t->num_cpu = group->len;
16fcbb80 1062
3aee1200 1063 for(i=0; i<group->len; i++) {
1064 tf = &g_array_index (group, LttTracefile, i);
1065 if(ltt_process_facility_tracefile(tf))
1066 goto facilities_error;
1067 }
3aee1200 1068
1069 return t;
1070
1071 /* Error handling */
1072facilities_error:
1073 g_datalist_clear(&t->facilities_by_name);
1074 g_array_free(t->facilities_by_num, TRUE);
b56dcdf2 1075find_error:
3aee1200 1076 g_datalist_clear(&t->tracefiles);
b56dcdf2 1077open_error:
3aee1200 1078 g_free(t);
1079alloc_error:
1080 return NULL;
1081
1082}
6cd62ccf 1083
826f1ab2 1084GQuark ltt_trace_name(const LttTrace *t)
6cd62ccf 1085{
3aee1200 1086 return t->pathname;
6cd62ccf 1087}
1088
6cd62ccf 1089
3aee1200 1090/******************************************************************************
1091 * When we copy a trace, we want all the opening actions to happen again :
1092 * the trace will be reopened and totally independant from the original.
1093 * That's why we call ltt_trace_open.
1094 *****************************************************************************/
1095LttTrace *ltt_trace_copy(LttTrace *self)
963b5f2d 1096{
3aee1200 1097 return ltt_trace_open(g_quark_to_string(self->pathname));
963b5f2d 1098}
1099
3aee1200 1100void ltt_trace_close(LttTrace *t)
6cd62ccf 1101{
cb03932a 1102 guint i;
1103 LttFacility *fac;
1104
1105 for(i=0; i<t->facilities_by_num->len; i++) {
1106 fac = &g_array_index (t->facilities_by_num, LttFacility, i);
1107 if(fac->exists)
1108 ltt_facility_close(fac);
1109 }
1110
3aee1200 1111 g_datalist_clear(&t->facilities_by_name);
1112 g_array_free(t->facilities_by_num, TRUE);
1113 g_datalist_clear(&t->tracefiles);
1114 g_free(t);
6cd62ccf 1115}
1116
3aee1200 1117
6cd62ccf 1118/*****************************************************************************
3aee1200 1119 *Get the system description of the trace
6cd62ccf 1120 ****************************************************************************/
1121
3aee1200 1122LttFacility *ltt_trace_facility_by_id(LttTrace *t, guint8 id)
6cd62ccf 1123{
3aee1200 1124 g_assert(id < t->facilities_by_num->len);
1125 return &g_array_index(t->facilities_by_num, LttFacility, id);
1126}
1127
1128/* ltt_trace_facility_get_by_name
1129 *
1130 * Returns the GArray of facility indexes. All the fac_ids that matches the
1131 * requested facility name.
1132 *
1133 * If name is not found, returns NULL.
1134 */
1135GArray *ltt_trace_facility_get_by_name(LttTrace *t, GQuark name)
1136{
1137 return g_datalist_id_get_data(&t->facilities_by_name, name);
6cd62ccf 1138}
1139
1140/*****************************************************************************
963b5f2d 1141 * Functions to discover all the event types in the trace
6cd62ccf 1142 ****************************************************************************/
1143
3aee1200 1144#if 0
963b5f2d 1145unsigned ltt_trace_eventtype_number(LttTrace *t)
6cd62ccf 1146{
8d1e6362 1147 unsigned int i;
963b5f2d 1148 unsigned count = 0;
dc1cad90 1149 unsigned int num = t->facility_number;
963b5f2d 1150 LttFacility * f;
dc1cad90 1151
1152 for(i=0;i<num;i++){
963b5f2d 1153 f = (LttFacility*)g_ptr_array_index(t->facilities, i);
1154 count += f->event_number;
1155 }
1156 return count;
6cd62ccf 1157}
3aee1200 1158#endif //0
6cd62ccf 1159
3aee1200 1160#if 0
1161//use an iteration on all the trace facilities, and inside iteration on all the
1162//event types in each facilities instead.
963b5f2d 1163LttEventType *ltt_trace_eventtype_get(LttTrace *t, unsigned evId)
6cd62ccf 1164{
6e8c19d4 1165 LttEventType *event_type;
1166
963b5f2d 1167 LttFacility * f;
1168 f = ltt_trace_facility_by_id(t,evId);
6e8c19d4 1169
1170 if(unlikely(!f)) event_type = NULL;
1171 else event_type = f->events[evId - f->base_id];
1172
1173 return event_type;
6cd62ccf 1174}
3aee1200 1175#endif //0
6cd62ccf 1176
3aee1200 1177#if 0
6cd62ccf 1178/*****************************************************************************
3aee1200 1179 * ltt_trace_find_tracefile
1180 *
1181 * Find a tracefile by name and index in the group.
1182 *
1183 * Returns a pointer to the tracefiles, else NULL.
6cd62ccf 1184 ****************************************************************************/
6cd62ccf 1185
3aee1200 1186LttTracefile *ltt_trace_find_tracefile(LttTrace *t, const gchar *name)
6cd62ccf 1187{
6cd62ccf 1188}
3aee1200 1189#endif //0
6cd62ccf 1190
1191/*****************************************************************************
3aee1200 1192 * Get the start time and end time of the trace
6cd62ccf 1193 ****************************************************************************/
1194
3aee1200 1195static void ltt_tracefile_time_span_get(LttTracefile *tf,
1196 LttTime *start, LttTime *end)
6cd62ccf 1197{
3aee1200 1198 int err;
6cd62ccf 1199
3aee1200 1200 err = map_block(tf, 0);
1201 if(unlikely(err)) {
1202 g_error("Can not map block");
1203 *start = ltt_time_infinite;
1204 } else
1205 *start = tf->buffer.begin.timestamp;
1206
1207 err = map_block(tf, tf->num_blocks - 1); /* Last block */
1208 if(unlikely(err)) {
1209 g_error("Can not map block");
1210 *end = ltt_time_zero;
1211 } else
1212 *end = tf->buffer.end.timestamp;
6cd62ccf 1213}
1214
3aee1200 1215struct tracefile_time_span_get_args {
1216 LttTrace *t;
1217 LttTime *start;
1218 LttTime *end;
1219};
963b5f2d 1220
3aee1200 1221static void group_time_span_get(GQuark name, gpointer data, gpointer user_data)
963b5f2d 1222{
3aee1200 1223 struct tracefile_time_span_get_args *args =
1224 (struct tracefile_time_span_get_args*)user_data;
1225
1226 GArray *group = (GArray *)data;
1227 int i;
1228 LttTracefile *tf;
1229 LttTime tmp_start;
1230 LttTime tmp_end;
1231
1232 for(i=0; i<group->len; i++) {
1233 tf = &g_array_index (group, LttTracefile, i);
1234 if(tf->cpu_online) {
1235 ltt_tracefile_time_span_get(tf, &tmp_start, &tmp_end);
1236 if(ltt_time_compare(*args->start, tmp_start)>0) *args->start = tmp_start;
1237 if(ltt_time_compare(*args->end, tmp_end)<0) *args->end = tmp_end;
1238 }
1239 }
6cd62ccf 1240}
1241
487ad181 1242void ltt_trace_time_span_get(LttTrace *t, LttTime *start, LttTime *end)
1243{
3aee1200 1244 LttTime min_start = ltt_time_infinite;
1245 LttTime max_end = ltt_time_zero;
1246 struct tracefile_time_span_get_args args = { t, &min_start, &max_end };
487ad181 1247
3aee1200 1248 g_datalist_foreach(&t->tracefiles, &group_time_span_get, &args);
1249
1250 if(start != NULL) *start = min_start;
1251 if(end != NULL) *end = max_end;
1252
487ad181 1253}
1254
1255
6cd62ccf 1256/*****************************************************************************
963b5f2d 1257 *Get the name of a tracefile
6cd62ccf 1258 ****************************************************************************/
1259
3aee1200 1260GQuark ltt_tracefile_name(LttTracefile *tf)
6cd62ccf 1261{
963b5f2d 1262 return tf->name;
6cd62ccf 1263}
1264
d3d34f49 1265
1266guint ltt_tracefile_num(LttTracefile *tf)
1267{
1268 return tf->cpu_num;
1269}
1270
80da81ad 1271/*****************************************************************************
1272 * Get the number of blocks in the tracefile
1273 ****************************************************************************/
1274
3aee1200 1275guint ltt_tracefile_block_number(LttTracefile *tf)
80da81ad 1276{
3aee1200 1277 return tf->num_blocks;
80da81ad 1278}
1279
caf7a67a 1280
3aee1200 1281/* Seek to the first event in a tracefile that has a time equal or greater than
1282 * the time passed in parameter.
1283 *
1284 * If the time parameter is outside the tracefile time span, seek to the first
27304273 1285 * event or if after, return ERANGE.
3aee1200 1286 *
1287 * If the time parameter is before the first event, we have to seek specially to
1288 * there.
1289 *
27304273 1290 * If the time is after the end of the trace, return ERANGE.
3aee1200 1291 *
1292 * Do a binary search to find the right block, then a sequential search in the
1293 * block to find the event.
1294 *
1295 * In the special case where the time requested fits inside a block that has no
1296 * event corresponding to the requested time, the first event of the next block
1297 * will be seeked.
1298 *
1299 * IMPORTANT NOTE : // FIXME everywhere...
1300 *
1301 * You MUST NOT do a ltt_tracefile_read right after a ltt_tracefile_seek_time :
1302 * you will jump over an event if you do.
1303 *
1304 * Return value : 0 : no error, the tf->event can be used
27304273 1305 * ERANGE : time if after the last event of the trace
3aee1200 1306 * otherwise : this is an error.
1307 *
1308 * */
1309
1310int ltt_tracefile_seek_time(LttTracefile *tf, LttTime time)
1311{
1312 int ret = 0;
1313 int err;
1314 unsigned int block_num, high, low;
1315
1316 /* seek at the beginning of trace */
1317 err = map_block(tf, 0); /* First block */
1318 if(unlikely(err)) {
1319 g_error("Can not map block");
1320 goto fail;
caf7a67a 1321 }
1322
3aee1200 1323 /* If the time is lower or equal the beginning of the trace,
1324 * go to the first event. */
1325 if(ltt_time_compare(time, tf->buffer.begin.timestamp) <= 0) {
1326 ret = ltt_tracefile_read(tf);
27304273 1327 if(ret == ERANGE) goto range;
1328 else if (ret) goto fail;
3aee1200 1329 goto found; /* There is either no event in the trace or the event points
1330 to the first event in the trace */
1331 }
caf7a67a 1332
3aee1200 1333 err = map_block(tf, tf->num_blocks - 1); /* Last block */
1334 if(unlikely(err)) {
1335 g_error("Can not map block");
1336 goto fail;
caf7a67a 1337 }
6cd62ccf 1338
27304273 1339 /* If the time is after the end of the trace, return ERANGE. */
1340 if(ltt_time_compare(time, tf->buffer.end.timestamp) > 0) {
1341 goto range;
3aee1200 1342 }
62e55dd6 1343
3aee1200 1344 /* Binary search the block */
1345 high = tf->num_blocks - 1;
1346 low = 0;
1347
1348 while(1) {
1349 block_num = ((high-low) / 2) + low;
1350
1351 err = map_block(tf, block_num);
1352 if(unlikely(err)) {
1353 g_error("Can not map block");
1354 goto fail;
db55eaae 1355 }
3aee1200 1356 if(high == low) {
1357 /* We cannot divide anymore : this is what would happen if the time
1358 * requested was exactly between two consecutive buffers'end and start
1359 * timestamps. This is also what would happend if we didn't deal with out
1360 * of span cases prior in this function. */
1361 /* The event is right in the buffer!
1362 * (or in the next buffer first event) */
1363 while(1) {
1364 ret = ltt_tracefile_read(tf);
27304273 1365 if(ret == ERANGE) goto range; /* ERANGE or EPERM */
3aee1200 1366 else if(ret) goto fail;
1367
1368 if(ltt_time_compare(time, tf->event.event_time) >= 0)
e45551ac 1369 goto found;
3aee1200 1370 }
1371
27304273 1372 } else if(ltt_time_compare(time, tf->buffer.begin.timestamp) < 0) {
3aee1200 1373 /* go to lower part */
1374 high = block_num;
1375 } else if(ltt_time_compare(time, tf->buffer.end.timestamp) > 0) {
1376 /* go to higher part */
1377 low = block_num;
1378 } else {/* The event is right in the buffer!
1379 (or in the next buffer first event) */
1380 while(1) {
27304273 1381 ret = ltt_tracefile_read(tf);
1382 if(ret == ERANGE) goto range; /* ERANGE or EPERM */
3aee1200 1383 else if(ret) goto fail;
1384
1385 if(ltt_time_compare(time, tf->event.event_time) >= 0)
1386 break;
6cd62ccf 1387 }
3aee1200 1388 goto found;
6cd62ccf 1389 }
6cd62ccf 1390 }
3aee1200 1391
1392found:
1393 return 0;
27304273 1394range:
1395 return ERANGE;
3aee1200 1396
1397 /* Error handling */
1398fail:
1399 g_error("ltt_tracefile_seek_time failed on tracefile %s",
1400 g_quark_to_string(tf->name));
1401 return EPERM;
6cd62ccf 1402}
1403
80da81ad 1404
3aee1200 1405int ltt_tracefile_seek_position(LttTracefile *tf, const LttEventPosition *ep) {
80da81ad 1406
3aee1200 1407 int err;
1408
1409 if(ep->tracefile != tf) {
1410 goto fail;
80da81ad 1411 }
1412
3aee1200 1413 err = map_block(tf, ep->block);
1414 if(unlikely(err)) {
1415 g_error("Can not map block");
1416 goto fail;
1417 }
1418
1419 tf->event.offset = ep->offset;
18206708 1420
3aee1200 1421 err = ltt_tracefile_read_update_event(tf);
1422 if(err) goto fail;
1423 err = ltt_tracefile_read_op(tf);
1424 if(err) goto fail;
80da81ad 1425
a0c1f622 1426 return 0;
3aee1200 1427
1428fail:
1429 g_error("ltt_tracefile_seek_time failed on tracefile %s",
1430 g_quark_to_string(tf->name));
a0c1f622 1431 return 1;
3aee1200 1432}
1433
1434/* Calculate the real event time based on the buffer boundaries */
1435LttTime ltt_interpolate_time(LttTracefile *tf, LttEvent *event)
1436{
1437 LttTime time;
1438
1439 g_assert(tf->trace->has_tsc);
1440
1441 time = ltt_time_from_uint64(
50a17d39 1442 (guint64)(tf->buffer.tsc - tf->buffer.begin.cycle_count) *
1443 tf->buffer.nsecs_per_cycle);
3aee1200 1444 time = ltt_time_add(tf->buffer.begin.timestamp, time);
1445
1446 return time;
80da81ad 1447}
1448
eed2ef37 1449
1450/* Get the current event of the tracefile : valid until the next read */
1451LttEvent *ltt_tracefile_get_event(LttTracefile *tf)
1452{
1453 return &tf->event;
1454}
1455
1456
1457
6cd62ccf 1458/*****************************************************************************
1459 *Function name
3aee1200 1460 * ltt_tracefile_read : Read the next event in the tracefile
6cd62ccf 1461 *Input params
1462 * t : tracefile
1463 *Return value
3aee1200 1464 *
1465 * Returns 0 if an event can be used in tf->event.
d822520b 1466 * Returns ERANGE on end of trace. The event in tf->event still can be used
1467 * (if the last block was not empty).
3aee1200 1468 * Returns EPERM on error.
1469 *
1470 * This function does make the tracefile event structure point to the event
1471 * currently pointed to by the tf->event.
1472 *
1473 * Note : you must call a ltt_tracefile_seek to the beginning of the trace to
1474 * reinitialize it after an error if you want results to be coherent.
1475 * It would be the case if a end of trace last buffer has no event : the end
1476 * of trace wouldn't be returned, but an error.
1477 * We make the assumption there is at least one event per buffer.
6cd62ccf 1478 ****************************************************************************/
1479
3aee1200 1480int ltt_tracefile_read(LttTracefile *tf)
6cd62ccf 1481{
963b5f2d 1482 int err;
6cd62ccf 1483
3aee1200 1484 err = ltt_tracefile_read_seek(tf);
1485 if(err) return err;
1486 err = ltt_tracefile_read_update_event(tf);
1487 if(err) return err;
1488 err = ltt_tracefile_read_op(tf);
1489 if(err) return err;
1490
1491 return 0;
1492}
1493
1494int ltt_tracefile_read_seek(LttTracefile *tf)
1495{
1496 int err;
1497
1498 /* Get next buffer until we finally have an event, or end of trace */
1499 while(1) {
1500 err = ltt_seek_next_event(tf);
1501 if(unlikely(err == ENOPROTOOPT)) {
1502 return EPERM;
bdc36259 1503 }
bdc36259 1504
3aee1200 1505 /* Are we at the end of the buffer ? */
1506 if(err == ERANGE) {
1507 if(unlikely(tf->buffer.index == tf->num_blocks-1)){ /* end of trace ? */
1508 return ERANGE;
1509 } else {
1510 /* get next block */
1511 err = map_block(tf, tf->buffer.index + 1);
1512 if(unlikely(err)) {
1513 g_error("Can not map block");
1514 return EPERM;
1515 }
1516 }
1517 } else break; /* We found an event ! */
1518 }
2dee981d 1519
3aee1200 1520 return 0;
1521}
18206708 1522
1523
3aee1200 1524/* do specific operation on events */
1525int ltt_tracefile_read_op(LttTracefile *tf)
1526{
3aee1200 1527 LttEvent *event;
1528
1529 event = &tf->event;
18206708 1530
3aee1200 1531 /* do event specific operation */
40331ba8 1532
3aee1200 1533 /* do something if its an heartbeat event : increment the heartbeat count */
1534 //if(event->facility_id == LTT_FACILITY_CORE)
1535 // if(event->event_id == LTT_EVENT_HEARTBEAT)
1536 // tf->cur_heart_beat_number++;
1537
1538 return 0;
6cd62ccf 1539}
1540
6cd62ccf 1541
3aee1200 1542/* same as ltt_tracefile_read, but does not seek to the next event nor call
1543 * event specific operation. */
1544int ltt_tracefile_read_update_event(LttTracefile *tf)
6cd62ccf 1545{
3aee1200 1546 void * pos;
1547 LttEvent *event;
1548
1549 event = &tf->event;
eed2ef37 1550 pos = tf->buffer.head + event->offset;
3aee1200 1551
1552 /* Read event header */
1553
1554 //TODO align
1555
1556 if(tf->trace->has_tsc) {
16fcbb80 1557 if(tf->trace->has_heartbeat) {
1558 event->time.timestamp = ltt_get_uint32(LTT_GET_BO(tf),
1559 pos);
1560 /* 32 bits -> 64 bits tsc */
1561 /* note : still works for seek and non seek cases. */
1562 if(event->time.timestamp < (0xFFFFFFFFULL&tf->buffer.tsc)) {
1563 tf->buffer.tsc = ((tf->buffer.tsc&0xFFFFFFFF00000000ULL)
1564 + 0x100000000ULL)
1565 | (guint64)event->time.timestamp;
1566 event->tsc = tf->buffer.tsc;
1567 } else {
1568 /* no overflow */
1569 tf->buffer.tsc = (tf->buffer.tsc&0xFFFFFFFF00000000ULL)
1570 | (guint64)event->time.timestamp;
1571 event->tsc = tf->buffer.tsc;
1572 }
1573 pos += sizeof(guint32);
3aee1200 1574 } else {
16fcbb80 1575 event->tsc = ltt_get_uint64(LTT_GET_BO(tf), pos);
1576 tf->buffer.tsc = event->tsc;
1577 pos += sizeof(guint64);
3aee1200 1578 }
16fcbb80 1579
3aee1200 1580 event->event_time = ltt_interpolate_time(tf, event);
3aee1200 1581 } else {
1582 event->time.delta.tv_sec = 0;
1583 event->time.delta.tv_nsec = ltt_get_uint32(LTT_GET_BO(tf),
1584 pos) * NSEC_PER_USEC;
1585 tf->buffer.tsc = 0;
1586 event->tsc = tf->buffer.tsc;
1587
1588 event->event_time = ltt_time_add(tf->buffer.begin.timestamp,
1589 event->time.delta);
1590 pos += sizeof(guint32);
1591 }
1592
eed2ef37 1593 event->facility_id = *(guint8*)pos;
3aee1200 1594 pos += sizeof(guint8);
1595
eed2ef37 1596 event->event_id = *(guint8*)pos;
3aee1200 1597 pos += sizeof(guint8);
1598
b77d1b57 1599 event->event_size = ltt_get_uint16(LTT_GET_BO(tf), pos);
1600 pos += sizeof(guint16);
1601
3aee1200 1602 event->data = pos;
1603
77175651 1604 /* get the data size and update the event fields with the current
1605 * information */
eed2ef37 1606 ltt_update_event_size(tf);
77175651 1607
3aee1200 1608 return 0;
6cd62ccf 1609}
1610
507915ee 1611
6cd62ccf 1612/****************************************************************************
1613 *Function name
3aee1200 1614 * map_block : map a block from the file
6cd62ccf 1615 *Input Params
1616 * lttdes : ltt trace file
1617 * whichBlock : the block which will be read
1618 *return value
1619 * 0 : success
1620 * EINVAL : lseek fail
1621 * EIO : can not read from the file
1622 ****************************************************************************/
1623
3aee1200 1624static gint map_block(LttTracefile * tf, guint block_num)
6cd62ccf 1625{
b77d1b57 1626 int page_size = getpagesize();
3aee1200 1627 struct ltt_block_start_header *header;
1628
1629 g_assert(block_num < tf->num_blocks);
6cd62ccf 1630
f628823c 1631 if(tf->buffer.head != NULL) {
1632 if(munmap(tf->buffer.head, PAGE_ALIGN(tf->buf_size))) {
1633 g_warning("unmap size : %u\n",
1634 PAGE_ALIGN(tf->buf_size));
1635 perror("munmap error");
1636 g_assert(0);
1637 }
1638 }
1639
ac849774 1640
3aee1200 1641 /* Multiple of pages aligned head */
b77d1b57 1642 tf->buffer.head = mmap(0,
f628823c 1643 PAGE_ALIGN(tf->buf_size),
b77d1b57 1644 PROT_READ, MAP_PRIVATE, tf->fd,
f628823c 1645 PAGE_ALIGN((off_t)tf->buf_size * (off_t)block_num));
3aee1200 1646
3865ea09 1647 if(tf->buffer.head == MAP_FAILED) {
3aee1200 1648 perror("Error in allocating memory for buffer of tracefile");
3865ea09 1649 g_assert(0);
3aee1200 1650 goto map_error;
6cd62ccf 1651 }
3865ea09 1652 g_assert( ( (guint)tf->buffer.head&(8-1) ) == 0); // make sure it's aligned.
3aee1200 1653
6cd62ccf 1654
3aee1200 1655 tf->buffer.index = block_num;
1656
1657 header = (struct ltt_block_start_header*)tf->buffer.head;
1658
1659 tf->buffer.begin.timestamp = ltt_get_time(LTT_GET_BO(tf),
1660 &header->begin.timestamp);
1661 tf->buffer.begin.timestamp.tv_nsec *= NSEC_PER_USEC;
e45551ac 1662 g_debug("block %u begin : %lu.%lu", block_num,
50a17d39 1663 tf->buffer.begin.timestamp.tv_sec, tf->buffer.begin.timestamp.tv_nsec);
3aee1200 1664 tf->buffer.begin.cycle_count = ltt_get_uint64(LTT_GET_BO(tf),
1665 &header->begin.cycle_count);
1666 tf->buffer.end.timestamp = ltt_get_time(LTT_GET_BO(tf),
1667 &header->end.timestamp);
1668 tf->buffer.end.timestamp.tv_nsec *= NSEC_PER_USEC;
e45551ac 1669 g_debug("block %u end : %lu.%lu", block_num,
50a17d39 1670 tf->buffer.end.timestamp.tv_sec, tf->buffer.end.timestamp.tv_nsec);
3aee1200 1671 tf->buffer.end.cycle_count = ltt_get_uint64(LTT_GET_BO(tf),
1672 &header->end.cycle_count);
1673 tf->buffer.lost_size = ltt_get_uint32(LTT_GET_BO(tf),
1674 &header->lost_size);
6cd62ccf 1675
3aee1200 1676 tf->buffer.tsc = tf->buffer.begin.cycle_count;
1677 tf->event.tsc = tf->buffer.tsc;
1678
1679 /* FIXME
1680 * eventually support variable buffer size : will need a partial pre-read of
1681 * the headers to create an index when we open the trace... eventually. */
f628823c 1682 g_assert(tf->buf_size == ltt_get_uint32(LTT_GET_BO(tf),
3aee1200 1683 &header->buf_size));
507915ee 1684
3aee1200 1685 /* Now that the buffer is mapped, calculate the time interpolation for the
1686 * block. */
1687
1688 tf->buffer.nsecs_per_cycle = calc_nsecs_per_cycle(tf);
1689
1690 /* Make the current event point to the beginning of the buffer :
1691 * it means that the event read must get the first event. */
1692 tf->event.tracefile = tf;
1693 tf->event.block = block_num;
eed2ef37 1694 tf->event.offset = 0;
3aee1200 1695
1696 return 0;
6cd62ccf 1697
3aee1200 1698map_error:
1699 return -errno;
40331ba8 1700
6cd62ccf 1701}
1702
77175651 1703/* It will update the fields offsets too */
1704void ltt_update_event_size(LttTracefile *tf)
6cd62ccf 1705{
3aee1200 1706 ssize_t size = 0;
1707
1708 /* Specific handling of core events : necessary to read the facility control
1709 * tracefile. */
77175651 1710 LttFacility *f = ltt_trace_get_facility_by_num(tf->trace,
1711 tf->event.facility_id);
6cd62ccf 1712
3865ea09 1713 if(likely(tf->event.facility_id == LTT_FACILITY_CORE)) {
1714 switch((enum ltt_core_events)tf->event.event_id) {
1715 case LTT_EVENT_FACILITY_LOAD:
b77d1b57 1716 size = strlen((char*)tf->event.data) + 1;
d2083cab 1717 g_debug("Update Event facility load of facility %s", (char*)tf->event.data);
c4afd5d8 1718 size += sizeof(struct LttFacilityLoad);
3865ea09 1719 break;
1720 case LTT_EVENT_FACILITY_UNLOAD:
d2083cab 1721 g_debug("Update Event facility unload");
3865ea09 1722 size = sizeof(struct LttFacilityUnload);
1723 break;
1724 case LTT_EVENT_STATE_DUMP_FACILITY_LOAD:
b77d1b57 1725 size = strlen((char*)tf->event.data) + 1;
d2083cab 1726 g_debug("Update Event facility load state dump of facility %s",
b77d1b57 1727 (char*)tf->event.data);
c4afd5d8 1728 size += sizeof(struct LttStateDumpFacilityLoad);
3865ea09 1729 break;
1730 case LTT_EVENT_HEARTBEAT:
d2083cab 1731 g_debug("Update Event heartbeat");
3865ea09 1732 size = sizeof(TimeHeartbeat);
1733 break;
1734 default:
1735 g_warning("Error in getting event size : tracefile %s, "
1736 "unknown event id %hhu in core facility.",
1737 g_quark_to_string(tf->name),
1738 tf->event.event_id);
1739 goto event_id_error;
2dee981d 1740
77175651 1741 }
3aee1200 1742 } else {
c4afd5d8 1743 if(!f->exists) {
1744 g_error("Unknown facility %hhu (0x%hhx) in tracefile %s",
1745 tf->event.facility_id,
1746 tf->event.facility_id,
1747 g_quark_to_string(tf->name));
1748 goto facility_error;
1749 }
1750
3aee1200 1751 LttEventType *event_type =
1752 ltt_facility_eventtype_get(f, tf->event.event_id);
c4afd5d8 1753
1754 if(!event_type) {
1755 g_error("Unknown event id %hhu in facility %s in tracefile %s",
1756 tf->event.event_id,
1757 g_quark_to_string(f->name),
1758 g_quark_to_string(tf->name));
1759 goto event_type_error;
1760 }
9eb6aa7a 1761
27304273 1762 if(event_type->root_field)
1763 size = get_field_type_size(tf, event_type,
1764 0, 0, event_type->root_field, tf->event.data);
1765 else
1766 size = 0;
c4afd5d8 1767
f628823c 1768 g_debug("Event root field : f.e %hhu.%hhu size %zd",
1769 tf->event.facility_id,
c4afd5d8 1770 tf->event.event_id, size);
3aee1200 1771 }
3aee1200 1772
77175651 1773 tf->event.data_size = size;
eed2ef37 1774
b77d1b57 1775 /* Check consistency between kernel and LTTV structure sizes */
1776 g_assert(tf->event.data_size == tf->event.event_size);
9eb6aa7a 1777
eed2ef37 1778 return;
1779
c4afd5d8 1780facility_error:
1781event_type_error:
3aee1200 1782event_id_error:
eed2ef37 1783 tf->event.data_size = 0;
6cd62ccf 1784}
1785
6cd62ccf 1786
3aee1200 1787/* Take the tf current event offset and use the event facility id and event id
1788 * to figure out where is the next event offset.
1789 *
1790 * This is an internal function not aiming at being used elsewhere : it will
1791 * not jump over the current block limits. Please consider using
1792 * ltt_tracefile_read to do this.
1793 *
1794 * Returns 0 on success
1795 * ERANGE if we are at the end of the buffer.
1796 * ENOPROTOOPT if an error occured when getting the current event size.
1797 */
1798static int ltt_seek_next_event(LttTracefile *tf)
6cd62ccf 1799{
3aee1200 1800 int ret = 0;
1801 void *pos;
3aee1200 1802
1803 /* seek over the buffer header if we are at the buffer start */
eed2ef37 1804 if(tf->event.offset == 0) {
3aee1200 1805 tf->event.offset += sizeof(struct ltt_block_start_header);
b77d1b57 1806
f628823c 1807 if(tf->event.offset == tf->buf_size - tf->buffer.lost_size) {
b77d1b57 1808 ret = ERANGE;
1809 }
3aee1200 1810 goto found;
1811 }
6cd62ccf 1812
6cd62ccf 1813
3aee1200 1814 pos = tf->event.data;
1815
77175651 1816 if(tf->event.data_size < 0) goto error;
3aee1200 1817
77175651 1818 pos += (size_t)tf->event.data_size;
3aee1200 1819
eed2ef37 1820 tf->event.offset = pos - tf->buffer.head;
cb03932a 1821
f628823c 1822 if(tf->event.offset == tf->buf_size - tf->buffer.lost_size) {
cb03932a 1823 ret = ERANGE;
1824 goto found;
1825 }
3aee1200 1826
1827found:
1828 return ret;
1829
1830error:
1831 g_error("Error in ltt_seek_next_event for tracefile %s",
1832 g_quark_to_string(tf->name));
1833 return ENOPROTOOPT;
6cd62ccf 1834}
1835
18206708 1836
6cd62ccf 1837/*****************************************************************************
1838 *Function name
3aee1200 1839 * calc_nsecs_per_cycle : calculate nsecs per cycle for current block
6cd62ccf 1840 *Input Params
1841 * t : tracefile
1842 ****************************************************************************/
1843
3aee1200 1844static double calc_nsecs_per_cycle(LttTracefile * tf)
6cd62ccf 1845{
963b5f2d 1846 LttTime lBufTotalTime; /* Total time for this buffer */
887208b7 1847 double lBufTotalNSec; /* Total time for this buffer in nsecs */
8ee1c3d5 1848 LttCycleCount lBufTotalCycle;/* Total cycles for this buffer */
6cd62ccf 1849
1850 /* Calculate the total time for this buffer */
d822520b 1851 lBufTotalTime = ltt_time_sub(tf->buffer.end.timestamp,
1852 tf->buffer.begin.timestamp);
6cd62ccf 1853
1854 /* Calculate the total cycles for this bufffer */
d822520b 1855 lBufTotalCycle = tf->buffer.end.cycle_count;
1856 lBufTotalCycle -= tf->buffer.begin.cycle_count;
6cd62ccf 1857
8ee1c3d5 1858 /* Convert the total time to double */
887208b7 1859 lBufTotalNSec = ltt_time_to_double(lBufTotalTime);
6cd62ccf 1860
3aee1200 1861 return lBufTotalNSec / (double)lBufTotalCycle;
8ee1c3d5 1862
3aee1200 1863}
1864#if 0
1865void setFieldsOffset(LttTracefile *tf, LttEventType *evT,void *evD)
1866{
1867 LttField * rootFld = evT->root_field;
1868 // rootFld->base_address = evD;
2dee981d 1869
3aee1200 1870 if(likely(rootFld))
1871 rootFld->field_size = getFieldtypeSize(tf, evT->facility,
1872 evT, 0,0,rootFld, evD);
6cd62ccf 1873}
3aee1200 1874#endif //0
6cd62ccf 1875
3aee1200 1876/*****************************************************************************
6cd62ccf 1877 *Function name
3aee1200 1878 * set_fields_offsets : set the precomputable offset of the fields
6cd62ccf 1879 *Input params
3aee1200 1880 * tracefile : opened trace file
1881 * event_type : the event type
6cd62ccf 1882 ****************************************************************************/
1883
3aee1200 1884void set_fields_offsets(LttTracefile *tf, LttEventType *event_type)
6cd62ccf 1885{
3aee1200 1886 LttField *field = event_type->root_field;
1887 enum field_status fixed_root = FIELD_FIXED, fixed_parent = FIELD_FIXED;
1888
1889 if(likely(field))
1890 preset_field_type_size(tf, event_type, 0, 0,
1891 &fixed_root, &fixed_parent,
1892 field);
1893
1894}
e4eced0f 1895
bbf28e50 1896
3aee1200 1897/*****************************************************************************
1898 *Function name
1899 * preset_field_type_size : set the fixed sizes of the field type
1900 *Input params
1901 * tf : tracefile
1902 * event_type : event type
1903 * offset_root : offset from the root
1904 * offset_parent : offset from the parent
1905 * fixed_root : Do we know a fixed offset to the root ?
1906 * fixed_parent : Do we know a fixed offset to the parent ?
1907 * field : field
1908 ****************************************************************************/
1909void preset_field_type_size(LttTracefile *tf, LttEventType *event_type,
1910 off_t offset_root, off_t offset_parent,
1911 enum field_status *fixed_root, enum field_status *fixed_parent,
1912 LttField *field)
1913{
1914 enum field_status local_fixed_root, local_fixed_parent;
1915 guint i;
1916 LttType *type;
dfb73233 1917
3aee1200 1918 g_assert(field->fixed_root == FIELD_UNKNOWN);
1919 g_assert(field->fixed_parent == FIELD_UNKNOWN);
1920 g_assert(field->fixed_size == FIELD_UNKNOWN);
dfb73233 1921
3aee1200 1922 type = field->field_type;
1923
1924 field->fixed_root = *fixed_root;
1925 if(field->fixed_root == FIELD_FIXED)
1926 field->offset_root = offset_root;
1927 else
1928 field->offset_root = 0;
1929
1930 field->fixed_parent = *fixed_parent;
1931 if(field->fixed_parent == FIELD_FIXED)
1932 field->offset_parent = offset_parent;
1933 else
1934 field->offset_parent = 0;
1935
1936 size_t current_root_offset;
1937 size_t current_offset;
1938 enum field_status current_child_status, final_child_status;
1939 size_t max_size;
1940
1941 switch(type->type_class) {
1942 case LTT_INT:
1943 case LTT_UINT:
1944 case LTT_FLOAT:
1945 case LTT_ENUM:
1946 field->field_size = ltt_type_size(tf->trace, type);
1947 field->fixed_size = FIELD_FIXED;
1948 break;
1949 case LTT_POINTER:
1950 field->field_size = (off_t)event_type->facility->pointer_size;
1951 field->fixed_size = FIELD_FIXED;
1952 break;
1953 case LTT_LONG:
1954 case LTT_ULONG:
cb03932a 1955 field->field_size = (off_t)event_type->facility->long_size;
3aee1200 1956 field->fixed_size = FIELD_FIXED;
1957 break;
1958 case LTT_SIZE_T:
1959 case LTT_SSIZE_T:
1960 case LTT_OFF_T:
1961 field->field_size = (off_t)event_type->facility->size_t_size;
1962 field->fixed_size = FIELD_FIXED;
1963 break;
1964 case LTT_SEQUENCE:
1965 local_fixed_root = FIELD_VARIABLE;
1966 local_fixed_parent = FIELD_VARIABLE;
1967 preset_field_type_size(tf, event_type,
1968 0, 0,
1969 &local_fixed_root, &local_fixed_parent,
1970 field->child[0]);
1971 field->fixed_size = FIELD_VARIABLE;
1972 field->field_size = 0;
27304273 1973 *fixed_root = FIELD_VARIABLE;
1974 *fixed_parent = FIELD_VARIABLE;
3aee1200 1975 break;
1976 case LTT_STRING:
1977 field->fixed_size = FIELD_VARIABLE;
1978 field->field_size = 0;
27304273 1979 *fixed_root = FIELD_VARIABLE;
1980 *fixed_parent = FIELD_VARIABLE;
3aee1200 1981 break;
1982 case LTT_ARRAY:
1983 local_fixed_root = FIELD_VARIABLE;
1984 local_fixed_parent = FIELD_VARIABLE;
1985 preset_field_type_size(tf, event_type,
1986 0, 0,
1987 &local_fixed_root, &local_fixed_parent,
1988 field->child[0]);
1989 field->fixed_size = field->child[0]->fixed_size;
27304273 1990 if(field->fixed_size == FIELD_FIXED) {
3aee1200 1991 field->field_size = type->element_number * field->child[0]->field_size;
27304273 1992 } else {
3aee1200 1993 field->field_size = 0;
27304273 1994 *fixed_root = FIELD_VARIABLE;
1995 *fixed_parent = FIELD_VARIABLE;
1996 }
3aee1200 1997 break;
1998 case LTT_STRUCT:
1999 current_root_offset = field->offset_root;
2000 current_offset = 0;
2001 current_child_status = FIELD_FIXED;
2002 for(i=0;i<type->element_number;i++) {
2003 preset_field_type_size(tf, event_type,
2004 current_root_offset, current_offset,
2005 fixed_root, &current_child_status,
2006 field->child[i]);
2007 if(current_child_status == FIELD_FIXED) {
2008 current_root_offset += field->child[i]->field_size;
2009 current_offset += field->child[i]->field_size;
2010 } else {
2011 current_root_offset = 0;
2012 current_offset = 0;
2013 }
2014 }
2015 if(current_child_status != FIELD_FIXED) {
2016 *fixed_parent = current_child_status;
2017 field->field_size = 0;
2018 field->fixed_size = current_child_status;
2019 } else {
2020 field->field_size = current_offset;
2021 field->fixed_size = FIELD_FIXED;
2022 }
2023 break;
2024 case LTT_UNION:
2025 current_root_offset = field->offset_root;
2026 current_offset = 0;
2027 max_size = 0;
2028 final_child_status = FIELD_FIXED;
2029 for(i=0;i<type->element_number;i++) {
2030 enum field_status current_root_child_status = FIELD_FIXED;
2031 enum field_status current_child_status = FIELD_FIXED;
2032 preset_field_type_size(tf, event_type,
2033 current_root_offset, current_offset,
2034 &current_root_child_status, &current_child_status,
2035 field->child[i]);
2036 if(current_child_status != FIELD_FIXED)
2037 final_child_status = current_child_status;
2038 else
2039 max_size = max(max_size, field->child[i]->field_size);
2040 }
2041 if(final_child_status != FIELD_FIXED) {
2042 *fixed_root = final_child_status;
2043 *fixed_parent = final_child_status;
2044 field->field_size = 0;
2045 field->fixed_size = current_child_status;
2046 } else {
2047 field->field_size = max_size;
2048 field->fixed_size = FIELD_FIXED;
2049 }
2050 break;
dfb73233 2051 }
2052
6cd62ccf 2053}
2054
3aee1200 2055
77175651 2056/*****************************************************************************
2057 *Function name
2058 * check_fields_compatibility : Check for compatibility between two fields :
2059 * do they use the same inner structure ?
2060 *Input params
2061 * event_type1 : event type
2062 * event_type2 : event type
2063 * field1 : field
2064 * field2 : field
2065 *Returns : 0 if identical
2066 * 1 if not.
2067 ****************************************************************************/
2068gint check_fields_compatibility(LttEventType *event_type1,
2069 LttEventType *event_type2,
2070 LttField *field1, LttField *field2)
2071{
2072 guint different = 0;
77175651 2073 guint i;
2074 LttType *type1;
2075 LttType *type2;
2076
2077 if(field1 == NULL) {
2078 if(field2 == NULL) goto end;
2079 else {
2080 different = 1;
2081 goto end;
2082 }
2083 } else if(field2 == NULL) {
2084 different = 1;
2085 goto end;
2086 }
2087
2088 g_assert(field1->fixed_root != FIELD_UNKNOWN);
2089 g_assert(field2->fixed_root != FIELD_UNKNOWN);
2090 g_assert(field1->fixed_parent != FIELD_UNKNOWN);
2091 g_assert(field2->fixed_parent != FIELD_UNKNOWN);
2092 g_assert(field1->fixed_size != FIELD_UNKNOWN);
2093 g_assert(field2->fixed_size != FIELD_UNKNOWN);
2094
2095 type1 = field1->field_type;
2096 type2 = field2->field_type;
2097
77175651 2098 if(type1->type_class != type2->type_class) {
2099 different = 1;
2100 goto end;
2101 }
2102 if(type1->element_name != type2->element_name) {
2103 different = 1;
2104 goto end;
2105 }
2106
2107 switch(type1->type_class) {
2108 case LTT_INT:
2109 case LTT_UINT:
2110 case LTT_FLOAT:
2111 case LTT_POINTER:
2112 case LTT_LONG:
2113 case LTT_ULONG:
2114 case LTT_SIZE_T:
2115 case LTT_SSIZE_T:
2116 case LTT_OFF_T:
2117 if(field1->field_size != field2->field_size) {
2118 different = 1;
2119 goto end;
2120 }
2121 break;
2122 case LTT_ENUM:
2123 if(type1->element_number != type2->element_number) {
2124 different = 1;
2125 goto end;
2126 }
2127 for(i=0;i<type1->element_number;i++) {
2128 if(type1->enum_strings[i] != type2->enum_strings[i]) {
2129 different = 1;
2130 goto end;
2131 }
2132 }
2133 break;
2134 case LTT_SEQUENCE:
2135 /* Two elements : size and child */
2136 g_assert(type1->element_number != type2->element_number);
2137 for(i=0;i<type1->element_number;i++) {
2138 if(check_fields_compatibility(event_type1, event_type2,
2139 field1->child[0], field2->child[0])) {
2140 different = 1;
2141 goto end;
2142 }
2143 }
2144 break;
2145 case LTT_STRING:
2146 break;
2147 case LTT_ARRAY:
2148 if(field1->field_size != field2->field_size) {
2149 different = 1;
2150 goto end;
2151 }
2152 /* Two elements : size and child */
2153 g_assert(type1->element_number != type2->element_number);
2154 for(i=0;i<type1->element_number;i++) {
2155 if(check_fields_compatibility(event_type1, event_type2,
2156 field1->child[0], field2->child[0])) {
2157 different = 1;
2158 goto end;
2159 }
2160 }
2161 break;
2162 case LTT_STRUCT:
2163 case LTT_UNION:
2164 if(type1->element_number != type2->element_number) {
2165 different = 1;
2166 break;
2167 }
2168 for(i=0;i<type1->element_number;i++) {
2169 if(check_fields_compatibility(event_type1, event_type2,
2170 field1->child[0], field2->child[0])) {
2171 different = 1;
2172 goto end;
2173 }
2174 }
2175 break;
2176 }
2177end:
2178 return different;
2179}
2180
2181
2182
3aee1200 2183
2184#if 0
6cd62ccf 2185/*****************************************************************************
2186 *Function name
2187 * getFieldtypeSize: get the size of the field type (primitive type)
2188 *Input params
6cd62ccf 2189 * evT : event type
2190 * offsetRoot : offset from the root
2191 * offsetParent : offset from the parrent
2192 * fld : field
2193 * evD : event data, it may be NULL
2194 *Return value
2195 * int : size of the field
2196 ****************************************************************************/
2197
3aee1200 2198static inline gint getFieldtypeSize(LttTracefile *tf,
21182d4a 2199 LttEventType * evT, gint offsetRoot,
3aee1200 2200 gint offsetParent, LttField * fld, void *evD)
6cd62ccf 2201{
21182d4a 2202 gint size, size1, element_number, i, offset1, offset2;
963b5f2d 2203 LttType * type = fld->field_type;
6cd62ccf 2204
3aee1200 2205 /* This likely has been tested with gcov : half of them.. */
2206 if(unlikely(fld->field_fixed == 1)){
2207 /* tested : none */
2208 if(unlikely(fld == evT->root_field)) {
2209 size = fld->field_size;
2210 goto end_getFieldtypeSize;
21182d4a 2211 }
3aee1200 2212 }
6cd62ccf 2213
3aee1200 2214 /* From gcov profiling : half string, half struct, can we gain something
2215 * from that ? (Mathieu) */
2216 switch(type->type_class) {
2217 case LTT_ARRAY:
2218 element_number = (int) type->element_number;
2219 if(fld->field_fixed == -1){
2220 size = getFieldtypeSize(tf, evT, offsetRoot,
2221 0,fld->child[0], NULL);
2222 if(size == 0){ //has string or sequence
cf74a6f1 2223 fld->field_fixed = 0;
3aee1200 2224 }else{
2225 fld->field_fixed = 1;
2226 size *= element_number;
a0d63196 2227 }
3aee1200 2228 }else if(fld->field_fixed == 0){// has string or sequence
cf74a6f1 2229 size = 0;
3aee1200 2230 for(i=0;i<element_number;i++){
2231 size += getFieldtypeSize(tf, evT, offsetRoot+size,size,
2232 fld->child[0], evD+size);
cf74a6f1 2233 }
3aee1200 2234 }else size = fld->field_size;
2235 if(unlikely(!evD)){
a0d63196 2236 fld->fixed_root = (offsetRoot==-1) ? 0 : 1;
2237 fld->fixed_parent = (offsetParent==-1) ? 0 : 1;
3aee1200 2238 }
cf74a6f1 2239
3aee1200 2240 break;
2241
2242 case LTT_SEQUENCE:
2243 size1 = (int) ltt_type_size(fac, type);
2244 if(fld->field_fixed == -1){
2245 fld->sequ_number_size = size1;
2246 fld->field_fixed = 0;
2247 size = getFieldtypeSize(evT, offsetRoot,
2248 0,fld->child[0], NULL);
2249 fld->element_size = size;
2250 }else{//0: sequence
2251 element_number = getIntNumber(tf,size1,evD);
2252 type->element_number = element_number;
2253 if(fld->element_size > 0){
2254 size = element_number * fld->element_size;
2255 }else{//sequence has string or sequence
2256 size = 0;
cf74a6f1 2257 for(i=0;i<element_number;i++){
3aee1200 2258 size += getFieldtypeSize(tf, evT,
2259 offsetRoot+size+size1,size+size1,
2260 fld->child[0], evD+size+size1);
cf74a6f1 2261 }
3aee1200 2262 }
2263 size += size1;
2264 }
2265 if(unlikely(!evD)){
d37b2aaa 2266 fld->fixed_root = (offsetRoot==-1) ? 0 : 1;
2267 fld->fixed_parent = (offsetParent==-1) ? 0 : 1;
3aee1200 2268 }
cf74a6f1 2269
3aee1200 2270 break;
2271
2272 case LTT_STRING:
2273 size = 0;
2274 if(fld->field_fixed == -1){
2275 fld->field_fixed = 0;
2276 }else{//0: string
2277 /* Hope my implementation is faster than strlen (Mathieu) */
2278 char *ptr=(char*)evD;
2279 size = 1;
2280 /* from gcov : many many strings are empty, make it the common case.*/
2281 while(unlikely(*ptr != '\0')) { size++; ptr++; }
2282 //size = ptr - (char*)evD + 1; //include end : '\0'
2283 }
2284 fld->fixed_root = (offsetRoot==-1) ? 0 : 1;
2285 fld->fixed_parent = (offsetParent==-1) ? 0 : 1;
2286
2287 break;
2288
2289 case LTT_STRUCT:
2290 element_number = (int) type->element_number;
2291 size = 0;
2292 /* tested with gcov */
2293 if(unlikely(fld->field_fixed == -1)){
2294 offset1 = offsetRoot;
2295 offset2 = 0;
2296 for(i=0;i<element_number;i++){
2297 size1=getFieldtypeSize(tf, evT,offset1,offset2,
2298 fld->child[i], NULL);
2299 if(likely(size1 > 0 && size >= 0)){
2300 size += size1;
2301 if(likely(offset1 >= 0)) offset1 += size1;
2302 offset2 += size1;
2303 }else{
2304 size = -1;
2305 offset1 = -1;
2306 offset2 = -1;
2307 }
a0d63196 2308 }
3aee1200 2309 if(unlikely(size == -1)){
2310 fld->field_fixed = 0;
2311 size = 0;
2312 }else fld->field_fixed = 1;
2313 }else if(likely(fld->field_fixed == 0)){
2314 offset1 = offsetRoot;
2315 offset2 = 0;
2316 for(i=0;unlikely(i<element_number);i++){
2317 size=getFieldtypeSize(tf, evT, offset1, offset2,
2318 fld->child[i], evD+offset2);
2319 offset1 += size;
2320 offset2 += size;
2321 }
2322 size = offset2;
2323 }else size = fld->field_size;
2324 fld->fixed_root = (offsetRoot==-1) ? 0 : 1;
2325 fld->fixed_parent = (offsetParent==-1) ? 0 : 1;
2326 break;
2327
2328 default:
2329 if(unlikely(fld->field_fixed == -1)){
2330 size = (int) ltt_type_size(LTT_GET_BO(tf), type);
2331 fld->field_fixed = 1;
2332 }else size = fld->field_size;
2333 if(unlikely(!evD)){
2334 fld->fixed_root = (offsetRoot==-1) ? 0 : 1;
2335 fld->fixed_parent = (offsetParent==-1) ? 0 : 1;
2336 }
2337 break;
cf74a6f1 2338 }
2339
6cd62ccf 2340 fld->offset_root = offsetRoot;
2341 fld->offset_parent = offsetParent;
6cd62ccf 2342 fld->field_size = size;
2343
21182d4a 2344end_getFieldtypeSize:
2345
6cd62ccf 2346 return size;
2347}
3aee1200 2348#endif //0
6cd62ccf 2349
2350/*****************************************************************************
2351 *Function name
eed2ef37 2352 * ltt_get_int : get an integer number
6cd62ccf 2353 *Input params
3aee1200 2354 * reverse_byte_order: must we reverse the byte order ?
6cd62ccf 2355 * size : the size of the integer
3aee1200 2356 * ptr : the data pointer
6cd62ccf 2357 *Return value
cf74a6f1 2358 * gint64 : a 64 bits integer
6cd62ccf 2359 ****************************************************************************/
2360
eed2ef37 2361gint64 ltt_get_int(gboolean reverse_byte_order, gint size, void *data)
6cd62ccf 2362{
3aee1200 2363 gint64 val;
cf74a6f1 2364
2365 switch(size) {
3aee1200 2366 case 1: val = *((gint8*)data); break;
2367 case 2: val = ltt_get_int16(reverse_byte_order, data); break;
2368 case 4: val = ltt_get_int32(reverse_byte_order, data); break;
2369 case 8: val = ltt_get_int64(reverse_byte_order, data); break;
2370 default: val = ltt_get_int64(reverse_byte_order, data);
2371 g_critical("get_int : integer size %d unknown", size);
cf74a6f1 2372 break;
2373 }
2374
3aee1200 2375 return val;
6cd62ccf 2376}
3aee1200 2377
6cd62ccf 2378/*****************************************************************************
2379 *Function name
eed2ef37 2380 * ltt_get_uint : get an unsigned integer number
6cd62ccf 2381 *Input params
3aee1200 2382 * reverse_byte_order: must we reverse the byte order ?
2383 * size : the size of the integer
2384 * ptr : the data pointer
2385 *Return value
2386 * guint64 : a 64 bits unsigned integer
6cd62ccf 2387 ****************************************************************************/
2388
eed2ef37 2389guint64 ltt_get_uint(gboolean reverse_byte_order, gint size, void *data)
6cd62ccf 2390{
3aee1200 2391 guint64 val;
2392
2393 switch(size) {
2394 case 1: val = *((gint8*)data); break;
2395 case 2: val = ltt_get_uint16(reverse_byte_order, data); break;
2396 case 4: val = ltt_get_uint32(reverse_byte_order, data); break;
2397 case 8: val = ltt_get_uint64(reverse_byte_order, data); break;
2398 default: val = ltt_get_uint64(reverse_byte_order, data);
2399 g_critical("get_uint : unsigned integer size %d unknown",
2400 size);
2401 break;
2402 }
2403
2404 return val;
6cd62ccf 2405}
3aee1200 2406
2407
a5dcde2f 2408/* get the node name of the system */
2409
2410char * ltt_trace_system_description_node_name (LttSystemDescription * s)
2411{
2412 return s->node_name;
2413}
2414
2415
2416/* get the domain name of the system */
2417
2418char * ltt_trace_system_description_domain_name (LttSystemDescription * s)
2419{
2420 return s->domain_name;
2421}
2422
2423
2424/* get the description of the system */
2425
2426char * ltt_trace_system_description_description (LttSystemDescription * s)
2427{
2428 return s->description;
2429}
2430
2431
2432/* get the start time of the trace */
2433
2434LttTime ltt_trace_system_description_trace_start_time(LttSystemDescription *s)
2435{
2436 return s->trace_start;
2437}
2438
18206708 2439
2440LttTracefile *ltt_tracefile_new()
2441{
2442 return g_new(LttTracefile, 1);
2443}
2444
2445void ltt_tracefile_destroy(LttTracefile *tf)
2446{
2447 g_free(tf);
2448}
2449
2450void ltt_tracefile_copy(LttTracefile *dest, const LttTracefile *src)
2451{
2452 *dest = *src;
2453}
2454
3aee1200 2455/* Before library loading... */
2456
2457static void __attribute__((constructor)) init(void)
2458{
2459 LTT_FACILITY_NAME_HEARTBEAT = g_quark_from_string("heartbeat");
2460 LTT_EVENT_NAME_HEARTBEAT = g_quark_from_string("heartbeat");
2461
3865ea09 2462 LTT_TRACEFILE_NAME_FACILITIES = g_quark_from_string("/control/facilities");
3aee1200 2463}
2464
This page took 0.187994 seconds and 4 git commands to generate.