Add disable kernel channel support
[lttng-tools.git] / ltt-sessiond / trace.h
CommitLineData
fda89c9b
DG
1/*
2 * Copyright (C) 2011 - David Goulet <david.goulet@polymtl.ca>
3 *
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; either version 2
7 * of the License, or (at your option) any later version.
8 *
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.
13 *
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.
17 */
18
19#ifndef _LTT_TRACE_H
20#define _LTT_TRACE_H
21
9e78d6ae
DG
22#include <limits.h>
23#include <urcu/list.h>
d4a2a84a 24
f3ed775e
DG
25#include <lttng/lttng.h>
26
27#include "lttng-kernel.h"
54012638 28
20fe2104
DG
29/* Kernel event list */
30struct ltt_kernel_event_list {
31 struct cds_list_head head;
32};
33
8c0faa1d
DG
34/* Channel stream list */
35struct ltt_kernel_stream_list {
36 struct cds_list_head head;
37};
38
39/* Channel list */
40struct ltt_kernel_channel_list {
41 struct cds_list_head head;
42};
43
20fe2104
DG
44/* Kernel event */
45struct ltt_kernel_event {
20fe2104 46 int fd;
e953ef25 47 int enabled;
f34daff7 48 struct lttng_kernel_event *event;
20fe2104
DG
49 struct cds_list_head list;
50};
51
52/* Kernel channel */
53struct ltt_kernel_channel {
54 int fd;
d36b8583 55 int enabled;
8c0faa1d
DG
56 char *pathname;
57 unsigned int stream_count;
f3ed775e 58 struct lttng_channel *channel;
20fe2104 59 struct ltt_kernel_event_list events_list;
8c0faa1d
DG
60 struct ltt_kernel_stream_list stream_list;
61 struct cds_list_head list;
20fe2104
DG
62};
63
aaf26714
DG
64/* Metadata */
65struct ltt_kernel_metadata {
66 int fd;
8c0faa1d 67 char *pathname;
f3ed775e 68 struct lttng_channel *conf;
aaf26714
DG
69};
70
8c0faa1d
DG
71/* Channel stream */
72struct ltt_kernel_stream {
73 int fd;
74 char *pathname;
75 int state;
76 struct cds_list_head list;
77};
78
20fe2104
DG
79/* Kernel session */
80struct ltt_kernel_session {
81 int fd;
8c0faa1d 82 int metadata_stream_fd;
f3ed775e 83 int kconsumer_fds_sent;
8c0faa1d
DG
84 unsigned int channel_count;
85 unsigned int stream_count_global;
aaf26714 86 struct ltt_kernel_metadata *metadata;
8c0faa1d 87 struct ltt_kernel_channel_list channel_list;
fda89c9b
DG
88};
89
90/* UST trace representation */
91struct ltt_ust_trace {
92 struct cds_list_head list;
1657e9bb 93 char name[NAME_MAX];
fda89c9b
DG
94 int shmid;
95 pid_t pid;
96 struct cds_list_head markers;
97};
98
99struct ltt_ust_marker {
100 struct cds_list_head list;
101 char *name;
102 char *channel;
103};
104
19e70852
DG
105/*
106 * Get functions.
107 */
108struct ltt_kernel_event *get_kernel_event_by_name(
109 char *name, struct ltt_kernel_channel *channel);
110struct ltt_kernel_channel *get_kernel_channel_by_name(
111 char *name, struct ltt_kernel_session *session);
112
54012638 113/*
c363b55d 114 * Create functions malloc() the data structure.
54012638 115 */
54012638 116struct ltt_kernel_session *trace_create_kernel_session(void);
f3ed775e
DG
117struct ltt_kernel_channel *trace_create_kernel_channel(struct lttng_channel *chan);
118struct ltt_kernel_event *trace_create_kernel_event(struct lttng_event *ev);
54012638 119struct ltt_kernel_metadata *trace_create_kernel_metadata(void);
54012638
DG
120struct ltt_kernel_stream *trace_create_kernel_stream(void);
121
c363b55d
DG
122/*
123 * Destroy functions free() the data structure and remove from linked list if
124 * it's applies.
125 */
126void trace_destroy_kernel_session(struct ltt_kernel_session *session);
127void trace_destroy_kernel_metadata(struct ltt_kernel_metadata *metadata);
128void trace_destroy_kernel_channel(struct ltt_kernel_channel *channel);
129void trace_destroy_kernel_event(struct ltt_kernel_event *event);
130void trace_destroy_kernel_stream(struct ltt_kernel_stream *stream);
131
fda89c9b 132#endif /* _LTT_TRACE_H */
This page took 0.029333 seconds and 4 git commands to generate.