2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; only version 2
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23 #include <urcu/list.h>
25 #include <lttng/lttng.h>
26 #include <lttng-kernel.h>
28 /* Kernel event list */
29 struct ltt_kernel_event_list
{
30 struct cds_list_head head
;
33 /* Channel stream list */
34 struct ltt_kernel_stream_list
{
35 struct cds_list_head head
;
39 struct ltt_kernel_channel_list
{
40 struct cds_list_head head
;
44 struct ltt_kernel_event
{
47 struct lttng_kernel_context
*ctx
;
48 struct lttng_kernel_event
*event
;
49 struct cds_list_head list
;
53 struct ltt_kernel_channel
{
57 unsigned int stream_count
;
58 unsigned int event_count
;
59 struct lttng_kernel_context
*ctx
;
60 struct lttng_channel
*channel
;
61 struct ltt_kernel_event_list events_list
;
62 struct ltt_kernel_stream_list stream_list
;
63 struct cds_list_head list
;
67 struct ltt_kernel_metadata
{
70 struct lttng_channel
*conf
;
74 struct ltt_kernel_stream
{
78 struct cds_list_head list
;
82 struct ltt_kernel_session
{
84 int metadata_stream_fd
;
85 int kconsumer_fds_sent
;
87 unsigned int channel_count
;
88 unsigned int stream_count_global
;
90 struct ltt_kernel_metadata
*metadata
;
91 struct ltt_kernel_channel_list channel_list
;
94 /* UST trace representation */
95 struct ltt_ust_trace
{
96 struct cds_list_head list
;
100 struct cds_list_head markers
;
103 struct ltt_ust_marker
{
104 struct cds_list_head list
;
109 struct ltt_kernel_event
*get_kernel_event_by_name(
110 char *name
, struct ltt_kernel_channel
*channel
);
111 struct ltt_kernel_channel
*get_kernel_channel_by_name(
112 char *name
, struct ltt_kernel_session
*session
);
115 * Create functions malloc() the data structure.
117 struct ltt_kernel_session
*trace_create_kernel_session(void);
118 struct ltt_kernel_channel
*trace_create_kernel_channel(struct lttng_channel
*chan
, char *path
);
119 struct ltt_kernel_event
*trace_create_kernel_event(struct lttng_event
*ev
);
120 struct ltt_kernel_metadata
*trace_create_kernel_metadata(char *path
);
121 struct ltt_kernel_stream
*trace_create_kernel_stream(void);
124 * Destroy functions free() the data structure and remove from linked list if
127 void trace_destroy_kernel_session(struct ltt_kernel_session
*session
);
128 void trace_destroy_kernel_metadata(struct ltt_kernel_metadata
*metadata
);
129 void trace_destroy_kernel_channel(struct ltt_kernel_channel
*channel
);
130 void trace_destroy_kernel_event(struct ltt_kernel_event
*event
);
131 void trace_destroy_kernel_stream(struct ltt_kernel_stream
*stream
);
133 #endif /* _LTT_TRACE_H */