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