tracefile.c per block cycle counter fix
[lttv.git] / ltt / branches / poly / ltt / tracefile.c
1 /* This file is part of the Linux Trace Toolkit viewer
2 * Copyright (C) 2003-2004 Xiangxiu Yang
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License Version 2 as
6 * published by the Free Software Foundation;
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 *
13 * You should have received a copy of the GNU General Public License
14 * along with this program; if not, write to the Free Software
15 * Foundation, Inc., 59 Temple Place - Suite 330, Boston,
16 * MA 02111-1307, USA.
17 */
18
19 #include <stdio.h>
20 #include <fcntl.h>
21 #include <string.h>
22 #include <dirent.h>
23 #include <sys/stat.h>
24 #include <sys/types.h>
25 #include <errno.h>
26 #include <unistd.h>
27
28 // For realpath
29 #include <limits.h>
30 #include <stdlib.h>
31
32
33 #include "parser.h"
34 #include <ltt/ltt.h>
35 #include "ltt-private.h"
36 #include <ltt/trace.h>
37 #include <ltt/facility.h>
38 #include <ltt/event.h>
39 #include <ltt/type.h>
40
41 #define DIR_NAME_SIZE 256
42 #define __UNUSED__ __attribute__((__unused__))
43
44
45 /* obtain the time of an event */
46
47 static inline LttTime getEventTime(LttTracefile * tf);
48
49
50 /* set the offset of the fields belonging to the event,
51 need the information of the archecture */
52 void setFieldsOffset(LttTracefile *tf,LttEventType *evT,void *evD,LttTrace *t);
53
54 /* get the size of the field type according to the archtecture's
55 size and endian type(info of the archecture) */
56 int getFieldtypeSize(LttTracefile * tf, LttEventType * evT, int offsetRoot,
57 int offsetParent, LttField *fld, void *evD, LttTrace* t);
58
59 /* read a fixed size or a block information from the file (fd) */
60 int readFile(int fd, void * buf, size_t size, char * mesg);
61 int readBlock(LttTracefile * tf, int whichBlock);
62
63 /* calculate cycles per nsec for current block */
64 void getCyclePerNsec(LttTracefile * t);
65
66 /* reinitialize the info of the block which is already in the buffer */
67 void updateTracefile(LttTracefile * tf);
68
69 /* go to the next event */
70 int skipEvent(LttTracefile * t);
71
72
73 /* Functions to parse system.xml file (using glib xml parser) */
74 static void parser_start_element (GMarkupParseContext __UNUSED__ *context,
75 const gchar *element_name,
76 const gchar **attribute_names,
77 const gchar **attribute_values,
78 gpointer user_data,
79 GError **error)
80 {
81 int i=0;
82 LttSystemDescription* des = (LttSystemDescription* )user_data;
83 if(strcmp("system", element_name)){
84 *error = g_error_new(G_MARKUP_ERROR,
85 G_LOG_LEVEL_WARNING,
86 "This is not system.xml file");
87 return;
88 }
89
90 while(attribute_names[i]){
91 if(strcmp("node_name", attribute_names[i])==0){
92 des->node_name = g_strdup(attribute_values[i]);
93 }else if(strcmp("domainname", attribute_names[i])==0){
94 des->domain_name = g_strdup(attribute_values[i]);
95 }else if(strcmp("cpu", attribute_names[i])==0){
96 des->nb_cpu = atoi(attribute_values[i]);
97 }else if(strcmp("arch_size", attribute_names[i])==0){
98 if(strcmp(attribute_values[i],"LP32") == 0) des->size = LTT_LP32;
99 else if(strcmp(attribute_values[i],"ILP32") == 0) des->size = LTT_ILP32;
100 else if(strcmp(attribute_values[i],"LP64") == 0) des->size = LTT_LP64;
101 else if(strcmp(attribute_values[i],"ILP64") == 0) des->size = LTT_ILP64;
102 else if(strcmp(attribute_values[i],"UNKNOWN") == 0) des->size = LTT_UNKNOWN;
103 }else if(strcmp("endian", attribute_names[i])==0){
104 if(strcmp(attribute_values[i],"LITTLE_ENDIAN") == 0)
105 des->endian = LTT_LITTLE_ENDIAN;
106 else if(strcmp(attribute_values[i],"BIG_ENDIAN") == 0)
107 des->endian = LTT_BIG_ENDIAN;
108 }else if(strcmp("kernel_name", attribute_names[i])==0){
109 des->kernel_name = g_strdup(attribute_values[i]);
110 }else if(strcmp("kernel_release", attribute_names[i])==0){
111 des->kernel_release = g_strdup(attribute_values[i]);
112 }else if(strcmp("kernel_version", attribute_names[i])==0){
113 des->kernel_version = g_strdup(attribute_values[i]);
114 }else if(strcmp("machine", attribute_names[i])==0){
115 des->machine = g_strdup(attribute_values[i]);
116 }else if(strcmp("processor", attribute_names[i])==0){
117 des->processor = g_strdup(attribute_values[i]);
118 }else if(strcmp("hardware_platform", attribute_names[i])==0){
119 des->hardware_platform = g_strdup(attribute_values[i]);
120 }else if(strcmp("operating_system", attribute_names[i])==0){
121 des->operating_system = g_strdup(attribute_values[i]);
122 }else if(strcmp("ltt_major_version", attribute_names[i])==0){
123 des->ltt_major_version = atoi(attribute_values[i]);
124 }else if(strcmp("ltt_minor_version", attribute_names[i])==0){
125 des->ltt_minor_version = atoi(attribute_values[i]);
126 }else if(strcmp("ltt_block_size", attribute_names[i])==0){
127 des->ltt_block_size = atoi(attribute_values[i]);
128 }else{
129 *error = g_error_new(G_MARKUP_ERROR,
130 G_LOG_LEVEL_WARNING,
131 "Not a valid attribute");
132 return;
133 }
134 i++;
135 }
136 }
137
138 static void parser_characters (GMarkupParseContext __UNUSED__ *context,
139 const gchar *text,
140 gsize __UNUSED__ text_len,
141 gpointer user_data,
142 GError __UNUSED__ **error)
143 {
144 LttSystemDescription* des = (LttSystemDescription* )user_data;
145 des->description = g_strdup(text);
146 }
147
148
149 /*****************************************************************************
150 *Function name
151 * ltt_tracefile_open : open a trace file, construct a LttTracefile
152 *Input params
153 * t : the trace containing the tracefile
154 * fileName : path name of the trace file
155 *Return value
156 * : a pointer to a tracefile
157 ****************************************************************************/
158
159 LttTracefile* ltt_tracefile_open(LttTrace * t, char * fileName)
160 {
161 LttTracefile * tf;
162 struct stat lTDFStat; /* Trace data file status */
163
164 tf = g_new(LttTracefile, 1);
165
166 //open the file
167 tf->name = g_strdup(fileName);
168 tf->trace = t;
169 tf->fd = open(fileName, O_RDONLY, 0);
170 if(tf->fd < 0){
171 g_warning("Unable to open input data file %s\n", fileName);
172 g_free(tf->name);
173 g_free(tf);
174 return NULL;
175 }
176
177 // Get the file's status
178 if(fstat(tf->fd, &lTDFStat) < 0){
179 g_warning("Unable to get the status of the input data file %s\n", fileName);
180 g_free(tf->name);
181 close(tf->fd);
182 g_free(tf);
183 return NULL;
184 }
185
186 // Is the file large enough to contain a trace
187 if(lTDFStat.st_size < (off_t)(sizeof(BlockStart) + EVENT_HEADER_SIZE)){
188 g_print("The input data file %s does not contain a trace\n", fileName);
189 g_free(tf->name);
190 close(tf->fd);
191 g_free(tf);
192 return NULL;
193 }
194
195 //store the size of the file
196 tf->file_size = lTDFStat.st_size;
197 tf->block_size = t->system_description->ltt_block_size;
198 tf->block_number = tf->file_size / tf->block_size;
199 tf->which_block = 0;
200
201 //allocate memory to contain the info of a block
202 tf->buffer = (void *) g_new(char, t->system_description->ltt_block_size);
203
204 //read the first block
205 if(readBlock(tf,1)) exit(1);
206
207 return tf;
208 }
209
210
211 /*****************************************************************************
212 *Open control and per cpu tracefiles
213 ****************************************************************************/
214
215 void ltt_tracefile_open_cpu(LttTrace *t, char * tracefile_name)
216 {
217 LttTracefile * tf;
218 tf = ltt_tracefile_open(t,tracefile_name);
219 if(!tf) return;
220 t->per_cpu_tracefile_number++;
221 g_ptr_array_add(t->per_cpu_tracefiles, tf);
222 }
223
224 gint ltt_tracefile_open_control(LttTrace *t, char * control_name)
225 {
226 LttTracefile * tf;
227 LttEvent ev;
228 LttFacility * f;
229 void * pos;
230 FacilityLoad fLoad;
231 unsigned int i;
232
233 tf = ltt_tracefile_open(t,control_name);
234 if(!tf) {
235 g_warning("ltt_tracefile_open_control : bad file descriptor");
236 return -1;
237 }
238 t->control_tracefile_number++;
239 g_ptr_array_add(t->control_tracefiles,tf);
240
241 //parse facilities tracefile to get base_id
242 if(strcmp(&control_name[strlen(control_name)-10],"facilities") ==0){
243 while(1){
244 if(!ltt_tracefile_read(tf,&ev)) return 0; // end of file
245
246 if(ev.event_id == TRACE_FACILITY_LOAD){
247 pos = ev.data;
248 fLoad.name = (char*)pos;
249 fLoad.checksum = *(LttChecksum*)(pos + strlen(fLoad.name));
250 fLoad.base_code = *(guint32 *)(pos + strlen(fLoad.name) + sizeof(LttChecksum));
251
252 for(i=0;i<t->facility_number;i++){
253 f = (LttFacility*)g_ptr_array_index(t->facilities,i);
254 if(strcmp(f->name,fLoad.name)==0 && fLoad.checksum==f->checksum){
255 f->base_id = fLoad.base_code;
256 break;
257 }
258 }
259 if(i==t->facility_number) {
260 g_warning("Facility: %s, checksum: %u is not found",
261 fLoad.name,(unsigned int)fLoad.checksum);
262 return -1;
263 }
264 }else if(ev.event_id == TRACE_BLOCK_START){
265 continue;
266 }else if(ev.event_id == TRACE_BLOCK_END){
267 break;
268 }else {
269 g_warning("Not valid facilities trace file");
270 return -1;
271 }
272 }
273 }
274 return 0;
275 }
276
277 /*****************************************************************************
278 *Function name
279 * ltt_tracefile_close: close a trace file,
280 *Input params
281 * t : tracefile which will be closed
282 ****************************************************************************/
283
284 void ltt_tracefile_close(LttTracefile *t)
285 {
286 g_free(t->name);
287 g_free(t->buffer);
288 close(t->fd);
289 g_free(t);
290 }
291
292
293 /*****************************************************************************
294 *Get system information
295 ****************************************************************************/
296 gint getSystemInfo(LttSystemDescription* des, char * pathname)
297 {
298 FILE * fp;
299 char buf[DIR_NAME_SIZE];
300
301 GMarkupParseContext * context;
302 GError * error = NULL;
303 GMarkupParser markup_parser =
304 {
305 parser_start_element,
306 NULL,
307 parser_characters,
308 NULL, /* passthrough */
309 NULL /* error */
310 };
311
312 fp = fopen(pathname,"r");
313 if(!fp){
314 g_warning("Can not open file : %s\n", pathname);
315 return -1;
316 }
317
318 context = g_markup_parse_context_new(&markup_parser, 0, des,NULL);
319
320 while(fgets(buf,DIR_NAME_SIZE, fp) != NULL){
321 if(!g_markup_parse_context_parse(context, buf, DIR_NAME_SIZE, &error)){
322 if(error != NULL) {
323 g_warning("Can not parse xml file: \n%s\n", error->message);
324 g_error_free(error);
325 }
326 g_markup_parse_context_free(context);
327 fclose(fp);
328 return -1;
329 }
330 }
331 g_markup_parse_context_free(context);
332 fclose(fp);
333 return 0;
334 }
335
336 /*****************************************************************************
337 *The following functions get facility/tracefile information
338 ****************************************************************************/
339
340 gint getFacilityInfo(LttTrace *t, char* eventdefs)
341 {
342 DIR * dir;
343 struct dirent *entry;
344 char * ptr;
345 unsigned int i,j;
346 LttFacility * f;
347 LttEventType * et;
348 char name[DIR_NAME_SIZE];
349
350 dir = opendir(eventdefs);
351 if(!dir) {
352 g_warning("Can not open directory: %s\n", eventdefs);
353 return -1;
354 }
355
356 while((entry = readdir(dir)) != NULL){
357 ptr = &entry->d_name[strlen(entry->d_name)-4];
358 if(strcmp(ptr,".xml") != 0) continue;
359 strcpy(name,eventdefs);
360 strcat(name,entry->d_name);
361 ltt_facility_open(t,name);
362 }
363 closedir(dir);
364
365 for(j=0;j<t->facility_number;j++){
366 f = (LttFacility*)g_ptr_array_index(t->facilities, j);
367 for(i=0; i<f->event_number; i++){
368 et = f->events[i];
369 setFieldsOffset(NULL, et, NULL, t);
370 }
371 }
372 return 0;
373 }
374
375 gint getControlFileInfo(LttTrace *t, char* control)
376 {
377 DIR * dir;
378 struct dirent *entry;
379 char name[DIR_NAME_SIZE];
380
381 dir = opendir(control);
382 if(!dir) {
383 g_warning("Can not open directory: %s\n", control);
384 return -1;
385 }
386
387 while((entry = readdir(dir)) != NULL){
388 if(strcmp(entry->d_name,"facilities") != 0 &&
389 strcmp(entry->d_name,"interrupts") != 0 &&
390 strcmp(entry->d_name,"processes") != 0) continue;
391
392 strcpy(name,control);
393 strcat(name,entry->d_name);
394 if(ltt_tracefile_open_control(t,name))
395 return -1;
396 }
397 closedir(dir);
398 return 0;
399 }
400
401 gint getCpuFileInfo(LttTrace *t, char* cpu)
402 {
403 DIR * dir;
404 struct dirent *entry;
405 char name[DIR_NAME_SIZE];
406
407 dir = opendir(cpu);
408 if(!dir) {
409 g_warning("Can not open directory: %s\n", cpu);
410 return -1;
411 }
412
413 while((entry = readdir(dir)) != NULL){
414 if(strcmp(entry->d_name,".") != 0 &&
415 strcmp(entry->d_name,"..") != 0 &&
416 strcmp(entry->d_name,".svn") != 0){
417 strcpy(name,cpu);
418 strcat(name,entry->d_name);
419 ltt_tracefile_open_cpu(t,name);
420 }else continue;
421 }
422 closedir(dir);
423 return 0;
424 }
425
426 /*****************************************************************************
427 *A trace is specified as a pathname to the directory containing all the
428 *associated data (control tracefiles, per cpu tracefiles, event
429 *descriptions...).
430 *
431 *When a trace is closed, all the associated facilities, types and fields
432 *are released as well.
433 */
434
435
436 /****************************************************************************
437 * get_absolute_pathname
438 *
439 * return the unique pathname in the system
440 *
441 * MD : Fixed this function so it uses realpath, dealing well with
442 * forgotten cases (.. were not used correctly before).
443 *
444 ****************************************************************************/
445 void get_absolute_pathname(const char *pathname, char * abs_pathname)
446 {
447 abs_pathname[0] = '\0';
448
449 if ( realpath (pathname, abs_pathname) != NULL)
450 return;
451 else
452 {
453 /* error, return the original path unmodified */
454 strcpy(abs_pathname, pathname);
455 return;
456 }
457 return;
458 }
459
460 LttTrace *ltt_trace_open(const char *pathname)
461 {
462 LttTrace * t;
463 LttSystemDescription * sys_description;
464 char eventdefs[DIR_NAME_SIZE];
465 char info[DIR_NAME_SIZE];
466 char control[DIR_NAME_SIZE];
467 char cpu[DIR_NAME_SIZE];
468 char tmp[DIR_NAME_SIZE];
469 char abs_path[DIR_NAME_SIZE];
470 gboolean has_slash = FALSE;
471
472 get_absolute_pathname(pathname, abs_path);
473 //establish the pathname to different directories
474 if(abs_path[strlen(abs_path)-1] == '/')has_slash = TRUE;
475 strcpy(eventdefs,abs_path);
476 if(!has_slash)strcat(eventdefs,"/");
477 strcat(eventdefs,"eventdefs/");
478
479 strcpy(info,abs_path);
480 if(!has_slash)strcat(info,"/");
481 strcat(info,"info/");
482
483 strcpy(control,abs_path);
484 if(!has_slash)strcat(control,"/");
485 strcat(control,"control/");
486
487 strcpy(cpu,abs_path);
488 if(!has_slash)strcat(cpu,"/");
489 strcat(cpu,"cpu/");
490
491 //new trace
492 sys_description = g_new(LttSystemDescription, 1);
493 t = g_new(LttTrace, 1);
494 t->pathname = g_strdup(abs_path);
495 t->facility_number = 0;
496 t->control_tracefile_number = 0;
497 t->per_cpu_tracefile_number = 0;
498 t->system_description = sys_description;
499 t->control_tracefiles = g_ptr_array_new();
500 t->per_cpu_tracefiles = g_ptr_array_new();
501 t->facilities = g_ptr_array_new();
502 getDataEndianType(&(t->my_arch_size), &(t->my_arch_endian));
503
504 //get system description
505 strcpy(tmp,info);
506 strcat(tmp,"system.xml");
507 if(getSystemInfo(sys_description, tmp)) {
508 g_ptr_array_free(t->facilities, TRUE);
509 g_ptr_array_free(t->per_cpu_tracefiles, TRUE);
510 g_ptr_array_free(t->control_tracefiles, TRUE);
511 g_free(sys_description);
512 g_free(t->pathname);
513 g_free(t);
514 return NULL;
515 }
516
517
518
519 //get facilities info
520 if(getFacilityInfo(t,eventdefs)) {
521 g_ptr_array_free(t->facilities, TRUE);
522 g_ptr_array_free(t->per_cpu_tracefiles, TRUE);
523 g_ptr_array_free(t->control_tracefiles, TRUE);
524 g_free(sys_description);
525 g_free(t->pathname);
526 g_free(t);
527 return NULL;
528 }
529
530 //get control tracefile info
531 getControlFileInfo(t,control);
532 /*
533 if(getControlFileInfo(t,control)) {
534 g_ptr_array_free(t->facilities, TRUE);
535 g_ptr_array_free(t->per_cpu_tracefiles, TRUE);
536 g_ptr_array_free(t->control_tracefiles, TRUE);
537 g_free(sys_description);
538 g_free(t->pathname);
539 g_free(t);
540 return NULL;
541 }*/ // With fatal error
542
543 //get cpu tracefile info
544 if(getCpuFileInfo(t,cpu)) {
545 g_ptr_array_free(t->facilities, TRUE);
546 g_ptr_array_free(t->per_cpu_tracefiles, TRUE);
547 g_ptr_array_free(t->control_tracefiles, TRUE);
548 g_free(sys_description);
549 g_free(t->pathname);
550 g_free(t);
551 return NULL;
552 }
553
554 return t;
555 }
556
557 char * ltt_trace_name(LttTrace *t)
558 {
559 return t->pathname;
560 }
561
562
563 /******************************************************************************
564 * When we copy a trace, we want all the opening actions to happen again :
565 * the trace will be reopened and totally independant from the original.
566 * That's why we call ltt_trace_open.
567 *****************************************************************************/
568 LttTrace *ltt_trace_copy(LttTrace *self)
569 {
570 return ltt_trace_open(self->pathname);
571 }
572
573 void ltt_trace_close(LttTrace *t)
574 {
575 unsigned int i;
576 LttTracefile * tf;
577 LttFacility * f;
578
579 g_free(t->pathname);
580
581 //free system_description
582 g_free(t->system_description->description);
583 g_free(t->system_description->node_name);
584 g_free(t->system_description->domain_name);
585 g_free(t->system_description->kernel_name);
586 g_free(t->system_description->kernel_release);
587 g_free(t->system_description->kernel_version);
588 g_free(t->system_description->machine);
589 g_free(t->system_description->processor);
590 g_free(t->system_description->hardware_platform);
591 g_free(t->system_description->operating_system);
592 g_free(t->system_description);
593
594 //free control_tracefiles
595 for(i=0;i<t->control_tracefile_number;i++){
596 tf = (LttTracefile*)g_ptr_array_index(t->control_tracefiles,i);
597 ltt_tracefile_close(tf);
598 }
599 g_ptr_array_free(t->control_tracefiles, TRUE);
600
601 //free per_cpu_tracefiles
602 for(i=0;i<t->per_cpu_tracefile_number;i++){
603 tf = (LttTracefile*)g_ptr_array_index(t->per_cpu_tracefiles,i);
604 ltt_tracefile_close(tf);
605 }
606 g_ptr_array_free(t->per_cpu_tracefiles, TRUE);
607
608 //free facilities
609 for(i=0;i<t->facility_number;i++){
610 f = (LttFacility*)g_ptr_array_index(t->facilities,i);
611 ltt_facility_close(f);
612 }
613 g_ptr_array_free(t->facilities, TRUE);
614
615 g_free(t);
616
617 g_blow_chunks();
618 }
619
620
621 /*****************************************************************************
622 *Get the system description of the trace
623 ****************************************************************************/
624
625 LttSystemDescription *ltt_trace_system_description(LttTrace *t)
626 {
627 return t->system_description;
628 }
629
630 /*****************************************************************************
631 * The following functions discover the facilities of the trace
632 ****************************************************************************/
633
634 unsigned ltt_trace_facility_number(LttTrace *t)
635 {
636 return (unsigned)(t->facility_number);
637 }
638
639 LttFacility *ltt_trace_facility_get(LttTrace *t, unsigned i)
640 {
641 return (LttFacility*)g_ptr_array_index(t->facilities, i);
642 }
643
644 /*****************************************************************************
645 *Function name
646 * ltt_trace_facility_find : find facilities in the trace
647 *Input params
648 * t : the trace
649 * name : facility name
650 *Output params
651 * position : position of the facility in the trace
652 *Return value
653 * : the number of facilities
654 ****************************************************************************/
655
656 unsigned ltt_trace_facility_find(LttTrace *t, char *name, unsigned *position)
657 {
658 unsigned int i, count=0;
659 LttFacility * f;
660 for(i=0;i<t->facility_number;i++){
661 f = (LttFacility*)g_ptr_array_index(t->facilities, i);
662 if(strcmp(f->name,name)==0){
663 count++;
664 if(count==1) *position = i;
665 }else{
666 if(count) break;
667 }
668 }
669 return count;
670 }
671
672 /*****************************************************************************
673 * Functions to discover all the event types in the trace
674 ****************************************************************************/
675
676 unsigned ltt_trace_eventtype_number(LttTrace *t)
677 {
678 unsigned int i;
679 unsigned count = 0;
680 LttFacility * f;
681 for(i=0;i<t->facility_number;i++){
682 f = (LttFacility*)g_ptr_array_index(t->facilities, i);
683 count += f->event_number;
684 }
685 return count;
686 }
687
688 /* FIXME : performances could be improved with a better design for this
689 * function */
690 LttFacility * ltt_trace_facility_by_id(LttTrace * trace, unsigned id)
691 {
692 LttFacility * facility = NULL;
693 unsigned int i;
694
695 for(i=0;i<trace->facility_number;i++){
696 LttFacility *iter_facility =
697 (LttFacility*) g_ptr_array_index(trace->facilities,i);
698 if(unlikely(id >= iter_facility->base_id &&
699 id < iter_facility->base_id + iter_facility->event_number)) {
700 facility = iter_facility;
701 break;
702 }
703 }
704
705 return facility;
706 }
707
708 LttEventType *ltt_trace_eventtype_get(LttTrace *t, unsigned evId)
709 {
710 LttFacility * f;
711 f = ltt_trace_facility_by_id(t,evId);
712 if(!f) return NULL;
713 return f->events[evId - f->base_id];
714 }
715
716 /*****************************************************************************
717 *There is one "per cpu" tracefile for each CPU, numbered from 0 to
718 *the maximum number of CPU in the system. When the number of CPU installed
719 *is less than the maximum, some positions are unused. There are also a
720 *number of "control" tracefiles (facilities, interrupts...).
721 ****************************************************************************/
722 unsigned ltt_trace_control_tracefile_number(LttTrace *t)
723 {
724 return t->control_tracefile_number;
725 }
726
727 unsigned ltt_trace_per_cpu_tracefile_number(LttTrace *t)
728 {
729 return t->per_cpu_tracefile_number;
730 }
731
732 /*****************************************************************************
733 *It is possible to search for the tracefiles by name or by CPU position.
734 *The index within the tracefiles of the same type is returned if found
735 *and a negative value otherwise.
736 ****************************************************************************/
737
738 int ltt_trace_control_tracefile_find(LttTrace *t, const gchar *name)
739 {
740 LttTracefile * tracefile;
741 unsigned int i;
742 for(i=0;i<t->control_tracefile_number;i++){
743 tracefile = (LttTracefile*)g_ptr_array_index(t->control_tracefiles, i);
744 if(strcmp(tracefile->name, name)==0)break;
745 }
746 if(i == t->control_tracefile_number) return -1;
747 return i;
748 }
749
750 /* not really useful. We just have to know that cpu tracefiles
751 * comes before control tracefiles.
752 */
753 int ltt_trace_per_cpu_tracefile_find(LttTrace *t, const gchar *name)
754 {
755 LttTracefile * tracefile;
756 unsigned int i;
757 for(i=0;i<t->per_cpu_tracefile_number;i++){
758 tracefile = (LttTracefile*)g_ptr_array_index(t->per_cpu_tracefiles, i);
759 if(strcmp(tracefile->name, name)==0)break;
760 }
761 if(i == t->per_cpu_tracefile_number) return -1;
762 return i;
763 }
764
765 /*****************************************************************************
766 *Get a specific tracefile
767 ****************************************************************************/
768
769 LttTracefile *ltt_trace_control_tracefile_get(LttTrace *t, unsigned i)
770 {
771 return (LttTracefile*)g_ptr_array_index(t->control_tracefiles, i);
772 }
773
774 LttTracefile *ltt_trace_per_cpu_tracefile_get(LttTrace *t, unsigned i)
775 {
776 return (LttTracefile*)g_ptr_array_index(t->per_cpu_tracefiles, i);
777 }
778
779 /*****************************************************************************
780 * Get the start time and end time of the trace
781 ****************************************************************************/
782
783 void ltt_trace_time_span_get(LttTrace *t, LttTime *start, LttTime *end)
784 {
785 LttTime startSmall, startTmp, endBig, endTmp;
786 unsigned int i, j=0;
787 LttTracefile * tf;
788
789 for(i=0;i<t->control_tracefile_number;i++){
790 tf = g_ptr_array_index(t->control_tracefiles, i);
791 readBlock(tf,1);
792 startTmp = tf->a_block_start->time;
793 readBlock(tf,tf->block_number);
794 endTmp = tf->a_block_end->time;
795 if(i==0){
796 startSmall = startTmp;
797 endBig = endTmp;
798 j = 1;
799 continue;
800 }
801 if(ltt_time_compare(startSmall,startTmp) > 0) startSmall = startTmp;
802 if(ltt_time_compare(endBig,endTmp) < 0) endBig = endTmp;
803 }
804
805 for(i=0;i<t->per_cpu_tracefile_number;i++){
806 tf = g_ptr_array_index(t->per_cpu_tracefiles, i);
807 readBlock(tf,1);
808 startTmp = tf->a_block_start->time;
809 readBlock(tf,tf->block_number);
810 endTmp = tf->a_block_end->time;
811 if(j == 0 && i==0){
812 startSmall = startTmp;
813 endBig = endTmp;
814 continue;
815 }
816 if(ltt_time_compare(startSmall,startTmp) > 0) startSmall = startTmp;
817 if(ltt_time_compare(endBig,endTmp) < 0) endBig = endTmp;
818 }
819
820 if(start != NULL) *start = startSmall;
821 if(end != NULL) *end = endBig;
822 }
823
824
825 /*****************************************************************************
826 *Get the name of a tracefile
827 ****************************************************************************/
828
829 char *ltt_tracefile_name(LttTracefile *tf)
830 {
831 return tf->name;
832 }
833
834 /*****************************************************************************
835 * Get the number of blocks in the tracefile
836 ****************************************************************************/
837
838 unsigned ltt_tracefile_block_number(LttTracefile *tf)
839 {
840 return tf->block_number;
841 }
842
843 /*****************************************************************************
844 *Function name
845 * ltt_tracefile_seek_time: seek to the first event of the trace with time
846 * larger or equal to time
847 *Input params
848 * t : tracefile
849 * time : criteria of the time
850 ****************************************************************************/
851 void ltt_tracefile_find_time_block(LttTracefile *t, LttTime time,
852 int start_block, int end_block)
853 {
854 int err, tmp_block, s, e;
855 int headTime;
856 int tailTime;
857
858 err=readBlock(t,start_block);
859 if(err) g_error("Can not read tracefile: %s\n", t->name);
860 if(start_block == end_block)return;
861
862 tailTime = ltt_time_compare(t->a_block_end->time, time);
863 if(tailTime >= 0) return;
864
865 err=readBlock(t,end_block);
866 if(err) g_error("Can not read tracefile: %s\n", t->name);
867 if(start_block+1 == end_block)return;
868
869 headTime = ltt_time_compare(t->a_block_start->time, time);
870 if(headTime <= 0 ) return;
871
872 tmp_block = (end_block + start_block)/2;
873 err=readBlock(t,tmp_block);
874 if(err) g_error("Can not read tracefile: %s\n", t->name);
875
876 headTime = ltt_time_compare(t->a_block_start->time, time);
877 tailTime = ltt_time_compare(t->a_block_end->time, time);
878 if(headTime <= 0 && tailTime >= 0) return;
879
880 if(headTime > 0){
881 s = start_block + 1;
882 e = tmp_block - 1;
883 if(s <= e)
884 ltt_tracefile_find_time_block(t, time, s, e);
885 else return;
886 }
887
888 if(tailTime < 0){
889 s = tmp_block + 1;
890 e = end_block - 1;
891 if(s <= e)
892 ltt_tracefile_find_time_block(t, time, s, e);
893 else return;
894 }
895 }
896
897 void ltt_tracefile_backward_find_time_block(LttTracefile *t, LttTime time)
898 {
899 int t_time, h_time, err;
900 err=readBlock(t,t->which_block-1);
901 if(err) g_error("Can not read tracefile: %s\n", t->name);
902 h_time = ltt_time_compare(t->a_block_start->time, time);
903 t_time = ltt_time_compare(t->a_block_end->time, time);
904 if(h_time == 0){
905 int tmp;
906 if(t->which_block == 1) return;
907 err=readBlock(t,t->which_block-1);
908 if(err) g_error("Can not read tracefile: %s\n", t->name);
909 tmp = ltt_time_compare(t->a_block_end->time, time);
910 if(tmp == 0) return ltt_tracefile_seek_time(t, time);
911 err=readBlock(t,t->which_block+1);
912 if(err) g_error("Can not read tracefile: %s\n", t->name);
913 }else if(h_time > 0){
914 ltt_tracefile_find_time_block(t, time, 1, t->which_block);
915 return ltt_tracefile_seek_time(t, time) ;
916 }else{
917 if(t_time >= 0) return ltt_tracefile_seek_time(t, time);
918 err=readBlock(t,t->which_block+1);
919 if(err) g_error("Can not read tracefile: %s\n", t->name);
920 }
921 }
922
923 void ltt_tracefile_seek_time(LttTracefile *t, LttTime time)
924 {
925 int err;
926 LttTime lttTime;
927 int headTime = ltt_time_compare(t->a_block_start->time, time);
928 int tailTime = ltt_time_compare(t->a_block_end->time, time);
929 LttEvent ev;
930
931 if(headTime < 0 && tailTime > 0){
932 if(ltt_time_compare(t->a_block_end->time, t->current_event_time) !=0) {
933 lttTime = getEventTime(t);
934 err = ltt_time_compare(lttTime, time);
935 if(err > 0){
936 if(t->which_event==2 || ltt_time_compare(t->prev_event_time,time)<0){
937 return;
938 }else{
939 updateTracefile(t);
940 return ltt_tracefile_seek_time(t, time);
941 }
942 }else if(err < 0){
943 while(1){
944 if(ltt_tracefile_read(t,&ev) == NULL) {
945 g_print("End of file\n");
946 return;
947 }
948 lttTime = getEventTime(t);
949 err = ltt_time_compare(lttTime, time);
950 if(err >= 0)return;
951 }
952 }else return;
953 }else{//we are at the end of the block
954 updateTracefile(t);
955 return ltt_tracefile_seek_time(t, time);
956 }
957 }else if(headTime >= 0){
958 if(t->which_block == 1){
959 updateTracefile(t);
960 }else{
961 if(ltt_time_compare(t->prev_block_end_time, time) >= 0 ||
962 (t->prev_block_end_time.tv_sec == 0 &&
963 t->prev_block_end_time.tv_nsec == 0 )){
964 ltt_tracefile_backward_find_time_block(t, time);
965 }else{
966 updateTracefile(t);
967 }
968 }
969 }else if(tailTime < 0){
970 if(t->which_block != t->block_number){
971 ltt_tracefile_find_time_block(t, time, t->which_block+1, t->block_number);
972 return ltt_tracefile_seek_time(t, time);
973 }else {
974 t->cur_event_pos = t->buffer + t->block_size;
975 g_print("End of file\n");
976 return;
977 }
978 }else if(tailTime == 0){
979 t->cur_event_pos = t->last_event_pos;
980 t->current_event_time = time;
981 t->cur_heart_beat_number = 0;
982 t->prev_event_time.tv_sec = 0;
983 t->prev_event_time.tv_nsec = 0;
984 return;
985 }
986 }
987
988 /*****************************************************************************
989 * Seek to the first event with position equal or larger to ep
990 *
991 * Modified by Mathieu Desnoyers to used faster offset position instead of
992 * re-reading the whole buffer.
993 ****************************************************************************/
994
995 void ltt_tracefile_seek_position(LttTracefile *t, const LttEventPosition *ep)
996 {
997 //if we are at the right place, just return
998 if(likely(t->which_block == ep->block_num && t->which_event == ep->event_num))
999 return;
1000
1001 if(likely(t->which_block == ep->block_num)) updateTracefile(t);
1002 else readBlock(t,ep->block_num);
1003 //event offset is available
1004 if(likely(ep->old_position)){
1005 int err;
1006
1007 t->which_event = ep->event_num;
1008 t->cur_event_pos = t->buffer + ep->event_offset;
1009 t->prev_event_time = ep->event_time;
1010 t->current_event_time = ep->event_time;
1011 t->cur_heart_beat_number = ep->heart_beat_number;
1012 t->cur_cycle_count = ep->event_cycle_count;
1013
1014 /* This is a workaround for fast position seek */
1015 t->last_event_pos = ep->last_event_pos;
1016 t->prev_block_end_time = ep->prev_block_end_time;
1017 t->prev_event_time = ep->prev_event_time;
1018 t->pre_cycle_count = ep->pre_cycle_count;
1019 t->count = ep->count;
1020 /* end of workaround */
1021
1022 //update the fields of the current event and go to the next event
1023 err = skipEvent(t);
1024 if(unlikely(err == ERANGE)) g_error("event id is out of range\n");
1025
1026 return;
1027 }
1028
1029 //only block number and event index are available
1030 //MD: warning : this is slow!
1031 g_warning("using slow O(n) tracefile seek position");
1032
1033 LttEvent event;
1034 while(likely(t->which_event < ep->event_num)) ltt_tracefile_read(t, &event);
1035
1036 return;
1037 }
1038
1039 /*****************************************************************************
1040 *Function name
1041 * ltt_tracefile_read : read the current event, set the pointer to the next
1042 *Input params
1043 * t : tracefile
1044 *Return value
1045 * LttEvent * : an event to be processed
1046 ****************************************************************************/
1047
1048 LttEvent *ltt_tracefile_read(LttTracefile *t, LttEvent *event)
1049 {
1050 int err;
1051
1052 if(unlikely(t->cur_event_pos == t->buffer + t->block_size)){
1053 if(unlikely(t->which_block == t->block_number)){
1054 return NULL;
1055 }
1056 err = readBlock(t, t->which_block + 1);
1057 if(unlikely(err))g_error("Can not read tracefile");
1058 }
1059
1060 event->event_id = (int)(*(guint16 *)(t->cur_event_pos));
1061 if(unlikely(event->event_id == TRACE_TIME_HEARTBEAT))
1062 t->cur_heart_beat_number++;
1063
1064 t->prev_event_time = t->current_event_time;
1065 // t->current_event_time = getEventTime(t);
1066
1067 event->time_delta = *(guint32 *)(t->cur_event_pos + EVENT_ID_SIZE);
1068 event->event_time = t->current_event_time;
1069 event->event_cycle_count = t->cur_cycle_count;
1070
1071 event->tracefile = t;
1072 event->data = t->cur_event_pos + EVENT_HEADER_SIZE;
1073 event->which_block = t->which_block;
1074 event->which_event = t->which_event;
1075
1076 /* This is a workaround for fast position seek */
1077 event->last_event_pos = t->last_event_pos;
1078 event->prev_block_end_time = t->prev_block_end_time;
1079 event->prev_event_time = t->prev_event_time;
1080 event->pre_cycle_count = t->pre_cycle_count;
1081 event->count = t->count;
1082 /* end of workaround */
1083
1084
1085
1086 //update the fields of the current event and go to the next event
1087 err = skipEvent(t);
1088 if(unlikely(err == ERANGE)) g_error("event id is out of range\n");
1089
1090 return event;
1091 }
1092
1093 /****************************************************************************
1094 *Function name
1095 * readFile : wrap function to read from a file
1096 *Input Params
1097 * fd : file descriptor
1098 * buf : buf to contain the content
1099 * size : number of bytes to be read
1100 * mesg : message to be printed if some thing goes wrong
1101 *return value
1102 * 0 : success
1103 * EIO : can not read from the file
1104 ****************************************************************************/
1105
1106 int readFile(int fd, void * buf, size_t size, char * mesg)
1107 {
1108 ssize_t nbBytes = read(fd, buf, size);
1109
1110 if((size_t)nbBytes != size) {
1111 if(nbBytes < 0) {
1112 perror("Error in readFile : ");
1113 } else {
1114 g_warning("%s",mesg);
1115 }
1116 return EIO;
1117 }
1118 return 0;
1119 }
1120
1121 /*****************************************************************************
1122 *Function name
1123 * skipEvent_pre_read_cycles : go to the next event,
1124 * update the necessary fields of the current event
1125 * increment the cycle counter, save it at the end.
1126 *Input params
1127 * t : tracefile
1128 *return value
1129 * 0 : success
1130 * ERANGE : event id is out of range
1131 ****************************************************************************/
1132
1133 int skipEvent_pre_read_cycles(LttTracefile * t)
1134 {
1135 int evId;
1136 void * evData;
1137 LttEventType * evT;
1138 LttField * rootFld;
1139
1140 evId = (int)(*(guint16 *)(t->cur_event_pos));
1141 evData = t->cur_event_pos + EVENT_HEADER_SIZE;
1142
1143 evT = ltt_trace_eventtype_get(t->trace,(unsigned)evId);
1144
1145 if(likely(evT)) rootFld = evT->root_field;
1146 else return ERANGE;
1147
1148 if(likely(rootFld)){
1149 //event has string/sequence or the last event is not the same event
1150 if(likely((evT->latest_block!=t->which_block || evT->latest_event!=t->which_event)
1151 && rootFld->field_fixed == 0)){
1152 setFieldsOffset(t, evT, evData, t->trace);
1153 }
1154 t->cur_event_pos += EVENT_HEADER_SIZE + rootFld->field_size;
1155 }else t->cur_event_pos += EVENT_HEADER_SIZE;
1156
1157 //evT->latest_block = t->which_block;
1158 //evT->latest_event = t->which_event;
1159
1160 //the next event is in the next block
1161 //if(unlikely(evId == TRACE_BLOCK_END)){
1162 // Specify end of buffer reached.
1163 // t->cur_event_pos = t->buffer + t->block_size;
1164 //}else{
1165 //g_critical("COUNT : %lu", t->cur_cycle_count);
1166 //t->which_event++;
1167 // t->current_event_time = getEventTime(t);
1168 //}
1169
1170 return 0;
1171 }
1172
1173
1174
1175
1176 /*****************************************************************************
1177 *Function name
1178 * ltt_tracefile_pre_read_cycles :
1179 * read the current event, increment the cycle counter
1180 *Input params
1181 * t : tracefile
1182 *Return value
1183 * False : end of bloc reached
1184 ****************************************************************************/
1185
1186 gboolean ltt_tracefile_pre_read_cycles(LttTracefile *tf)
1187 {
1188 int err;
1189 //LttEvent event;
1190
1191 // if(unlikely(t->cur_event_pos == t->buffer + t->block_size)){
1192 //if(unlikely(t->which_block == t->block_number)){
1193 // return FALSE;
1194 //}
1195 // return FALSE; // end of bloc reached
1196 //err = readBlock(t, t->which_block + 1);
1197 //if(unlikely(err))g_error("Can not read tracefile");
1198 //}
1199
1200 //event.event_id = (int)(*(guint16 *)(t->cur_event_pos));
1201 //if(unlikely(event.event_id == TRACE_TIME_HEARTBEAT))
1202 // t->cur_heart_beat_number++;
1203
1204 //t->prev_event_time = t->current_event_time;
1205 // t->current_event_time = getEventTime(t);
1206
1207 //event.time_delta = *(guint32 *)(t->cur_event_pos + EVENT_ID_SIZE);
1208 //event.event_time = t->current_event_time;
1209 //event.event_cycle_count = t->cur_cycle_count;
1210
1211 //event.tracefile = t;
1212 //event.data = t->cur_event_pos + EVENT_HEADER_SIZE;
1213 //event.which_block = t->which_block;
1214 //event.which_event = t->which_event;
1215
1216 /* This is a workaround for fast position seek */
1217 //event.last_event_pos = t->last_event_pos;
1218 //event.prev_block_end_time = t->prev_block_end_time;
1219 //event.prev_event_time = t->prev_event_time;
1220 //event.pre_cycle_count = t->pre_cycle_count;
1221 //event.count = t->count;
1222 /* end of workaround */
1223
1224
1225 /* Increment the cycle counter for the bloc */
1226 LttTime time;
1227 LttCycleCount cycle_count; // cycle count for the current event
1228 LttCycleCount lEventTotalCycle; // Total cycles from start for event
1229 LttCycleCount lEventNSec; // Total nsecs from start for event
1230 LttTime lTimeOffset; // Time offset in struct LttTime
1231 guint16 evId;
1232
1233 evId = *(guint16 *)tf->cur_event_pos;
1234
1235 // Calculate total time in cycles from start of buffer for this event
1236 cycle_count = (LttCycleCount)*(guint32 *)(tf->cur_event_pos + EVENT_ID_SIZE);
1237 //g_debug("event cycle count %llu", cycle_count);
1238
1239 if(unlikely(cycle_count < tf->pre_cycle_count)) tf->count++;
1240 tf->pre_cycle_count = cycle_count;
1241 cycle_count += (LttCycleCount)tf->count << 32;
1242
1243 //FIXME (MD)
1244 // if(tf->cur_heart_beat_number > tf->count)
1245 // cycle_count += (tf->cur_heart_beat_number - tf->count) << 32;
1246
1247 tf->cur_cycle_count = cycle_count;
1248 //g_debug("cur cycle count %llu", cycle_count);
1249
1250
1251
1252
1253 if(unlikely(evId == TRACE_BLOCK_START)){
1254 //g_debug("BLOCK START");
1255 }else if(unlikely(evId == TRACE_BLOCK_END)){
1256 //g_debug("BLOCK END");
1257
1258 /* The goal of all this pre reading */
1259 tf->a_block_end->cycle_count = tf->cur_cycle_count;
1260 //g_debug("end of block cycle count : %llu", tf->cur_cycle_count);
1261 return FALSE;
1262 }
1263
1264 //update the fields of the current event and go to the next event
1265 err = skipEvent_pre_read_cycles(tf);
1266 if(unlikely(err == ERANGE)) g_error("event id is out of range\n");
1267
1268
1269 return TRUE;
1270 }
1271
1272 /****************************************************************************
1273 *Function name
1274 * readBlock : read a block from the file
1275 *Input Params
1276 * lttdes : ltt trace file
1277 * whichBlock : the block which will be read
1278 *return value
1279 * 0 : success
1280 * EINVAL : lseek fail
1281 * EIO : can not read from the file
1282 ****************************************************************************/
1283
1284 int readBlock(LttTracefile * tf, int whichBlock)
1285 {
1286 off_t nbBytes;
1287 guint32 lostSize;
1288
1289 if(likely(whichBlock - tf->which_block == 1 && tf->which_block != 0)){
1290 tf->prev_block_end_time = tf->a_block_end->time;
1291 tf->prev_event_time = tf->a_block_end->time;
1292 }else{
1293 tf->prev_block_end_time.tv_sec = 0;
1294 tf->prev_block_end_time.tv_nsec = 0;
1295 tf->prev_event_time.tv_sec = 0;
1296 tf->prev_event_time.tv_nsec = 0;
1297 }
1298
1299 nbBytes=lseek(tf->fd,(off_t)((whichBlock-1)*tf->block_size), SEEK_SET);
1300 if(unlikely(nbBytes == -1)) return EINVAL;
1301
1302 if(unlikely(readFile(tf->fd,tf->buffer,tf->block_size,"Unable to read a block")))
1303 return EIO;
1304
1305 tf->a_block_start=(BlockStart *) (tf->buffer + EVENT_HEADER_SIZE);
1306 lostSize = *(guint32 *)(tf->buffer + tf->block_size - sizeof(guint32));
1307 tf->a_block_end=(BlockEnd *)(tf->buffer + tf->block_size -
1308 lostSize + EVENT_HEADER_SIZE);
1309 tf->last_event_pos = tf->buffer + tf->block_size - lostSize;
1310
1311 tf->which_block = whichBlock;
1312 tf->which_event = 1;
1313 tf->cur_event_pos = tf->buffer;//the beginning of the block, block start ev
1314 tf->cur_heart_beat_number = 0;
1315
1316 /* read the whole block to precalculate total of cycles in it */
1317 tf->count = 0;
1318 tf->pre_cycle_count = 0;
1319 tf->cur_cycle_count = tf->a_block_start->cycle_count;
1320 while(likely(ltt_tracefile_pre_read_cycles(tf)));
1321
1322 /* put back pointer at the beginning */
1323 tf->which_event = 1;
1324 tf->cur_event_pos = tf->buffer;//the beginning of the block, block start ev
1325 tf->cur_heart_beat_number = 0;
1326
1327 getCyclePerNsec(tf);
1328
1329 tf->current_event_time = getEventTime(tf);
1330
1331 return 0;
1332 }
1333
1334 /*****************************************************************************
1335 *Function name
1336 * updateTracefile : reinitialize the info of the block which is already
1337 * in the buffer
1338 *Input params
1339 * tf : tracefile
1340 ****************************************************************************/
1341
1342 void updateTracefile(LttTracefile * tf)
1343 {
1344 tf->which_event = 1;
1345 tf->cur_event_pos = tf->buffer;
1346 tf->current_event_time = getEventTime(tf);
1347 tf->cur_heart_beat_number = 0;
1348
1349 tf->prev_event_time.tv_sec = 0;
1350 tf->prev_event_time.tv_nsec = 0;
1351 }
1352
1353 /*****************************************************************************
1354 *Function name
1355 * skipEvent : go to the next event, update the fields of the current event
1356 *Input params
1357 * t : tracefile
1358 *return value
1359 * 0 : success
1360 * ERANGE : event id is out of range
1361 ****************************************************************************/
1362
1363 int skipEvent(LttTracefile * t)
1364 {
1365 int evId;
1366 void * evData;
1367 LttEventType * evT;
1368 LttField * rootFld;
1369
1370 evId = (int)(*(guint16 *)(t->cur_event_pos));
1371 evData = t->cur_event_pos + EVENT_HEADER_SIZE;
1372
1373 evT = ltt_trace_eventtype_get(t->trace,(unsigned)evId);
1374
1375 if(likely(evT)) rootFld = evT->root_field;
1376 else return ERANGE;
1377
1378 if(likely(rootFld)){
1379 //event has string/sequence or the last event is not the same event
1380 if(likely((evT->latest_block!=t->which_block || evT->latest_event!=t->which_event)
1381 && rootFld->field_fixed == 0)){
1382 setFieldsOffset(t, evT, evData, t->trace);
1383 }
1384 t->cur_event_pos += EVENT_HEADER_SIZE + rootFld->field_size;
1385 }else t->cur_event_pos += EVENT_HEADER_SIZE;
1386
1387 evT->latest_block = t->which_block;
1388 evT->latest_event = t->which_event;
1389
1390 //the next event is in the next block
1391 if(unlikely(evId == TRACE_BLOCK_END)){
1392 t->cur_event_pos = t->buffer + t->block_size;
1393 }else{
1394 t->which_event++;
1395 t->current_event_time = getEventTime(t);
1396 }
1397
1398 return 0;
1399 }
1400
1401
1402 /*****************************************************************************
1403 *Function name
1404 * getCyclePerNsec : calculate cycles per nsec for current block
1405 * MD: should have tracefile_read the whole block, so we know the
1406 * total of cycles in it before being called.
1407 *Input Params
1408 * t : tracefile
1409 ****************************************************************************/
1410
1411 void getCyclePerNsec(LttTracefile * t)
1412 {
1413 LttTime lBufTotalTime; /* Total time for this buffer */
1414 double lBufTotalNSec; /* Total time for this buffer in nsecs */
1415 double lBufTotalCycle;/* Total cycles for this buffer */
1416
1417 /* Calculate the total time for this buffer */
1418 lBufTotalTime = ltt_time_sub(t->a_block_end->time, t->a_block_start->time);
1419
1420 /* Calculate the total cycles for this bufffer */
1421 lBufTotalCycle = t->a_block_end->cycle_count;
1422 lBufTotalCycle -= t->a_block_start->cycle_count;
1423
1424 /* Convert the total time to nsecs */
1425 lBufTotalNSec = ltt_time_to_double(lBufTotalTime);
1426
1427 t->nsec_per_cycle = (double)lBufTotalNSec / (double)lBufTotalCycle;
1428 /* See : http://www.azillionmonkeys.com/qed/adiv.html */
1429 // precalculate the reciprocal, so divisions will be really fast.
1430 // 2^32-1 == 0xFFFFFFFFULL
1431 //{
1432 // double int_res = lBufTotalCycle/lBufTotalNSec;
1433 // t->cycles_per_nsec_reciprocal =
1434 // ((0xFFFF+int_res)/int_res);
1435 //}
1436
1437 }
1438
1439 /****************************************************************************
1440 *Function name
1441 * getEventTime : obtain the time of an event
1442 * NOTE : this function _really_ is on critical path.
1443 *Input params
1444 * tf : tracefile
1445 *Return value
1446 * LttTime : the time of the event
1447 ****************************************************************************/
1448
1449 static inline LttTime getEventTime(LttTracefile * tf)
1450 {
1451 LttTime time;
1452 LttCycleCount cycle_count; // cycle count for the current event
1453 LttCycleCount lEventTotalCycle; // Total cycles from start for event
1454 LttCycleCount lEventNSec; // Total nsecs from start for event
1455 LttTime lTimeOffset; // Time offset in struct LttTime
1456 guint16 evId;
1457
1458 evId = *(guint16 *)tf->cur_event_pos;
1459 if(unlikely(evId == TRACE_BLOCK_START)){
1460 tf->count = 0;
1461 tf->pre_cycle_count = 0;
1462 tf->cur_cycle_count = tf->a_block_start->cycle_count;
1463 return tf->a_block_start->time;
1464 }else if(unlikely(evId == TRACE_BLOCK_END)){
1465 tf->count = 0;
1466 tf->pre_cycle_count = 0;
1467 tf->cur_cycle_count = tf->a_block_end->cycle_count;
1468 return tf->a_block_end->time;
1469 }
1470
1471 // Calculate total time in cycles from start of buffer for this event
1472 cycle_count = (LttCycleCount)*(guint32 *)(tf->cur_event_pos + EVENT_ID_SIZE);
1473
1474 if(unlikely(cycle_count < tf->pre_cycle_count)) tf->count++;
1475 tf->pre_cycle_count = cycle_count;
1476 cycle_count += (LttCycleCount)tf->count << 32;
1477
1478 //FIXME (MD)
1479 // if(tf->cur_heart_beat_number > tf->count)
1480 // cycle_count += (tf->cur_heart_beat_number - tf->count) << 32;
1481
1482 tf->cur_cycle_count = cycle_count;
1483
1484 lEventTotalCycle = cycle_count;
1485 lEventTotalCycle -= tf->a_block_start->cycle_count;
1486
1487 // Convert it to nsecs
1488 lEventNSec = (double)lEventTotalCycle * (double)tf->nsec_per_cycle;
1489 //lEventNSec = (tf->cycles_per_nsec_reciprocal * lEventTotalCycle) >> 16;
1490
1491 // Determine offset in struct LttTime
1492 lTimeOffset = ltt_time_from_double(lEventNSec);
1493
1494 time = ltt_time_add(tf->a_block_start->time, lTimeOffset);
1495
1496 return time;
1497 }
1498
1499 /*****************************************************************************
1500 *Function name
1501 * setFieldsOffset : set offset of the fields
1502 *Input params
1503 * tracefile : opened trace file
1504 * evT : the event type
1505 * evD : event data, it may be NULL
1506 ****************************************************************************/
1507
1508 void setFieldsOffset(LttTracefile *tf,LttEventType *evT,void *evD,LttTrace* t)
1509 {
1510 LttField * rootFld = evT->root_field;
1511 // rootFld->base_address = evD;
1512
1513 if(likely(rootFld))
1514 rootFld->field_size = getFieldtypeSize(tf, evT, 0,0,rootFld, evD,t);
1515 }
1516
1517 /*****************************************************************************
1518 *Function name
1519 * getFieldtypeSize: get the size of the field type (primitive type)
1520 *Input params
1521 * tracefile : opened trace file
1522 * evT : event type
1523 * offsetRoot : offset from the root
1524 * offsetParent : offset from the parrent
1525 * fld : field
1526 * evD : event data, it may be NULL
1527 *Return value
1528 * int : size of the field
1529 ****************************************************************************/
1530
1531 int getFieldtypeSize(LttTracefile * t, LttEventType * evT, int offsetRoot,
1532 int offsetParent, LttField * fld, void *evD, LttTrace *trace)
1533 {
1534 int size, size1, element_number, i, offset1, offset2;
1535 LttType * type = fld->field_type;
1536
1537 if(likely(t)){
1538 if(unlikely(evT->latest_block==t->which_block && evT->latest_event==t->which_event)){
1539 return fld->field_size;
1540 }
1541 }
1542
1543 if(likely(fld->field_fixed == 1)){
1544 if(fld == evT->root_field) return fld->field_size;
1545 }
1546
1547 switch(type->type_class) {
1548 case LTT_ARRAY:
1549 element_number = (int) type->element_number;
1550 if(fld->field_fixed == -1){
1551 size = getFieldtypeSize(t, evT, offsetRoot,
1552 0,fld->child[0], NULL, trace);
1553 if(size == 0){ //has string or sequence
1554 fld->field_fixed = 0;
1555 }else{
1556 fld->field_fixed = 1;
1557 size *= element_number;
1558 }
1559 }else if(fld->field_fixed == 0){// has string or sequence
1560 size = 0;
1561 for(i=0;i<element_number;i++){
1562 size += getFieldtypeSize(t, evT, offsetRoot+size,size,
1563 fld->child[0], evD+size, trace);
1564 }
1565 }else size = fld->field_size;
1566 break;
1567
1568 case LTT_SEQUENCE:
1569 size1 = (int) ltt_type_size(trace, type);
1570 if(fld->field_fixed == -1){
1571 fld->sequ_number_size = size1;
1572 fld->field_fixed = 0;
1573 size = getFieldtypeSize(t, evT, offsetRoot,
1574 0,fld->child[0], NULL, trace);
1575 fld->element_size = size;
1576 }else{//0: sequence
1577 element_number = getIntNumber(size1,evD);
1578 type->element_number = element_number;
1579 if(fld->element_size > 0){
1580 size = element_number * fld->element_size;
1581 }else{//sequence has string or sequence
1582 size = 0;
1583 for(i=0;i<element_number;i++){
1584 size += getFieldtypeSize(t, evT, offsetRoot+size+size1,size+size1,
1585 fld->child[0], evD+size+size1, trace);
1586 }
1587 }
1588 size += size1;
1589 }
1590 break;
1591
1592 case LTT_STRING:
1593 size = 0;
1594 if(fld->field_fixed == -1){
1595 fld->field_fixed = 0;
1596 }else{//0: string
1597 size = strlen((char*)evD) + 1; //include end : '\0'
1598 }
1599 break;
1600
1601 case LTT_STRUCT:
1602 element_number = (int) type->element_number;
1603 size = 0;
1604 if(fld->field_fixed == -1){
1605 offset1 = offsetRoot;
1606 offset2 = 0;
1607 for(i=0;i<element_number;i++){
1608 size1=getFieldtypeSize(t, evT,offset1,offset2,
1609 fld->child[i], NULL, trace);
1610 if(size1 > 0 && size >= 0){
1611 size += size1;
1612 if(offset1 >= 0) offset1 += size1;
1613 offset2 += size1;
1614 }else{
1615 size = -1;
1616 offset1 = -1;
1617 offset2 = -1;
1618 }
1619 }
1620 if(size == -1){
1621 fld->field_fixed = 0;
1622 size = 0;
1623 }else fld->field_fixed = 1;
1624 }else if(fld->field_fixed == 0){
1625 offset1 = offsetRoot;
1626 offset2 = 0;
1627 for(i=0;i<element_number;i++){
1628 size=getFieldtypeSize(t,evT,offset1,offset2,
1629 fld->child[i],evD+offset2, trace);
1630 offset1 += size;
1631 offset2 += size;
1632 }
1633 size = offset2;
1634 }else size = fld->field_size;
1635 break;
1636
1637 default:
1638 if(fld->field_fixed == -1){
1639 size = (int) ltt_type_size(trace, type);
1640 fld->field_fixed = 1;
1641 }else size = fld->field_size;
1642 break;
1643 }
1644
1645
1646
1647 #if 0
1648 if(type->type_class != LTT_STRUCT && type->type_class != LTT_ARRAY &&
1649 type->type_class != LTT_SEQUENCE && type->type_class != LTT_STRING){
1650 if(fld->field_fixed == -1){
1651 size = (int) ltt_type_size(trace, type);
1652 fld->field_fixed = 1;
1653 }else size = fld->field_size;
1654
1655 }else if(type->type_class == LTT_ARRAY){
1656 element_number = (int) type->element_number;
1657 if(fld->field_fixed == -1){
1658 size = getFieldtypeSize(t, evT, offsetRoot,0,fld->child[0], NULL, trace);
1659 if(size == 0){ //has string or sequence
1660 fld->field_fixed = 0;
1661 }else{
1662 fld->field_fixed = 1;
1663 size *= element_number;
1664 }
1665 }else if(fld->field_fixed == 0){// has string or sequence
1666 size = 0;
1667 for(i=0;i<element_number;i++){
1668 size += getFieldtypeSize(t, evT, offsetRoot+size,size,
1669 fld->child[0], evD+size, trace);
1670 }
1671 }else size = fld->field_size;
1672
1673 }else if(type->type_class == LTT_SEQUENCE){
1674 size1 = (int) ltt_type_size(trace, type);
1675 if(fld->field_fixed == -1){
1676 fld->sequ_number_size = size1;
1677 fld->field_fixed = 0;
1678 size = getFieldtypeSize(t, evT, offsetRoot,0,fld->child[0], NULL, trace);
1679 fld->element_size = size;
1680 }else{//0: sequence
1681 element_number = getIntNumber(size1,evD);
1682 type->element_number = element_number;
1683 if(fld->element_size > 0){
1684 size = element_number * fld->element_size;
1685 }else{//sequence has string or sequence
1686 size = 0;
1687 for(i=0;i<element_number;i++){
1688 size += getFieldtypeSize(t, evT, offsetRoot+size+size1,size+size1,
1689 fld->child[0], evD+size+size1, trace);
1690 }
1691 }
1692 size += size1;
1693 }
1694
1695 }else if(type->type_class == LTT_STRING){
1696 size = 0;
1697 if(fld->field_fixed == -1){
1698 fld->field_fixed = 0;
1699 }else{//0: string
1700 size = strlen((char*)evD) + 1; //include end : '\0'
1701 }
1702
1703 }else if(type->type_class == LTT_STRUCT){
1704 element_number = (int) type->element_number;
1705 size = 0;
1706 if(fld->field_fixed == -1){
1707 offset1 = offsetRoot;
1708 offset2 = 0;
1709 for(i=0;i<element_number;i++){
1710 size1=getFieldtypeSize(t, evT,offset1,offset2, fld->child[i], NULL, trace);
1711 if(size1 > 0 && size >= 0){
1712 size += size1;
1713 if(offset1 >= 0) offset1 += size1;
1714 offset2 += size1;
1715 }else{
1716 size = -1;
1717 offset1 = -1;
1718 offset2 = -1;
1719 }
1720 }
1721 if(size == -1){
1722 fld->field_fixed = 0;
1723 size = 0;
1724 }else fld->field_fixed = 1;
1725 }else if(fld->field_fixed == 0){
1726 offset1 = offsetRoot;
1727 offset2 = 0;
1728 for(i=0;i<element_number;i++){
1729 size=getFieldtypeSize(t,evT,offset1,offset2,fld->child[i],evD+offset2, trace);
1730 offset1 += size;
1731 offset2 += size;
1732 }
1733 size = offset2;
1734 }else size = fld->field_size;
1735 }
1736 #endif //0
1737
1738 fld->offset_root = offsetRoot;
1739 fld->offset_parent = offsetParent;
1740 if(!evD){
1741 fld->fixed_root = (offsetRoot==-1) ? 0 : 1;
1742 fld->fixed_parent = (offsetParent==-1) ? 0 : 1;
1743 }
1744 fld->field_size = size;
1745
1746 return size;
1747 }
1748
1749
1750 /*****************************************************************************
1751 *Function name
1752 * getIntNumber : get an integer number
1753 *Input params
1754 * size : the size of the integer
1755 * evD : the event data
1756 *Return value
1757 * gint64 : a 64 bits integer
1758 ****************************************************************************/
1759
1760 gint64 getIntNumber(int size, void *evD)
1761 {
1762 gint64 i;
1763
1764 switch(size) {
1765 case 1: i = *(gint8 *)evD; break;
1766 case 2: i = *(gint16 *)evD; break;
1767 case 4: i = *(gint32 *)evD; break;
1768 case 8: i = *(gint64 *)evD; break;
1769 default: i = *(gint64 *)evD;
1770 g_critical("getIntNumber : integer size %d unknown", size);
1771 break;
1772 }
1773
1774 #if 0
1775 if(size == 1) i = *(gint8 *)evD;
1776 else if(size == 2) i = *(gint16 *)evD;
1777 else if(size == 4) i = *(gint32 *)evD;
1778 else if(size == 8) i = *(gint64 *)evD;
1779 #endif //0
1780
1781 return (gint64)i;
1782 }
1783
1784 /*****************************************************************************
1785 *Function name
1786 * getDataEndianType : get the data type size and endian type of the local
1787 * machine
1788 *Input params
1789 * size : size of data type
1790 * endian : endian type, little or big
1791 ****************************************************************************/
1792
1793 void getDataEndianType(LttArchSize * size, LttArchEndian * endian)
1794 {
1795 int i = 1;
1796 char c = (char) i;
1797 int sizeInt=sizeof(int), sizeLong=sizeof(long), sizePointer=sizeof(void *);
1798
1799 if(c == 1) *endian = LTT_LITTLE_ENDIAN;
1800 else *endian = LTT_BIG_ENDIAN;
1801
1802 if(sizeInt == 2 && sizeLong == 4 && sizePointer == 4)
1803 *size = LTT_LP32;
1804 else if(sizeInt == 4 && sizeLong == 4 && sizePointer == 4)
1805 *size = LTT_ILP32;
1806 else if(sizeInt == 4 && sizeLong == 8 && sizePointer == 8)
1807 *size = LTT_LP64;
1808 else if(sizeInt == 8 && sizeLong == 8 && sizePointer == 8)
1809 *size = LTT_ILP64;
1810 else *size = LTT_UNKNOWN;
1811 }
1812
1813 /* get the node name of the system */
1814
1815 char * ltt_trace_system_description_node_name (LttSystemDescription * s)
1816 {
1817 return s->node_name;
1818 }
1819
1820
1821 /* get the domain name of the system */
1822
1823 char * ltt_trace_system_description_domain_name (LttSystemDescription * s)
1824 {
1825 return s->domain_name;
1826 }
1827
1828
1829 /* get the description of the system */
1830
1831 char * ltt_trace_system_description_description (LttSystemDescription * s)
1832 {
1833 return s->description;
1834 }
1835
1836
1837 /* get the start time of the trace */
1838
1839 LttTime ltt_trace_system_description_trace_start_time(LttSystemDescription *s)
1840 {
1841 return s->trace_start;
1842 }
1843
1844
1845 LttTracefile *ltt_tracefile_new()
1846 {
1847 return g_new(LttTracefile, 1);
1848 }
1849
1850 void ltt_tracefile_destroy(LttTracefile *tf)
1851 {
1852 g_free(tf);
1853 }
1854
1855 void ltt_tracefile_copy(LttTracefile *dest, const LttTracefile *src)
1856 {
1857 *dest = *src;
1858 }
1859
This page took 0.0699 seconds and 4 git commands to generate.