X-Git-Url: http://git.efficios.com/?p=babeltrace.git;a=blobdiff_plain;f=lib%2Ftrace-handle.c;h=6ba3ec208806540e774c784eef151999c12e1c40;hp=fce2397c0d2c4481bd7515db07ac004067e10f77;hb=30c276af575248a4f83e594c987264f6caa238ba;hpb=842c2b97eab577484edae763770dfd1440490818 diff --git a/lib/trace-handle.c b/lib/trace-handle.c index fce2397c..6ba3ec20 100644 --- a/lib/trace-handle.c +++ b/lib/trace-handle.c @@ -23,6 +23,7 @@ #include #include #include +#include #include #include @@ -30,41 +31,44 @@ struct bt_trace_handle *bt_trace_handle_create(struct bt_context *ctx) { struct bt_trace_handle *th; - th = calloc(1, sizeof(struct bt_trace_handle)); - if (!th) { - perror("allocating trace_handle"); - return NULL; - } - if (!ctx) - return NULL; - + th = g_new0(struct bt_trace_handle, 1); th->id = ctx->last_trace_handle_id++; return th; } -void bt_trace_handle_destroy(struct bt_trace_handle *bt) +void bt_trace_handle_destroy(struct bt_trace_handle *th) { - if (bt) - free(bt); + g_free(th); } -char *bt_trace_handle_get_path(struct bt_trace_handle *th) +int bt_trace_handle_get_id(struct bt_trace_handle *th) { - if (th && th->path) - return th->path; - return NULL; + return th->id; } -uint64_t bt_trace_handle_get_timestamp_begin(struct bt_trace_handle *th) +const char *bt_trace_handle_get_path(struct bt_context *ctx, int handle_id) { - if (th) - return th->timestamp_begin; - return -1ULL; + struct bt_trace_handle *handle; + + handle = g_hash_table_lookup(ctx->trace_handles, + (gpointer) (unsigned long) handle_id); + return handle->path; } -uint64_t bt_trace_handle_get_timestamp_end(struct bt_trace_handle *th) +uint64_t bt_trace_handle_get_timestamp_begin(struct bt_context *ctx, int handle_id) { - if (th) - return th->timestamp_end; - return -1ULL; + struct bt_trace_handle *handle; + + handle = g_hash_table_lookup(ctx->trace_handles, + (gpointer) (unsigned long) handle_id); + return handle->timestamp_begin; +} + +uint64_t bt_trace_handle_get_timestamp_end(struct bt_context *ctx, int handle_id) +{ + struct bt_trace_handle *handle; + + handle = g_hash_table_lookup(ctx->trace_handles, + (gpointer) (unsigned long) handle_id); + return handle->timestamp_end; }