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