Initial implementation of the debuginfo API
[babeltrace.git] / formats / ctf / ctf.c
index 3f56a729036b568d070b8fc407569c44c5518f1c..d91b5ef5fa4b6a029ef202747090d76ddbdd63a3 100644 (file)
@@ -35,6 +35,7 @@
 #include <babeltrace/context-internal.h>
 #include <babeltrace/compat/uuid.h>
 #include <babeltrace/endian.h>
+#include <babeltrace/trace-debuginfo.h>
 #include <babeltrace/ctf/ctf-index.h>
 #include <inttypes.h>
 #include <stdio.h>
@@ -84,6 +85,7 @@ int64_t opt_clock_offset;
 int64_t opt_clock_offset_ns;
 
 extern int yydebug;
+char *opt_debug_dir;
 
 /*
  * TODO: babeltrace_ctf_console_output ensures that we only print
@@ -2413,8 +2415,14 @@ struct bt_trace_descriptor *ctf_open_trace(const char *path, int flags,
                goto error;
        }
 
+       ret = trace_debug_info_create(td);
+       if (ret) {
+               goto error;
+       }
+
        return &td->parent;
 error:
+       trace_debug_info_destroy(td);
        g_free(td);
        return NULL;
 }
@@ -2583,6 +2591,11 @@ struct bt_trace_descriptor *ctf_open_mmap_trace(
        if (ret)
                goto error_free;
 
+       ret = trace_debug_info_create(td);
+       if (ret) {
+               goto error_free;
+       }
+
        return &td->parent;
 
 error_free:
@@ -2734,6 +2747,7 @@ int ctf_close_trace(struct bt_trace_descriptor *tdp)
                }
        }
        free(td->metadata_string);
+       trace_debug_info_destroy(td);
        g_free(td);
        return 0;
 }
This page took 0.023365 seconds and 4 git commands to generate.