print syscalls
[lttv.git] / ltt / branches / poly / lttv / lttv / print.c
index d5b520863f769729cb79d37ab343b28267f05b44..47faf53cb13dcb5660e46b0858067a227dccd697 100644 (file)
@@ -1,5 +1,3 @@
-
-
 /* This file is part of the Linux Trace Toolkit viewer
  * Copyright (C) 2003-2004 Michel Dagenais
  *               2005 Mathieu Desnoyers
 #include <lttv/print.h>
 #include <ltt/ltt.h>
 #include <ltt/event.h>
-#include <ltt/type.h>
 #include <ltt/trace.h>
-#include <ltt/facility.h>
 #include <stdio.h>
 #include <ctype.h>
-#include<ltt/ltt-private.h>
+#include <ltt/ltt-private.h>
 #include <string.h>
 
+static inline void print_enum_events(LttEvent *e, struct marker_field *f,
+                      guint64 value, GString *s, LttvTracefileState *tfs)
+{
+  LttTrace *trace = ltt_tracefile_get_trace(e->tracefile);
+  struct marker_info *info = marker_get_info_from_id(trace, e->event_id);
+  LttvTraceState *ts = (LttvTraceState*)(tfs->parent.t_context);
+  
+  //TODO optimize with old quarks.
+  if (info->name == g_quark_from_static_string("kernel_arch_syscall_entry") && 
+      f->name == LTT_FIELD_SYSCALL_ID) {
+    g_string_append_printf(s, " [%s]",
+      g_quark_to_string(ts->syscall_names[value]));
+  }
+}
 
-void lttv_print_field(LttEvent *e, LttField *f, GString *s,
-                      gboolean field_names, guint element_index) {
-
-  LttType *type;
-
+void lttv_print_field(LttEvent *e, struct marker_field *f, GString *s,
+                      gboolean field_names, LttvTracefileState *tfs)
+{
   GQuark name;
+  guint64 value;
 
-  int nb, i;
+  //int nb, i;
 
-  type = ltt_field_type(f);
-
-  switch(ltt_type_class(type)) {
-    case LTT_SHORT:
-    case LTT_INT:
-    case LTT_LONG:
-    case LTT_SSIZE_T:
-    case LTT_INT_FIXED:
+  switch(f->type) {
+    case LTT_TYPE_SIGNED_INT:
       if(field_names) {
-        name = ltt_field_name(f);
+        name = f->name;
         if(name)
           g_string_append_printf(s, "%s = ", g_quark_to_string(name));
       }
+      value = ltt_event_get_long_int(e,f);
+      g_string_append_printf(s, "%lld", value);
+      //g_string_append_printf(s, type->fmt, ltt_event_get_long_int(e,f));
+      print_enum_events(e, f, value, s, tfs);
+      break;
 
-      //g_string_append_printf(s, "%lld", ltt_event_get_long_int(e,f));
-       g_string_append_printf(s, type->fmt, ltt_event_get_long_int(e,f));
-       break;
-
-    case LTT_USHORT:
-    case LTT_UINT:
-    case LTT_ULONG:
-    case LTT_SIZE_T:
-    case LTT_OFF_T:
-    case LTT_UINT_FIXED:
+    case LTT_TYPE_UNSIGNED_INT:
       if(field_names) {
-        name = ltt_field_name(f);
+        name = f->name;
         if(name)
           g_string_append_printf(s, "%s = ", g_quark_to_string(name));
       }
-      // g_string_append_printf(s, "%llu", ltt_event_get_long_unsigned(e,f));
-      g_string_append_printf(s, type->fmt, ltt_event_get_long_unsigned(e,f));
+      value = ltt_event_get_long_unsigned(e,f);
+      g_string_append_printf(s, "%llu", value);
+      print_enum_events(e, f, value, s, tfs);
+      //g_string_append_printf(s, type->fmt, ltt_event_get_long_unsigned(e,f));
       break;
     
+#if 0
     case LTT_CHAR:
     case LTT_UCHAR:
       {
@@ -121,26 +123,28 @@ void lttv_print_field(LttEvent *e, LttField *f, GString *s,
      //g_string_append_printf(s, "%g", ltt_event_get_double(e,f));
       g_string_append_printf(s, type->fmt, ltt_event_get_double(e,f));
       break;
+#endif
 
-    case LTT_POINTER:
+    case LTT_TYPE_POINTER:
       if(field_names) {
-        name = ltt_field_name(f);
+        name = f->name;
         if(name)
           g_string_append_printf(s, "%s = ", g_quark_to_string(name));
       }
-      // g_string_append_printf(s, "0x%llx", ltt_event_get_long_unsigned(e,f));
-      g_string_append_printf(s, type->fmt, ltt_event_get_long_unsigned(e,f));
+      g_string_append_printf(s, "0x%llx", ltt_event_get_long_unsigned(e,f));
+      //g_string_append_printf(s, type->fmt, ltt_event_get_long_unsigned(e,f));
       break;
 
-    case LTT_STRING:
+    case LTT_TYPE_STRING:
       if(field_names) {
-        name = ltt_field_name(f);
+        name = f->name;
         if(name)
           g_string_append_printf(s, "%s = ", g_quark_to_string(name));
       }
       g_string_append_printf(s, "\"%s\"", ltt_event_get_string(e,f));
       break;
 
+#if 0
     case LTT_ENUM:
       {
         GQuark value = ltt_enum_string_get(type, ltt_event_get_unsigned(e,f));
@@ -223,7 +227,11 @@ void lttv_print_field(LttEvent *e, LttField *f, GString *s,
       //      g_string_append_printf(s, " }");
       g_string_append_printf(s, type->footer);
       break;
-    case LTT_NONE:
+#endif
+    case LTT_TYPE_COMPACT:
+      g_error("compact type printing not implemented");
+      break;
+    case LTT_TYPE_NONE:
       break;
   }
 }
@@ -231,32 +239,24 @@ void lttv_print_field(LttEvent *e, LttField *f, GString *s,
 void lttv_event_to_string(LttEvent *e, GString *s,
     gboolean mandatory_fields, gboolean field_names, LttvTracefileState *tfs)
 { 
-  LttFacility *facility;
-
-  LttEventType *event_type;
-
-  LttField *field;
+  struct marker_field *field;
+  struct marker_info *info;
 
   LttTime time;
 
   guint cpu = tfs->cpu;
   LttvTraceState *ts = (LttvTraceState*)tfs->parent.t_context;
   LttvProcessState *process = ts->running_process[cpu];
-
-  GQuark name;
-
-  guint i, num_fields;
+  LttTrace *trace = ts->parent.t;
 
   s = g_string_set_size(s,0);
 
-  facility = ltt_event_facility(e);
-  event_type = ltt_event_eventtype(e);
+  info = marker_get_info_from_id(trace, e->event_id);
 
   if(mandatory_fields) {
     time = ltt_event_time(e);
-    g_string_append_printf(s,"%s.%s: %ld.%09ld (%s%s_%u)",
-        g_quark_to_string(ltt_facility_name(facility)),
-        g_quark_to_string(ltt_eventtype_name(event_type)),
+    g_string_append_printf(s,"%s: %ld.%09ld (%s%s_%u)",
+        g_quark_to_string(info->name),
         (long)time.tv_sec, time.tv_nsec,
        g_quark_to_string(
                ltt_trace_name(ltt_tracefile_get_trace(tfs->parent.tf))),
@@ -270,18 +270,16 @@ void lttv_event_to_string(LttEvent *e, GString *s,
         process->ppid, process->current_function,
         g_quark_to_string(process->state->t));
   }
-  event_type = ltt_event_eventtype(e);
   
-  num_fields = ltt_eventtype_num_fields(event_type);
-  if(num_fields == 0) return;
+  if(marker_get_num_fields(info) == 0) return;
   g_string_append_printf(s, " ");
   g_string_append_printf(s, "{ ");
-  for(i=0; i<num_fields; i++) {
-    field = ltt_eventtype_field(event_type, i);
-    lttv_print_field(e, field, s, field_names, i);
-    //should add ',' here
-    if(i<num_fields-1)
-      g_string_append_printf(s,", ");//tested: works fine
+  for (field = marker_get_field(info, 0); 
+                field != marker_get_field(info, marker_get_num_fields(info));
+                field++) {
+    if(field != marker_get_field(info, 0))
+      g_string_append_printf(s, ", ");
+    lttv_print_field(e, field, s, field_names, tfs);
   }
   g_string_append_printf(s, " }");
 } 
This page took 0.030453 seconds and 4 git commands to generate.