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