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