X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=src%2Fbin%2Flttng-sessiond%2Ftrace-ust.h;h=06d0202d1d1fdb323f94baafd8577c8e58714f29;hp=87fe412d6b862ed0c5eed27af988c55affbdabbd;hb=7724731bcd8d8e340adc41bc46a5994668679e85;hpb=7972aab22f74b18faa168c0482216a3dd711a075 diff --git a/src/bin/lttng-sessiond/trace-ust.h b/src/bin/lttng-sessiond/trace-ust.h index 87fe412d6..06d0202d1 100644 --- a/src/bin/lttng-sessiond/trace-ust.h +++ b/src/bin/lttng-sessiond/trace-ust.h @@ -27,18 +27,21 @@ #include #include "consumer.h" +#include "jul.h" #include "ust-ctl.h" struct ltt_ust_ht_key { const char *name; const struct lttng_filter_bytecode *filter; enum lttng_ust_loglevel_type loglevel; + const struct lttng_event_exclusion *exclusion; }; /* Context hash table nodes */ struct ltt_ust_context { struct lttng_ust_context ctx; struct lttng_ht_node_ulong node; + struct cds_list_head list; }; /* UST event */ @@ -47,6 +50,7 @@ struct ltt_ust_event { struct lttng_ust_event attr; struct lttng_ht_node_str node; struct lttng_ust_filter_bytecode *filter; + const struct lttng_event_exclusion *exclusion; }; /* UST channel */ @@ -54,11 +58,13 @@ struct ltt_ust_channel { uint64_t id; /* unique id per session. */ unsigned int enabled; char name[LTTNG_UST_SYM_NAME_LEN]; - char pathname[PATH_MAX]; struct lttng_ust_channel_attr attr; struct lttng_ht *ctx; + struct cds_list_head ctx_list; struct lttng_ht *events; struct lttng_ht_node_str node; + uint64_t tracefile_size; + uint64_t tracefile_count; }; /* UST Metadata */ @@ -78,10 +84,10 @@ struct ltt_ust_domain_global { /* UST session */ struct ltt_ust_session { - int id; /* Unique identifier of session */ + uint64_t id; /* Unique identifier of session */ int start_trace; - char pathname[PATH_MAX]; struct ltt_ust_domain_global domain_global; + struct jul_domain domain_jul; /* UID/GID of the user owning the session */ uid_t uid; gid_t gid; @@ -105,6 +111,11 @@ struct ltt_ust_session { uint64_t next_channel_id; /* Once this value reaches UINT32_MAX, no more id can be allocated. */ uint64_t used_channel_id; + /* Tell or not if the session has to output the traces. */ + unsigned int output_traces; + unsigned int snapshot_mode; + unsigned int has_non_default_channel; + unsigned int live_timer_interval; /* usec */ }; /* @@ -153,15 +164,15 @@ struct ltt_ust_channel *trace_ust_find_channel_by_name(struct lttng_ht *ht, /* * Create functions malloc() the data structure. */ -struct ltt_ust_session *trace_ust_create_session(char *path, - unsigned int session_id); -struct ltt_ust_channel *trace_ust_create_channel(struct lttng_channel *attr, - char *path); +struct ltt_ust_session *trace_ust_create_session(uint64_t session_id); +struct ltt_ust_channel *trace_ust_create_channel(struct lttng_channel *attr); struct ltt_ust_event *trace_ust_create_event(struct lttng_event *ev, struct lttng_filter_bytecode *filter); struct ltt_ust_metadata *trace_ust_create_metadata(char *path); struct ltt_ust_context *trace_ust_create_context( struct lttng_event_context *ctx); +void trace_ust_delete_channel(struct lttng_ht *ht, + struct ltt_ust_channel *channel); /* * Destroy functions free() the data structure and remove from linked list if @@ -192,14 +203,12 @@ struct ltt_ust_channel *trace_ust_find_channel_by_name(struct lttng_ht *ht, } static inline -struct ltt_ust_session *trace_ust_create_session(char *path, - unsigned int session_id) +struct ltt_ust_session *trace_ust_create_session(unsigned int session_id) { return NULL; } static inline -struct ltt_ust_channel *trace_ust_create_channel(struct lttng_channel *attr, - char *path) +struct ltt_ust_channel *trace_ust_create_channel(struct lttng_channel *attr) { return NULL; } @@ -245,6 +254,12 @@ static inline struct ltt_ust_event *trace_ust_find_event(struct lttng_ht *ht, { return NULL; } +static inline +void trace_ust_delete_channel(struct lttng_ht *ht, + struct ltt_ust_channel *channel) +{ + return; +} #endif /* HAVE_LIBLTTNG_UST_CTL */