facility work in progress
authorcompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Tue, 9 Aug 2005 20:01:39 +0000 (20:01 +0000)
committercompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Tue, 9 Aug 2005 20:01:39 +0000 (20:01 +0000)
git-svn-id: http://ltt.polymtl.ca/svn@1007 04897980-b3bd-0310-b5e0-8ef037075253

ltt/branches/poly/ltt-newlib/facility.c
ltt/branches/poly/ltt-newlib/ltt-private.h
ltt/branches/poly/ltt-newlib/trace.h
ltt/branches/poly/ltt-newlib/tracefile.c

index 84baac98421ce92a6c4a5907015e908b90bba2b7..dac585dcf200fd58848532522f49fa683925d590 100644 (file)
@@ -1,5 +1,6 @@
 /* This file is part of the Linux Trace Toolkit viewer
  * Copyright (C) 2003-2004 Xiangxiu Yang
+ *               2005 Mathieu Desnoyers
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License Version 2 as
@@ -67,15 +68,16 @@ void freeLttNamedType(LttType * type);
  *Input params
  *    t                       : the trace containing the facilities
  *    pathname                : the path name of the facility   
+ *
+ *returns 0 on success, 1 on error.
  ****************************************************************************/
 
-void ltt_facility_open(LttTrace * t, gchar * pathname)
+int ltt_facility_open(LttFacility *f, LttTrace * t, gchar * pathname)
 {
   gchar *token;
   parse_file in;
   gsize length;
   facility_t * fac;
-  LttFacility * f;
   LttChecksum checksum;
   GError * error = NULL;
   gchar buffer[BUFFER_SIZE];
@@ -86,7 +88,11 @@ void ltt_facility_open(LttTrace * t, gchar * pathname)
   in.name = pathname;
 
   in.fd = g_open(in.name, O_RDONLY, 0);
-  if(in.fd < 0 ) in.error(&in,"cannot open input file");
+  if(in.fd < 0 ) {
+    g_warning("cannot open facility description file %s",
+        in.name);
+    return 1;
+  }
 
   in.channel = g_io_channel_unix_new(in.fd);
   in.pos = 0;
@@ -113,13 +119,8 @@ void ltt_facility_open(LttTrace * t, gchar * pathname)
     
       g_assert(generateChecksum(fac->name, &checksum, &fac->events) == 0);
 
-      f = g_new(LttFacility,1);    
-      f->base_id = 0;
       generateFacility(f, fac, checksum);
 
-      t->facility_number++;
-      g_ptr_array_add(t->facilities,f);
-
       g_free(fac->name);
       g_free(fac->description);
       freeEvents(&fac->events);
@@ -130,9 +131,13 @@ void ltt_facility_open(LttTrace * t, gchar * pathname)
       sequence_dispose(&fac->unnamed_types);      
       g_free(fac);
     }
-    else in.error(&in,"facility token was expected");
+    else {
+      g_warning("facility token was expected in file %s", in.name);
+      goto parse_error;
+    }
   }
 
+ parse_error:
   g_io_channel_shutdown(in.channel, FALSE, &error); /* No flush */
   if(error != NULL) {
     g_warning("Can not close file: \n%s\n", error->message);
@@ -157,32 +162,51 @@ void generateFacility(LttFacility *f, facility_t *fac,LttChecksum checksum)
   char * facilityName = fac->name;
   sequence * events = &fac->events;
   int i;
-  LttEventType * evType;
+  //LttEventType * evType;
+  LttEventType * event_type;
   LttField * field;
   LttType * type;
   
-  f->name = g_strdup(facilityName);
-  f->event_number = events->position;
-  f->checksum = checksum;
+  g_assert(f->name == g_quark_from_string(facilityName));
+  g_assert(f->checksum == checksum);
+
+  //f->event_number = events->position;
   
   //initialize inner structures
-  f->events = g_new(LttEventType*,f->event_number); 
-  f->named_types_number = fac->named_types.keys.position;
-  f->named_types = g_new(LttType*, fac->named_types.keys.position);
-  for(i=0;i<fac->named_types.keys.position;i++) f->named_types[i] = NULL;
+  f->events = g_array_sized_new (FALSE, TRUE, sizeof(LttEventType),
+      events->position);
+  //f->events = g_new(LttEventType*,f->event_number);
+  f->events = g_array_set_size(f->events, events->position);
+
+  g_datalist_init(f->events_by_name);
+  g_datalist_init(f->named_types);
+  
+  //f->named_types_number = fac->named_types.keys.position;
+  //f->named_types = g_array_sized_new (FALSE, TRUE, sizeof(LttType),
+  //    fac->named_types.keys.position);
+  //f->named_types = g_new(LttType*, fac->named_types.keys.position);
+  //f->named_types = g_array_set_size(f->named_types, 
+  //    fac->named_types.keys.position);
 
   //for each event, construct field tree and type graph
   for(i=0;i<events->position;i++){
-    evType = g_new(LttEventType,1);
-    f->events[i] = evType;
+    event_type = &g_array_index(f->events, LttEventType, i);
+    //evType = g_new(LttEventType,1);
+    //f->events[i] = evType;
 
-    evType->name = g_strdup(((event_t*)(events->array[i]))->name);
-    evType->description=g_strdup(((event_t*)(events->array[i]))->description);
+    event_type->name = 
+      g_quark_from_string(((event_t*)(events->array[i]))->name);
+    
+    g_datalist_set_data(f->events_by_name, event_type->name,
+        event_type);
+    
+    event_type->description =
+      g_strdup(((event_t*)(events->array[i]))->description);
     
     field = g_new(LttField, 1);
-    evType->root_field = field;
-    evType->facility = f;
-    evType->index = i;
+    event_type->root_field = field;
+    event_type->facility = f;
+    event_type->index = i;
 
     if(((event_t*)(events->array[i]))->type != NULL){
       field->field_pos = 0;
@@ -219,7 +243,7 @@ void generateFacility(LttFacility *f, facility_t *fac,LttChecksum checksum)
  *    root_field             : root field of the event
  ****************************************************************************/
 
-void constructTypeAndFields(LttFacility * fac,type_descriptor * td, 
+void constructTypeAndFields(LttFacility * fac, type_descriptor * td, 
                             LttField * fld)
 {
   int i, flag;
@@ -280,8 +304,8 @@ void constructTypeAndFields(LttFacility * fac,type_descriptor * td,
       fld->child[i]->field_type = fld->field_type->element_type[i]; 
 
       if(flag){
-       fld->child[i]->field_type->element_name 
-         = g_strdup(((type_fields*)(td->fields.array[i]))->name);
+       fld->child[i]->field_type->element_name 
+                 = g_quark_from_string(((type_fields*)(td->fields.array[i]))->name);
       }
 
       fld->child[i]->offset_root = -1;
@@ -313,43 +337,25 @@ void constructTypeAndFields(LttFacility * fac,type_descriptor * td,
 
 LttType * lookup_named_type(LttFacility *fac, type_descriptor * td)
 {
-  LttType * lttType = NULL;
-  unsigned int i=0;
-  gchar * name;
-
-  if(td->type_name){
-    for(i=0;i<fac->named_types_number; i++){
-      if(fac->named_types[i] == NULL) break;
-      name = fac->named_types[i]->type_name;
-      if(g_ascii_strcasecmp(name, td->type_name)==0){
-             lttType = fac->named_types[i];    
-       //      if(lttType->element_name) g_free(lttType->element_name);
-       //      lttType->element_name = NULL;
-             break;    
-      }
-    }
-  }
+  GQuark name = g_quark_from_string(td->type_name);
   
-  if(!lttType){
-    lttType = g_new(LttType,1);
-    lttType->type_class = td->type;
-    if(td->fmt) lttType->fmt = g_strdup(td->fmt);
-    else lttType->fmt = NULL;
-    lttType->size = td->size;
-    lttType->enum_strings = NULL;
-    lttType->element_type = NULL;
-    lttType->element_number = 0;
-    lttType->element_name = NULL;
-    if(td->type_name){
-      lttType->type_name = g_strdup(td->type_name);
-      fac->named_types[i] = lttType; /* i is initialized, checked. */
-    }
-    else{
-      lttType->type_name = NULL;
-    }
+  LttType *type = g_datalist_get_data(fac->named_types_by_name, name);
+
+  if(type == NULL){
+    type = g_new(LttType,1);
+    type->type_name = name;
+    g_datalist_set_data_full(fac->named_types, name,
+        type, freeLttNamedType);
+    type->type_class = td->type;
+    if(td->fmt) type->fmt = g_strdup(td->fmt);
+    else type->fmt = NULL;
+    type->size = td->size;
+    type->enum_strings = NULL;
+    type->element_type = NULL;
+    type->element_number = 0;
   }
 
-  return lttType;
+  return type;
 }
 
 
@@ -359,16 +365,12 @@ LttType * lookup_named_type(LttFacility *fac, type_descriptor * td)
  *                              if usage count = 0, release the memory
  *Input params
  *    f                       : facility that will be closed
- *Return value
- *    int                     : usage count ?? status
  ****************************************************************************/
 
-int ltt_facility_close(LttFacility *f)
+void ltt_facility_close(LttFacility *f)
 {
   //release the memory it occupied
   freeFacility(f);
-
-  return 0;
 }
 
 /*****************************************************************************
@@ -377,30 +379,22 @@ int ltt_facility_close(LttFacility *f)
 
 void freeFacility(LttFacility * fac)
 {
-  unsigned int i;
-  g_free(fac->name);  //free facility name
+  guint i;
+  LttEventType *et;
 
-  //free event types
-  for(i=0;i<fac->event_number;i++){
-    freeEventtype(fac->events[i]);
+  for(i=0; i<fac->events->len; i++) {
+    et = &g_array_index (fac->events, LttEventType, i);
+    freeEventtype(et);
   }
-  g_free(fac->events);
+  g_array_free(fac->events);
 
-  //free all named types
-  for(i=0;i<fac->named_types_number;i++){
-    freeLttNamedType(fac->named_types[i]);
-    fac->named_types[i] = NULL;
-  }
-  g_free(fac->named_types);
+  g_datalist_clear(fac->named_types);
 
-  //free the facility itself
-  g_free(fac);
 }
 
 void freeEventtype(LttEventType * evType)
 {
   LttType * root_type;
-  g_free(evType->name);
   if(evType->description)
     g_free(evType->description); 
   if(evType->root_field){    
@@ -408,14 +402,10 @@ void freeEventtype(LttEventType * evType)
     freeLttField(evType->root_field);
     freeLttType(&root_type);
   }
-
-  g_free(evType);
 }
 
 void freeLttNamedType(LttType * type)
 {
-  g_free(type->type_name);
-  type->type_name = NULL;
   freeLttType(&type);
 }
 
@@ -423,11 +413,9 @@ void freeLttType(LttType ** type)
 {
   unsigned int i;
   if(*type == NULL) return;
-  if((*type)->type_name){
-    return; //this is a named type
-  }
-  if((*type)->element_name)
-    g_free((*type)->element_name);
+  //if((*type)->type_name){
+  //  return; //this is a named type
+  //}
   if((*type)->fmt)
     g_free((*type)->fmt);
   if((*type)->enum_strings){
@@ -472,12 +460,12 @@ void freeLttField(LttField * fld)
  *Function name
  *    ltt_facility_name       : obtain the facility's name
  *Input params
- *    f                       : the facility that will be closed
+ *    f                       : the facility
  *Return value
- *    char *                  : the facility's name
+ *    GQuark                  : the facility's name
  ****************************************************************************/
 
-gchar *ltt_facility_name(LttFacility *f)
+GQuark ltt_facility_name(LttFacility *f)
 {
   return f->name;
 }
@@ -486,7 +474,7 @@ gchar *ltt_facility_name(LttFacility *f)
  *Function name
  *    ltt_facility_checksum   : obtain the facility's checksum
  *Input params
- *    f                       : the facility that will be closed
+ *    f                       : the facility
  *Return value
  *    LttChecksum            : the checksum of the facility 
  ****************************************************************************/
@@ -505,9 +493,9 @@ LttChecksum ltt_facility_checksum(LttFacility *f)
  *                            : the base id of the facility
  ****************************************************************************/
 
-unsigned ltt_facility_base_id(LttFacility *f)
+guint ltt_facility_id(LttFacility *f)
 {
-  return f->base_id;
+  return f->id;
 }
 
 /*****************************************************************************
@@ -516,12 +504,12 @@ unsigned ltt_facility_base_id(LttFacility *f)
  *Input params
  *    f                            : the facility that will be closed
  *Return value
- *    unsigned                     : the number of the event types 
+ *                                 : the number of the event types 
  ****************************************************************************/
 
-unsigned ltt_facility_eventtype_number(LttFacility *f)
+guint ltt_facility_eventtype_number(LttFacility *f)
 {
-  return (f->event_number);
+  return (f->events->len);
 }
 
 /*****************************************************************************
@@ -534,9 +522,10 @@ unsigned ltt_facility_eventtype_number(LttFacility *f)
  *    LttEventType *           : the event type required  
  ****************************************************************************/
 
-LttEventType *ltt_facility_eventtype_get(LttFacility *f, unsigned i)
+LttEventType *ltt_facility_eventtype_get(LttFacility *f, guint8 i)
 {
-  return f->events[i];
+  g_assert(i < f->events->len);
+  return &g_array_index(f->events, LttEventType, i);
 }
 
 /*****************************************************************************
@@ -551,18 +540,8 @@ LttEventType *ltt_facility_eventtype_get(LttFacility *f, unsigned i)
  *    LttEventType *  : the event type required  
  ****************************************************************************/
 
-LttEventType *ltt_facility_eventtype_get_by_name(LttFacility *f, gchar *name)
+LttEventType *ltt_facility_eventtype_get_by_name(LttFacility *f, GQuark name)
 {
-  unsigned int i;
-  LttEventType * ev = NULL;
-  
-  for(i=0;i<f->event_number;i++){
-    LttEventType *iter_ev = f->events[i];
-    if(g_ascii_strcasecmp(iter_ev->name, name) == 0) {
-      ev = iter_ev;
-      break;
-    }
-  }
-  return ev;
+  LttEventType *et = g_datalist_get_data(fac->events_by_name, name);
 }
 
index a33b08b0b5a82728abae4cd75681919f02ab6447..e2317591dcf7519cb0a3ab0684e1e85fa8407166 100644 (file)
 
 #define LTT_PACKED_STRUCT __attribute__ ((packed))
 
+#define NUM_FACILITIES 256
+
+/* Hardcoded facilities */
+#define LTT_FACILITY_CORE 0
+
+/* Hardcoded events */
+enum ltt_core_events {
+    LTT_EVENT_FACILITY_LOAD,
+    LTT_EVENT_FACILITY_UNLOAD,
+    LTT_EVENT_STATE_DUMP_FACILITY_LOAD
+};
+
+/* Hardcoded events */
+enum ltt_heartbeat_events {
+    LTT_EVENT_HEARTBEAT
+};
+
+
+
+
 #if 0
 /* enumeration definition */
 
@@ -68,6 +88,22 @@ typedef guint16 uint16_t;
 typedef guint32 uint32_t;
 typedef guint64 uint64_t;
 
+/* Hardcoded facility load event : this plus an following "name" string */
+struct LttFacilityLoad {
+  guint32 checksum;
+  guint32 id;
+  guint32 long_size;
+  guint32 pointer_size;
+  guint32 size_t_size;
+  guint32 alignment;
+};
+
+struct LttFacilityUnload {
+  guint32 id;
+};
+
+
+
 typedef struct _TimeHeartbeat {
   LttTime       time;       //Time stamp of this block
   uint64_t cycle_count; //cycle count of the event
@@ -130,13 +166,11 @@ struct _LttType{
 };
 
 struct _LttEventType{
-  gchar * name;
+  GQuark name;
   gchar * description;
-  int index;              //id of the event type within the facility
+  guint index;              //id of the event type within the facility
   LttFacility * facility; //the facility that contains the event type
   LttField * root_field;  //root field
-  //unsigned int latest_block;       //the latest block using the event type
-  //unsigned int latest_event;       //the latest event using the event type
 };
 
 struct _LttEvent{
@@ -199,12 +233,26 @@ struct _LttField{
 struct _LttFacility{
   //gchar * name;               //facility name 
   GQuark name;
-  unsigned int event_number;          //number of events in the facility 
   guint32 checksum;      //checksum of the facility 
-  //guint32  base_id;          //base id of the facility
+  guint32  id;          //id of the facility
+  guint32 pointer_size;
+  guint32 size_t_size;
+  guint32 alignment;
+
+
   LttEventType ** events;    //array of event types 
+  unsigned int event_number;          //number of events in the facility 
   LttType ** named_types;
   unsigned int named_types_number;
+
+  GArray *events;
+  GData *events_by_name;
+ // GArray *named_types;
+  //GData *named_types_by_name;
+  GData *named_types;
+  
+  unsigned char exists; /* 0 does not exist, 1 exists */
 };
 
 typedef struct _LttBuffer {
@@ -258,12 +306,13 @@ struct _LttTracefile{
 
 struct _LttTrace{
   GQuark pathname;                          //the pathname of the trace
-  guint facility_number;                    //the number of facilities 
   //LttSystemDescription * system_description;//system description 
 
-  //GPtrArray *control_tracefiles;            //array of control tracefiles 
-  //GPtrArray *per_cpu_tracefiles;            //array of per cpu tracefiles 
-  GPtrArray *facilities;                    //array of facilities 
+  GArray *facilities_by_num;            /* fac_id as index in array */
+  GData *facilities_by_name;            /* fac name (GQuark) as index */
+                                        /* Points to array of fac_id of all the
+                                         * facilities that has this name. */
+
   guint8    ltt_major_version;
   guint8    ltt_minor_version;
   guint8    flight_recorder;
index 69ea71eb15683819c584a5f7e5a576411114bd05..1cf3525159f7ba8a51ac6da2580af7f4e8f5ef20 100644 (file)
@@ -124,16 +124,21 @@ unsigned ltt_tracefile_block_number(LttTracefile *tf);
 
 /* Seek to the first event of the trace with time larger or equal to time */
 
-void ltt_tracefile_seek_time(LttTracefile *t, LttTime time);
+int ltt_tracefile_seek_time(LttTracefile *t, LttTime time);
 
 /* Seek to the first event with position equal or larger to ep */
 
-void ltt_tracefile_seek_position(LttTracefile *t,
+int ltt_tracefile_seek_position(LttTracefile *t,
     const LttEventPosition *ep);
 
 /* Read the next event */
 
-LttEvent *ltt_tracefile_read(LttTracefile *t, LttEvent *event);
+int ltt_tracefile_read(LttTracefile *t);
+
+/* ltt_tracefile_read cut down in pieces */
+int ltt_tracefile_read_seek(LttTracefile *t);
+int ltt_tracefile_read_update_event(LttTracefile *t);
+int ltt_tracefile_read_op(LttTracefile *t);
 
 /* open tracefile */
 
index 312829c9601cbc163989154dac4cc07095c84c14..ee98502a02671b9aa2e66fb1b590569a7fcd9905 100644 (file)
@@ -82,18 +82,14 @@ static inline gint getFieldtypeSize(LttTracefile * tf,
          LttEventType * evT, gint offsetRoot,
                     gint offsetParent, LttField *fld, void *evD, LttTrace* t);
 
-/* read a fixed size or a block information from the file (fd) */
+/* map a fixed size or a block information from the file (fd) */
 int map_block(LttTracefile * tf, unsigned int block_num);
 
 /* calculate cycles per nsec for current block */
 void getCyclePerNsec(LttTracefile * t);
 
-/* reinitialize the info of the block which is already in the buffer */
-void updateTracefile(LttTracefile * tf);
-
 /* go to the next event */
-int skipEvent(LttTracefile * t);
-
+static int ltt_seek_next_event(LttTracefile *tf);
 
 /* Functions to parse system.xml file (using glib xml parser) */
 static void parser_start_element (GMarkupParseContext  __UNUSED__ *context,
@@ -529,6 +525,7 @@ void ltt_tracefile_group_destroy(gpointer data)
     if(tf->cpu_online)
       ltt_tracefile_close(tf);
   }
+  g_array_free(group, TRUE);
 }
 
 gboolean ltt_tracefile_group_has_cpu_online(gpointer data)
@@ -617,7 +614,7 @@ static int open_tracefiles(LttTrace *trace, char *root_path, GData *tracefiles)
       /* Add the per cpu tracefile to the named group */
       unsigned int old_len = group->len;
       if(num+1 > old_len)
-        g_array_set_size(group, num+1);
+        group = g_array_set_size(group, num+1);
       tf = &g_array_index (group, LttTracefile, num);
 
       if(ltt_tracefile_open(trace, path, tf)) {
@@ -638,11 +635,229 @@ static int open_tracefiles(LttTrace *trace, char *root_path, GData *tracefiles)
        return 0;
 }
 
+/* ltt_get_facility_description
+ *
+ * Opens the trace corresponding to the requested facility (identified by fac_id
+ * and checksum).
+ *
+ * The name searched is : %trace root%/eventdefs/facname_checksum.xml
+ *
+ * Returns 0 on success, or 1 on failure.
+ */
+
+static int ltt_get_facility_description(LttFacility *f, 
+                                        LttTrace *t)
+{
+  char desc_file_name[PATH_MAX];
+  char *text;
+  guint textlen;
+  gint err;
+
+  text = g_quark_to_string(t->pathname);
+  textlen = strlen(text);
+  
+  if(textlen >= PATH_MAX) goto name_error;
+  strcpy(desc_file_name, text);
+
+  text = "/eventdefs/";
+  textlen+=strlen(text);
+  if(textlen >= PATH_MAX) goto name_error;
+  strcat(desc_file_name, text);
+  
+  text = g_quark_to_string(f->name);
+  textlen+=strlen(text);
+  if(textlen >= PATH_MAX) goto name_error;
+  strcat(desc_file_name, text);
+
+  text = "_";
+  textlen+=strlen(text);
+  if(textlen >= PATH_MAX) goto name_error;
+  strcat(desc_file_name, text);
+
+  err = snprintf(desc_file_name+textlen, PATH_MAX-textlen-1,
+      "%u", f->checksum);
+  if(err) goto name_error;
+
+  textlen=strlen(desc_file_name);
+  
+  text = ".xml";
+  textlen+=strlen(text);
+  if(textlen >= PATH_MAX) goto name_error;
+  strcat(desc_file_name, text);
+  err = ltt_facility_open(f, t, desc_file_name);
+  if(err) goto facility_error;
+  
+  return 0;
+
+facility_error:
+name_error:
+  return 1;
+}
+
+static void ltt_tracefile_ids_destroy(gpointer data)
+{
+  GArray *fac_ids = (GArray *)data;
+  int i;
+  LttFacility *fac;
+
+  for(i=0; i<group->len; i++) {
+    fac = &g_array_index (fac_ids, LttFacility, i);
+    ltt_facility_close(fac);
+  }
+
+  g_array_free(array, TRUE);
+}
+
+
+/* Presumes the tracefile is already seeked at the beginning. It makes sense,
+ * because it must be done just after the opening */
+static int ltt_process_facility_tracefile(LttTracefile *tf)
+{
+  int err;
+  LttFacility *fac;
+  GArray *fac_ids;
+  
+  while(1) {
+    err = ltt_tracefile_read_seek(tf);
+    if(err == EPERM) goto seek_error;;
+    else if(err == ERANGE) break; /* End of tracefile */
+
+    err = ltt_tracefile_read_update_event(tf);
+    if(err) goto update_error;
+
+    /* We are on a facility load/or facility unload/ or heartbeat event */
+    /* The rules are :
+     * * facility 0 is hardcoded : this is the core facility. It will be shown
+     *   in the facility array though, and is shown as "loaded builtin" in the
+     *   trace.
+     * It contains event :
+     *  0 : facility load
+     *  1 : facility unload
+     *  2 : state dump facility load
+     * Facility 1 : (heartbeat)
+     *  0 : heartbeat
+     */
+    if(tf->event.facility_id > 1) { /* Should only contain core and heartbeat
+                                       facilities */
+      g_warning("Error in processing facility file %s, "
+          "should not contain facility id  %u.", g_quark_to_string(tf->name),
+          tf->event.facility_id);
+      err = EPERM;
+      goto fac_id_error;
+    } else if(tf->event.facility_id == 0) {
+    
+      // FIXME align
+      switch((enum ltt_core_events)tf->event.event_id) {
+        case LTT_EVENT_FACILITY_LOAD:
+          struct LttFacilityLoad *fac_load_data =
+            (struct LttFacilityLoad *)tf->event.data;
+          char *fac_name = 
+            (char*)(tf->event.data + sizeof(struct LttFacilityLoad));
+          fac = &g_array_index (tf->facilities_by_num, LttTracefile,
+              tf->event.);
+          g_assert(fac->exists == 0);
+          fac->name = g_quark_from_string(fac_name);
+          fac->checksum = ltt_get_uint32(LTT_GET_BO(tf),
+                          fac_load_data->checksum);
+          fac->id = ltt_get_uint8(LTT_GET_BO(tf), fac_load_data->id);
+          fac->pointer_size = ltt_get_uint32(LTT_GET_BO(tf),
+                          fac_load_data->pointer_size);
+          fac->size_t_size = ltt_get_uin32(LTT_GET_BO(tf),
+                          fac_load_data->size_t_size);
+          fac->alignment = ltt_get_uint32(LTT_GET_BO(tf),
+                          fac_load_data->alignment);
+
+          if(ltt_get_facility_description(fac, tf->trace))
+            goto facility_error;
+
+          fac->exists = 1;
+
+          fac_ids = g_datalist_get_data(tf->facilities_by_name, fac->name);
+          if(fac_ids == NULL) {
+            fac_ids = g_array_sized_new (FALSE, TRUE, sizeof(guint), 1);
+            g_datalist_set_data_full(tf->facilities_by_name, fac->name,
+                                     fac_ids, ltt_fac_ids_destroy);
+          }
+          g_array_append_val(fac_ids, fac->id);
+
+          break;
+        case LTT_EVENT_FACILITY_UNLOAD:
+          /* We don't care about unload : facilities ID are valid for the whole
+           * trace. They simply won't be used after the unload. */
+          break;
+        case LTT_EVENT_STATE_DUMP_FACILITY_LOAD:
+          struct LttFacilityLoad *fac_load_data =
+            (struct LttFacilityLoad *)tf->event.data;
+          char *fac_name = 
+            (char*)(tf->event.data + sizeof(struct LttFacilityLoad));
+          fac = &g_array_index (tf->facilities_by_num, LttTracefile,
+              tf->event.);
+          g_assert(fac->exists == 0);
+          fac->name = g_quark_from_string(fac_name);
+          fac->checksum = ltt_get_uint32(LTT_GET_BO(tf),
+                          fac_load_data->checksum);
+          fac->id = ltt_get_uint8(LTT_GET_BO(tf), fac_load_data->id);
+          fac->pointer_size = ltt_get_uint32(LTT_GET_BO(tf),
+                          fac_load_data->pointer_size);
+          fac->size_t_size = ltt_get_uin32(LTT_GET_BO(tf),
+                          fac_load_data->size_t_size);
+          fac->alignment = ltt_get_uint32(LTT_GET_BO(tf),
+                          fac_load_data->alignment);
+          fac->events;
+          fac->named_types;
+          fac->named_types_number;
+          fac->exists = 1;
+          
+          fac_ids = g_datalist_get_data(tf->facilities_by_name, fac->name);
+          if(fac_ids == NULL) {
+            fac_ids = g_array_sized_new (FALSE, TRUE, sizeof(guint), 1);
+            g_datalist_set_data_full(tf->facilities_by_name, fac->name,
+                                     fac_ids, ltt_fac_ids_destroy);
+          }
+          g_array_append_val(fac_ids, fac->id);
+
+          break;
+        default:
+          g_warning("Error in processing facility file %s, "
+              "unknown event id %hhu in core facility.",
+              g_quark_to_string(tf->name),
+              tf->event.event_id);
+          err = EPERM;
+          goto event_id_error;
+      }
+    } else if(tf->event.facility_id == 1) {
+
+      switch((enum ltt_heartbeat_events)tf->event.event_id) {
+        case LTT_EVENT_HEARTBEAT:
+          break;
+        default:
+          g_warning("Error in processing facility file %s, "
+              "unknown event id %hhu in heartbeat facility.",
+              g_quark_to_string(tf->name),
+              tf->event.event_id);
+          err = EPERM;
+          goto event_id_error;
+      }
+    }
+  }
+  return 0;
+
+  /* Error handling */
+facility_error:
+event_id_error:
+fac_id_error:
+update_error:
+seek_error:
+  return err;
+}
+
+
 LttTrace *ltt_trace_open(const gchar *pathname)
 {
   gchar abs_path[PATH_MAX];
   LttTrace  * t;
-  LttTracefile tf;
+  LttTracefile *tf;
   GArray *group;
   int i;
   
@@ -657,6 +872,15 @@ LttTrace *ltt_trace_open(const gchar *pathname)
   if(open_tracefiles(t, abs_path, t->tracefiles))
     goto open_error;
   
+  /* Prepare the facilities containers : array and mapping */
+  /* Array is zeroed : the "exists" field is set to false by default */
+  t->facilities_by_num = g_array_sized_new (FALSE, 
+                                            TRUE, sizeof(LttFacility),
+                                            NUM_FACILITIES);
+  t->facilities_by_num = g_array_set_size(t->facilities_by_num, NUM_FACILITIES);
+
+  g_datalist_init(t->tracefiles_by_name);
+  
   /* Load trace XML event descriptions */
   //TODO
   
@@ -669,8 +893,8 @@ LttTrace *ltt_trace_open(const gchar *pathname)
 
   for(i=0; i<group->len; i++) {
     tf = &g_array_index (group, LttTracefile, i);
-    //TODO
-    process_facility_tracefile(tf);
+    if(ltt_process_facility_tracefile(tf))
+      goto facilities_error;
   }
 
   
@@ -679,113 +903,17 @@ LttTrace *ltt_trace_open(const gchar *pathname)
 
   /* Error handling */
 facilities_error:
+  g_datalist_free(t->tracefiles_by_name);
+  g_array_free(t->facilities_by_num, TRUE);
 open_error:
   g_datalist_clear(t->tracefiles);
   g_free(t);
 alloc_error:
   return NULL;
 
-
-
-  LttSystemDescription * sys_description;
-  gchar eventdefs[DIR_NAME_SIZE];
-  gchar info[DIR_NAME_SIZE];
-  gchar cpu[DIR_NAME_SIZE];
-  gchar tmp[DIR_NAME_SIZE];
-  gboolean has_slash = FALSE;
-
-  //establish the pathname to different directories
-  if(abs_path[strlen(abs_path)-1] == '/')has_slash = TRUE;
-  strcpy(eventdefs,abs_path);
-  if(!has_slash)strcat(eventdefs,"/");
-  strcat(eventdefs,"eventdefs/");
-
-  strcpy(info,abs_path);
-  if(!has_slash)strcat(info,"/");
-  strcat(info,"info/");
-
-  strcpy(control,abs_path);
-  if(!has_slash)strcat(control,"/");
-  strcat(control,"control/");
-
-  strcpy(cpu,abs_path);
-  if(!has_slash)strcat(cpu,"/");
-  strcat(cpu,"cpu/");
-
-  //new trace
-  sys_description = g_new(LttSystemDescription, 1);  
-  t               = g_new(LttTrace, 1);
-  t->pathname     = g_strdup(abs_path);
-  t->facility_number          = 0;
-  t->control_tracefile_number = 0;
-  t->per_cpu_tracefile_number = 0;
-  t->system_description = sys_description;
-  t->control_tracefiles = g_ptr_array_new();
-  t->per_cpu_tracefiles = g_ptr_array_new();
-  t->facilities         = g_ptr_array_new();
-  //getDataEndianType(&(t->my_arch_size), &(t->my_arch_endian));
-  
-  //get system description  
-  strcpy(tmp,info);
-  strcat(tmp,"system.xml");
-  if(getSystemInfo(sys_description, tmp)) {
-    g_ptr_array_free(t->facilities, TRUE);
-    g_ptr_array_free(t->per_cpu_tracefiles, TRUE);
-    g_ptr_array_free(t->control_tracefiles, TRUE);
-    g_free(sys_description);
-    g_free(t->pathname);
-    g_free(t);
-    return NULL;
-  }
-  
-  /* Set the reverse byte order between trace and reader */
-  if(sys_description->endian == LTT_LITTLE_ENDIAN 
-          && G_BYTE_ORDER != G_LITTLE_ENDIAN) {
-    t->reverse_byte_order = 1;
-  } else if(sys_description->endian == LTT_BIG_ENDIAN
-          && G_BYTE_ORDER != G_BIG_ENDIAN) {
-    t->reverse_byte_order = 1;
-  } else t->reverse_byte_order = 0;
-
-  //get facilities info
-  if(getFacilityInfo(t,eventdefs)) {
-    g_ptr_array_free(t->facilities, TRUE);
-    g_ptr_array_free(t->per_cpu_tracefiles, TRUE);
-    g_ptr_array_free(t->control_tracefiles, TRUE);
-    g_free(sys_description);
-    g_free(t->pathname);
-    g_free(t);
-    return NULL;
-  }
-  
-  //get control tracefile info
-  getControlFileInfo(t,control);
-  /*
-  if(getControlFileInfo(t,control)) {
-    g_ptr_array_free(t->facilities, TRUE);
-    g_ptr_array_free(t->per_cpu_tracefiles, TRUE);
-    g_ptr_array_free(t->control_tracefiles, TRUE);
-    g_free(sys_description);
-    g_free(t->pathname);
-    g_free(t);
-    return NULL;
-  }*/ // With fatal error
-
-  //get cpu tracefile info
-  if(getCpuFileInfo(t,cpu)) {
-    g_ptr_array_free(t->facilities, TRUE);
-    g_ptr_array_free(t->per_cpu_tracefiles, TRUE);
-    g_ptr_array_free(t->control_tracefiles, TRUE);
-    g_free(sys_description);
-    g_free(t->pathname);
-    g_free(t);
-    return NULL;
-  }
-
-  return t;
 }
 
-char * ltt_trace_name(LttTrace *t)
+GQuark ltt_trace_name(LttTrace *t)
 {
   return t->pathname;
 }
@@ -801,6 +929,7 @@ LttTrace *ltt_trace_copy(LttTrace *self)
   return ltt_trace_open(self->pathname);
 }
 
+//FIXME TODO
 void ltt_trace_close(LttTrace *t)
 {
   unsigned int i;
@@ -853,51 +982,22 @@ void ltt_trace_close(LttTrace *t)
  *Get the system description of the trace
  ****************************************************************************/
 
-LttSystemDescription *ltt_trace_system_description(LttTrace *t)
+LttFacility *ltt_trace_facility_by_id(LttTrace *t, guint8 id)
 {
-  return t->system_description;
+  g_assert(index < t->facilities_by_num->len);
+  return &g_array_index(t->facilities_by_num, LttFacility, id);
 }
 
-/*****************************************************************************
- * The following functions discover the facilities of the trace
- ****************************************************************************/
-
-unsigned ltt_trace_facility_number(LttTrace *t)
-{
-  return (unsigned)(t->facility_number);
-}
-
-LttFacility *ltt_trace_facility_get(LttTrace *t, unsigned i)
-{
-  return (LttFacility*)g_ptr_array_index(t->facilities, i);
-}
-
-/*****************************************************************************
- *Function name
- *    ltt_trace_facility_find : find facilities in the trace
- *Input params
- *    t                       : the trace 
- *    name                    : facility name
- *Output params
- *    position                : position of the facility in the trace
- *Return value
- *                            : the number of facilities
- ****************************************************************************/
-
-unsigned ltt_trace_facility_find(LttTrace *t, char *name, unsigned *position)
+/* ltt_trace_facility_get_by_name
+ *
+ * Returns the GArray of facility indexes. All the fac_ids that matches the
+ * requested facility name.
+ *
+ * If name is not found, returns NULL.
+ */
+GArray *ltt_trace_facility_get_by_name(LttTrace *t, GQuark name)
 {
-  unsigned int i, count=0;
-  LttFacility * f;
-  for(i=0;i<t->facility_number;i++){
-    f = (LttFacility*)g_ptr_array_index(t->facilities, i);
-    if(strcmp(f->name,name)==0){
-      count++;
-      if(count==1) *position = i;      
-    }else{
-      if(count) break;
-    }
-  }
-  return count;
+  return g_datalist_id_get_data(t->facilities_by_name, name);
 }
 
 /*****************************************************************************
@@ -918,33 +1018,6 @@ unsigned ltt_trace_eventtype_number(LttTrace *t)
   return count;
 }
 
-/* FIXME : performances could be improved with a better design for this
- * function : sequential search through a container has never been the
- * best on the critical path. */
-LttFacility * ltt_trace_facility_by_id(LttTrace * trace, unsigned id)
-{
-  LttFacility * facility = NULL;
-  unsigned int i;
-  unsigned int num = trace->facility_number;
-  GPtrArray *facilities = trace->facilities;
-
-  for(i=0;unlikely(i<num);){
-    LttFacility *iter_facility =
-                      (LttFacility*) g_ptr_array_index(facilities,i);
-    unsigned base_id = iter_facility->base_id;
-
-    if(likely(id >= base_id && 
-       id < base_id + iter_facility->event_number)) {
-      facility = iter_facility;
-      break;
-    } else {
-      i++;
-    }
-  }
-  
-  return facility;
-}
-
 LttEventType *ltt_trace_eventtype_get(LttTrace *t, unsigned evId)
 {
   LttEventType *event_type;
@@ -958,68 +1031,19 @@ LttEventType *ltt_trace_eventtype_get(LttTrace *t, unsigned evId)
   return event_type;
 }
 
+#if 0
 /*****************************************************************************
- *There is one "per cpu" tracefile for each CPU, numbered from 0 to
- *the maximum number of CPU in the system. When the number of CPU installed
- *is less than the maximum, some positions are unused. There are also a
- *number of "control" tracefiles (facilities, interrupts...). 
- ****************************************************************************/
-unsigned ltt_trace_control_tracefile_number(LttTrace *t)
-{
-  return t->control_tracefile_number;
-}
-
-unsigned ltt_trace_per_cpu_tracefile_number(LttTrace *t)
-{
-  return t->per_cpu_tracefile_number;
-}
-
-/*****************************************************************************
- *It is possible to search for the tracefiles by name or by CPU position.
- *The index within the tracefiles of the same type is returned if found
- *and a negative value otherwise. 
- ****************************************************************************/
-
-int ltt_trace_control_tracefile_find(LttTrace *t, const gchar *name)
-{
-  LttTracefile * tracefile;
-  unsigned int i;
-  for(i=0;i<t->control_tracefile_number;i++){
-    tracefile = (LttTracefile*)g_ptr_array_index(t->control_tracefiles, i);
-    if(strcmp(tracefile->name, name)==0)break;
-  }
-  if(i == t->control_tracefile_number) return -1;
-  return i;
-}
-
-/* not really useful. We just have to know that cpu tracefiles
- * comes before control tracefiles.
- */
-int ltt_trace_per_cpu_tracefile_find(LttTrace *t, const gchar *name)
-{
-  LttTracefile * tracefile;
-  unsigned int i;
-  for(i=0;i<t->per_cpu_tracefile_number;i++){
-    tracefile = (LttTracefile*)g_ptr_array_index(t->per_cpu_tracefiles, i);
-    if(strcmp(tracefile->name, name)==0)break;
-  }
-  if(i == t->per_cpu_tracefile_number) return -1;
-  return i;
-}
-
-/*****************************************************************************
- *Get a specific tracefile 
+ * ltt_trace_find_tracefile
+ *
+ * Find a tracefile by name and index in the group.
+ *
+ * Returns a pointer to the tracefiles, else NULL.
  ****************************************************************************/
 
-LttTracefile *ltt_trace_control_tracefile_get(LttTrace *t, unsigned i)
+LttTracefile *ltt_trace_find_tracefile(LttTrace *t, const gchar *name)
 {
-  return (LttTracefile*)g_ptr_array_index(t->control_tracefiles, i);  
-}
-
-LttTracefile *ltt_trace_per_cpu_tracefile_get(LttTrace *t, unsigned i)
-{
-  return (LttTracefile*)g_ptr_array_index(t->per_cpu_tracefiles, i);
 }
+#endif //0
 
 /*****************************************************************************
  * Get the start time and end time of the trace 
@@ -1091,7 +1115,7 @@ void ltt_trace_time_span_get(LttTrace *t, LttTime *start, LttTime *end)
  *Get the name of a tracefile
  ****************************************************************************/
 
-char *ltt_tracefile_name(LttTracefile *tf)
+GQuark ltt_tracefile_name(LttTracefile *tf)
 {
   return tf->name;
 }
@@ -1100,7 +1124,7 @@ char *ltt_tracefile_name(LttTracefile *tf)
  * Get the number of blocks in the tracefile 
  ****************************************************************************/
 
-unsigned ltt_tracefile_block_number(LttTracefile *tf)
+guint ltt_tracefile_block_number(LttTracefile *tf)
 {
   return tf->block_number; 
 }
@@ -1129,10 +1153,14 @@ unsigned ltt_tracefile_block_number(LttTracefile *tf)
  * You MUST NOT do a ltt_tracefile_read right after a ltt_tracefile_seek_time :
  * you will jump over an event if you do.
  *
+ * Return value : 0 : no error, the tf->event can be used
+ *                otherwise : this is an error.
+ *
  * */
 
-void ltt_tracefile_seek_time(LttTracefile *tf, LttTime time)
+int ltt_tracefile_seek_time(LttTracefile *tf, LttTime time)
 {
+  int ret = 0;
   int err;
   unsigned int block_num, high, low;
 
@@ -1146,7 +1174,7 @@ void ltt_tracefile_seek_time(LttTracefile *tf, LttTime time)
  /* If the time is lower or equal the beginning of the trace,
   * go to the first event. */
   if(ltt_time_compare(time, tf->buffer.start.timestamp) <= 0) {
-    ltt_tracefile_read(tf)
+    ret = ltt_tracefile_read(tf)
     goto found; /* There is either no event in the trace or the event points
                    to the first event in the trace */
   }
@@ -1159,10 +1187,14 @@ void ltt_tracefile_seek_time(LttTracefile *tf, LttTime time)
 
  /* If the time is after the end of the trace, get the last event. */
   if(ltt_time_compare(time, tf->buffer.end.timestamp) >= 0) {
-    /* While the ltt_tracefile_read_event doesn't return NULL, continue reading
+    /* While the ltt_tracefile_read doesn't return ERANGE or EPERM,
+     * continue reading.
      */
-    while(ltt_tracefile_read(tf));
-    goto found;
+    while(1) {
+      ret = ltt_tracefile_read(tf);
+      if(ret == ERANGE) goto found; /* ERANGE or EPERM */
+      else if(ret) goto fail;
+    }
   }
 
   /* Binary search the block */
@@ -1185,7 +1217,10 @@ void ltt_tracefile_seek_time(LttTracefile *tf, LttTime time)
       /* The event is right in the buffer!
        * (or in the next buffer first event) */
       while(1) {
-        ltt_tracefile_read(tf);
+        ret = ltt_tracefile_read(tf);
+        if(ret == ERANGE) goto found; /* ERANGE or EPERM */
+        else if(ret) goto fail;
+
         if(ltt_time_compare(time, tf->event.event_time) >= 0)
           break;
       }
@@ -1200,6 +1235,9 @@ void ltt_tracefile_seek_time(LttTracefile *tf, LttTime time)
                (or in the next buffer first event) */
       while(1) {
         ltt_tracefile_read(tf);
+        if(ret == ERANGE) goto found; /* ERANGE or EPERM */
+        else if(ret) goto fail;
+
         if(ltt_time_compare(time, tf->event.event_time) >= 0)
           break;
       }
@@ -1208,13 +1246,13 @@ void ltt_tracefile_seek_time(LttTracefile *tf, LttTime time)
   }
 
 found:
-  
-  return;
+  return 0;
 
   /* Error handling */
 fail:
   g_error("ltt_tracefile_seek_time failed on tracefile %s", 
       g_quark_to_string(tf->name));
+  return EPERM;
 }
 
 
@@ -1234,8 +1272,11 @@ int ltt_tracefile_seek_position(LttTracefile *tf, const LttEventPosition *ep) {
 
   tf->event.offset = ep->offset;
 
-  if(!ltt_tracefile_read(tf)) goto fail;
-  
+  err = ltt_tracefile_read_update_event(tf);
+  if(err) goto fail;
+  err = ltt_tracefile_read_op(tf);
+  if(err) goto fail;
+
   return;
 
 fail:
@@ -1243,61 +1284,6 @@ fail:
       g_quark_to_string(tf->name));
 }
 
-
-
-/*****************************************************************************
- * Seek to the first event with position equal or larger to ep 
- *
- * Modified by Mathieu Desnoyers to used faster offset position instead of
- * re-reading the whole buffer.
- ****************************************************************************/
-
-void ltt_tracefile_seek_position(LttTracefile *t, const LttEventPosition *ep)
-{
-  //if we are at the right place, just return
-  if(likely(t->which_block == ep->block_num && t->which_event == ep->event_num))
-    return;
-  
-  if(likely(t->which_block == ep->block_num)) updateTracefile(t);
-  else readBlock(t,ep->block_num);
-  //event offset is available
-  if(likely(ep->old_position)){
-    int err;
-
-    t->which_event = ep->event_num;
-    t->cur_event_pos = t->buffer + ep->event_offset;
-    t->prev_event_time = ep->event_time;
-    t->current_event_time = ep->event_time;
-    t->cur_heart_beat_number = ep->heart_beat_number;
-    t->cur_cycle_count = ep->event_cycle_count;
-
-    /* This is a workaround for fast position seek */
-    t->last_event_pos = ep->last_event_pos;
-    t->prev_block_end_time = ep->prev_block_end_time;
-    t->prev_event_time = ep->prev_event_time;
-    t->pre_cycle_count = ep->pre_cycle_count;
-    t->count = ep->count;
-    t->overflow_nsec = ep->overflow_nsec;
-    t->last_heartbeat = ep->last_heartbeat;
-    /* end of workaround */
-
-    //update the fields of the current event and go to the next event
-    err = skipEvent(t);
-    if(unlikely(err == ERANGE)) g_error("event id is out of range\n");
-      
-    return;
-  }
-
-  //only block number and event index are available
-  //MD: warning : this is slow!
-  g_warning("using slow O(n) tracefile seek position");
-
-  LttEvent event;
-  while(likely(t->which_event < ep->event_num)) ltt_tracefile_read(t, &event);
-
-  return;
-}
-
 /* Calculate the real event time based on the buffer boundaries */
 LttTime ltt_interpolate_time(LttTracefile *tf, LttEvent *event)
 {
@@ -1312,63 +1298,113 @@ LttTime ltt_interpolate_time(LttTracefile *tf, LttEvent *event)
   return time;
 }
 
-
 /*****************************************************************************
  *Function name
  *    ltt_tracefile_read : Read the next event in the tracefile
  *Input params
  *    t                  : tracefile
  *Return value
- *    LttEvent *        : an event to be processed
- *    Note : it points to the current tf->event. It will be overwritten
- *    by the next call to ltt_tracefile_read or any map_block.
- *
- *    Returns NULL on end of trace (or error).
  *
+ *    Returns 0 if an event can be used in tf->event.
+ *    Returns ERANGE on end of trace. The event in tf->event still can be used.
+ *    Returns EPERM on error.
  *
  *    This function does make the tracefile event structure point to the event
- *    currently pointed to by the 
+ *    currently pointed to by the tf->event.
+ *
+ *    Note : you must call a ltt_tracefile_seek to the beginning of the trace to
+ *    reinitialize it after an error if you want results to be coherent.
+ *    It would be the case if a end of trace last buffer has no event : the end
+ *    of trace wouldn't be returned, but an error.
+ *    We make the assumption there is at least one event per buffer.
  ****************************************************************************/
 
-LttEvent *ltt_tracefile_read(LttTracefile *tf)
+int ltt_tracefile_read(LttTracefile *tf)
+{
+  int err;
+
+  err = ltt_tracefile_read_seek(tf);
+  if(err) return err;
+  err = ltt_tracefile_read_update_event(tf);
+  if(err) return err;
+  err = ltt_tracefile_read_op(tf);
+  if(err) return err;
+
+  return 0;
+}
+
+int ltt_tracefile_read_seek(LttTracefile *tf)
+{
+  int err;
+
+  /* Get next buffer until we finally have an event, or end of trace */
+  while(1) {
+    err = ltt_seek_next_event(tf);
+    if(unlikely(err == ENOPROTOOPT)) {
+      return EPERM;
+    }
+
+    /* Are we at the end of the buffer ? */
+    if(err == ERANGE) {
+      if(unlikely(tf->buffer.index == tf->num_blocks-1)){ /* end of trace ? */
+        return ERANGE;
+      } else {
+        /* get next block */
+        err = map_block(tf, tf->buffer.index + 1);
+        if(unlikely(err)) {
+          g_error("Can not map block");
+          return EPERM;
+        }
+      }
+    } else break; /* We found an event ! */
+  }
+  
+  return 0;
+}
+
+
+/* do specific operation on events */
+int ltt_tracefile_read_op(LttTracefile *tf)
 {
   int err;
   LttFacility *f;
   void * pos;
-  /* Skip the current event to go to the next, or point to the
-   * t->buffer.head + t->buffer.lost_size if we were on the last
-   * event of a buffer.
-   */
-  err = ltt_seek_next_event(tf);
-  if(unlikely(err == ERANGE)) {
-    g_error("event id is out of range\n");
-    return NULL;
-  }
+  LttEvent *event;
 
-  pos = tf->event.offset;
+  event = &tf->event;
 
-  /* Are we at the end of the buffer ? */
-  if(unlikely(pos == tf->buffer.head + tf->buffer.lost_size)) {
-    if(unlikely(tf->buffer.index == tf->num_blocks-1)){ /* end of trace ? */
-      return NULL;
-    } else {
-      /* get next block */
-      err = map_block(tf, tf->buffer.index + 1);
-      if(unlikely(err)) {
-        g_error("Can not map block");
-        return NULL;
-      }
-      /* seek to the first event */
-      err = ltt_seek_next_event(tf);
-      if(unlikely(err == ERANGE)) {
-        g_error("event id is out of range\n");
-        return NULL;
-      }
+   /* do event specific operation */
+
+  /* do something if its an heartbeat event : increment the heartbeat count */
+  if(event->facility_id != 0) { /* except core */
+    f = (LttFacility*)g_ptr_array_index(tf->trace->facilities,
+                                          event->facility_id);
+    g_assert(f != NULL);
 
-      pos = tf->event.offset;
+    if(unlikely(ltt_facility_name(f)
+          != LTT_FACILITY_NAME_HEARTBEAT)) {
+      LttEventType *et = ltt_facility_eventtype_get_by_name(f, 
+                    LTT_EVENT_NAME_HEARTBEAT);
+      if(et->id == event->event_id)
+        t->cur_heart_beat_number++;
     }
   }
+  
+  return 0;
+}
+
+
+/* same as ltt_tracefile_read, but does not seek to the next event nor call
+ * event specific operation. */
+int ltt_tracefile_read_update_event(LttTracefile *tf)
+{
+  int err;
+  LttFacility *f;
+  void * pos;
+  LttEvent *event;
+  event = &tf->event;
+  pos = event->offset;
 
   /* Read event header */
   
@@ -1376,23 +1412,25 @@ LttEvent *ltt_tracefile_read(LttTracefile *tf)
   
   if(tf->trace->has_tsc) {
     event->time.timestamp = ltt_get_uint32(LTT_GET_BO(t),
-                                          tf->cur_event_pos);
+                                          pos);
     /* 32 bits -> 64 bits tsc */
+    /* note : still works for seek and non seek cases. */
     if(event->time.timestamp < (0xFFFFFFFFULL&tf->buffer.tsc)) {
       tf->buffer.tsc = ((tf->buffer.tsc&0xFFFFFFFF00000000ULL)
                           + 0x100000000ULL)
                               | (guint64)event->time.timestamp;
-
-      event->event_time = ltt_interpolate_time(tf, event);
     } else {
       /* no overflow */
       tf->buffer.tsc = (tf->buffer.tsc&0xFFFFFFFF00000000ULL) 
                               | (guint64)event->time.timestamp;
     }
+
+    event->event_time = ltt_interpolate_time(tf, event);
+
     pos += sizeof(uint32);
   } else {
     event->time.delta = ltt_get_uint32(LTT_GET_BO(tf),
-                                          tf->cur_event_pos);
+                                          pos);
     tf->buffer.tsc = 0;
 
     event->event_time = ltt_time_add(tf->buffer.begin.timestamp,
@@ -1412,55 +1450,9 @@ LttEvent *ltt_tracefile_read(LttTracefile *tf)
 
   event->data = pos;
 
-  /* do event specific operation */
-
-  /* do something if its an heartbeat event : increment the heartbeat count */
-  if(event->facility_id != 0) { /* except core */
-    f = (LttFacility*)g_ptr_array_index(tf->trace->facilities,
-                                          event->facility_id);
-    g_assert(f != NULL);
-
-    if(unlikely(ltt_facility_name(f)
-          != LTT_FACILITY_NAME_HEARTBEAT)) {
-      LttEventType *et = ltt_facility_eventtype_get_by_name(f, 
-                    LTT_EVENT_NAME_HEARTBEAT);
-      if(et->id == event->event_id)
-        t->cur_heart_beat_number++;
-
-    }
-  }
-  
-  return event;
+  return 0;
 }
 
-/****************************************************************************
- *Function name
- *    readFile    : wrap function to read from a file
- *Input Params
- *    fd          : file descriptor
- *    buf         : buf to contain the content
- *    size        : number of bytes to be read
- *    mesg        : message to be printed if some thing goes wrong
- *return value 
- *    0           : success
- *    EIO         : can not read from the file
- ****************************************************************************/
-#if 0
-int readFile(int fd, void * buf, size_t size, char * mesg)
-{
-   ssize_t nbBytes = read(fd, buf, size);
-
-   if((size_t)nbBytes != size) {
-     if(nbBytes < 0) {
-       perror("Error in readFile : ");
-     } else {
-       g_warning("%s",mesg);
-     }
-     return EIO;
-   }
-   return 0;
-}
-#endif //0
 
 /****************************************************************************
  *Function name
@@ -1536,32 +1528,6 @@ map_error:
 
 }
 
-/*****************************************************************************
- *Function name
- *    updateTracefile : reinitialize the info of the block which is already 
- *                      in the buffer
- *Input params 
- *    tf              : tracefile
- ****************************************************************************/
-
-void updateTracefile(LttTracefile * tf)
-{
-  tf->which_event = 1;
-  tf->cur_event_pos = tf->buffer;
-  tf->current_event_time = getEventTime(tf);  
-  tf->cur_heart_beat_number = 0;
-
-  tf->prev_event_time.tv_sec = 0;
-  tf->prev_event_time.tv_nsec = 0;
-  tf->count = 0;
-
-  tf->overflow_nsec = 
-    (-((double)ltt_get_uint64(tf->trace->reverse_byte_order,
-                              &tf->a_block_start->cycle_count))
-                                        * tf->nsec_per_cycle);
-
-}
-
 /* Take the tf current event offset and use the event facility id and event id
  * to figure out where is the next event offset.
  *
@@ -1571,9 +1537,11 @@ void updateTracefile(LttTracefile * tf)
  *
  * Returns 0 on success
  *         ERANGE if we are at the end of the buffer.
+ *         ENOPROTOOPT if an error occured when getting the current event size.
  */
 static int ltt_seek_next_event(LttTracefile *tf)
 {
+  int ret = 0;
   void *pos;
   
   /* seek over the buffer header if we are at the buffer start */
@@ -1582,24 +1550,28 @@ static int ltt_seek_next_event(LttTracefile *tf)
     goto found;
   }
 
-  /* if we are at the end of a buffer, generate an error, not supposed to
-   * happen. */
-  if(tf->event.offset == tf->buffer.head + tf->buffer.lost_size)
-    goto error;
+  
+  if(tf->event.offset == tf->buffer.head + tf->buffer.lost_size) {
+    ret = ERANGE;
+    goto found;
+  }
 
   pos = tf->event.data;
 
+  /* FIXME : do this function. Remember to hardcode the sizes of heartbeat and
+   * core */
   pos += ltt_facility_get_event_size(tf->event.facility_id, tf->event.event_id);
+  on error : goto error;
 
   tf->event.offset = pos;
 
 found:
-  return 0;
+  return ret;
 
 error:
   g_error("Error in ltt_seek_next_event for tracefile %s",
       g_quark_to_string(tf->name));
-  return ERANGE;
+  return ENOPROTOOPT;
 }
 
 
@@ -1847,36 +1819,7 @@ gint64 getIntNumber(gboolean reverse_byte_order, int size, void *evD)
 
   return i;
 }
-#if 0
-/*****************************************************************************
- *Function name
- *    getDataEndianType : get the data type size and endian type of the local
- *                        machine
- *Input params 
- *    size              : size of data type
- *    endian            : endian type, little or big
- ****************************************************************************/
 
-void getDataEndianType(LttArchSize * size, LttArchEndian * endian)
-{
-  int i = 1;
-  char c = (char) i;
-  int sizeInt=sizeof(int), sizeLong=sizeof(long), sizePointer=sizeof(void *);
-
-  if(c == 1) *endian = LTT_LITTLE_ENDIAN;
-  else *endian = LTT_BIG_ENDIAN;
-
-  if(sizeInt == 2 && sizeLong == 4 && sizePointer == 4) 
-    *size = LTT_LP32;
-  else if(sizeInt == 4 && sizeLong == 4 && sizePointer == 4) 
-    *size = LTT_ILP32;
-  else if(sizeInt == 4 && sizeLong == 8 && sizePointer == 8) 
-    *size = LTT_LP64;
-  else if(sizeInt == 8 && sizeLong == 8 && sizePointer == 8) 
-    *size = LTT_ILP64;
-  else *size = LTT_UNKNOWN;
-}
-#endif //0
 /* get the node name of the system */
 
 char * ltt_trace_system_description_node_name (LttSystemDescription * s)
This page took 0.043562 seconds and 4 git commands to generate.