X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=lttv%2Flttv%2Ftraceset.h;h=9761c9198a7064a97501ea0d17357ec174525831;hb=190724cdfc53eeebfd895b594f875b53a72adf37;hp=4b998ad27dfc56fffa0204442fe57e32d7894764;hpb=88bf15f0f2a239186b5cf6fcf8711786907ca483;p=lttv.git diff --git a/lttv/lttv/traceset.h b/lttv/lttv/traceset.h index 4b998ad2..9761c919 100644 --- a/lttv/lttv/traceset.h +++ b/lttv/lttv/traceset.h @@ -22,9 +22,9 @@ #include #include #include -#include -#include +#include #include + /* A traceset is a set of traces to be analyzed together. */ typedef struct _LttvTraceset LttvTraceset; @@ -44,8 +44,12 @@ struct _LttvTraceset { struct bt_ctf_iter *iter; GPtrArray *state_trace_handle_index; gboolean has_precomputed_states; + TimeInterval time_span; + char *common_path; }; +#define TRACE_NAME_SIZE 100 + struct _LttvTrace { // Trace id for babeltrace LttvTraceset *traceset; /* container traceset */ @@ -53,6 +57,8 @@ struct _LttvTrace { LttvAttribute *a; guint ref_count; LttvTraceState *state; + char short_name[TRACE_NAME_SIZE]; + char *full_path; }; /* In babeltrace, the position concept is an iterator. */ @@ -110,6 +116,10 @@ LttvTrace *lttv_traceset_get(LttvTraceset *s, unsigned i); void lttv_traceset_remove(LttvTraceset *s, unsigned i); +int lttv_traceset_get_trace_index_from_event(LttvEvent *event); + +int lttv_traceset_get_trace_index_from_handle_id(LttvTraceset *ts, int handle_id); + /* An attributes table is attached to the set and to each trace in the set. */ LttvAttribute *lttv_traceset_attribute(LttvTraceset *s);