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.
19 #ifndef _LTT_TRACE_KERNEL_H
20 #define _LTT_TRACE_KERNEL_H
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
{
48 * TODO: need internal representation to support more than a
51 struct lttng_kernel_context
*ctx
;
52 struct lttng_kernel_event
*event
;
53 struct cds_list_head list
;
57 struct ltt_kernel_channel
{
61 unsigned int stream_count
;
62 unsigned int event_count
;
64 * TODO: need internal representation to support more than a
67 struct lttng_kernel_context
*ctx
;
68 struct lttng_channel
*channel
;
69 struct ltt_kernel_event_list events_list
;
70 struct ltt_kernel_stream_list stream_list
;
71 struct cds_list_head list
;
75 struct ltt_kernel_metadata
{
78 struct lttng_channel
*conf
;
82 struct ltt_kernel_stream
{
86 struct cds_list_head list
;
90 struct ltt_kernel_session
{
92 int metadata_stream_fd
;
93 int consumer_fds_sent
;
95 unsigned int channel_count
;
96 unsigned int stream_count_global
;
98 struct ltt_kernel_metadata
*metadata
;
99 struct ltt_kernel_channel_list channel_list
;
103 * Lookup functions. NULL is returned if not found.
105 struct ltt_kernel_event
*trace_kernel_get_event_by_name(
106 char *name
, struct ltt_kernel_channel
*channel
);
107 struct ltt_kernel_channel
*trace_kernel_get_channel_by_name(
108 char *name
, struct ltt_kernel_session
*session
);
111 * Create functions malloc() the data structure.
113 struct ltt_kernel_session
*trace_kernel_create_session(char *path
);
114 struct ltt_kernel_channel
*trace_kernel_create_channel(struct lttng_channel
*chan
, char *path
);
115 struct ltt_kernel_event
*trace_kernel_create_event(struct lttng_event
*ev
);
116 struct ltt_kernel_metadata
*trace_kernel_create_metadata(char *path
);
117 struct ltt_kernel_stream
*trace_kernel_create_stream(void);
120 * Destroy functions free() the data structure and remove from linked list if
123 void trace_kernel_destroy_session(struct ltt_kernel_session
*session
);
124 void trace_kernel_destroy_metadata(struct ltt_kernel_metadata
*metadata
);
125 void trace_kernel_destroy_channel(struct ltt_kernel_channel
*channel
);
126 void trace_kernel_destroy_event(struct ltt_kernel_event
*event
);
127 void trace_kernel_destroy_stream(struct ltt_kernel_stream
*stream
);
129 #endif /* _LTT_TRACE_KERNEL_H */