Permit custom consumer registration to a session
[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
82a3637f
DG
6 * as published by the Free Software Foundation; only version 2
7 * of the License.
fda89c9b
DG
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;
d65106b1 48 struct lttng_kernel_context *ctx;
f34daff7 49 struct lttng_kernel_event *event;
20fe2104
DG
50 struct cds_list_head list;
51};
52
53/* Kernel channel */
54struct ltt_kernel_channel {
55 int fd;
d36b8583 56 int enabled;
8c0faa1d
DG
57 char *pathname;
58 unsigned int stream_count;
cbbbb275 59 unsigned int event_count;
d65106b1 60 struct lttng_kernel_context *ctx;
f3ed775e 61 struct lttng_channel *channel;
20fe2104 62 struct ltt_kernel_event_list events_list;
8c0faa1d
DG
63 struct ltt_kernel_stream_list stream_list;
64 struct cds_list_head list;
20fe2104
DG
65};
66
aaf26714
DG
67/* Metadata */
68struct ltt_kernel_metadata {
69 int fd;
8c0faa1d 70 char *pathname;
f3ed775e 71 struct lttng_channel *conf;
aaf26714
DG
72};
73
8c0faa1d
DG
74/* Channel stream */
75struct ltt_kernel_stream {
76 int fd;
77 char *pathname;
78 int state;
79 struct cds_list_head list;
80};
81
20fe2104
DG
82/* Kernel session */
83struct ltt_kernel_session {
84 int fd;
8c0faa1d 85 int metadata_stream_fd;
f3ed775e 86 int kconsumer_fds_sent;
d9800920 87 int consumer_fd;
8c0faa1d
DG
88 unsigned int channel_count;
89 unsigned int stream_count_global;
63053e7c 90 char *trace_path;
aaf26714 91 struct ltt_kernel_metadata *metadata;
8c0faa1d 92 struct ltt_kernel_channel_list channel_list;
fda89c9b
DG
93};
94
95/* UST trace representation */
96struct ltt_ust_trace {
97 struct cds_list_head list;
1657e9bb 98 char name[NAME_MAX];
fda89c9b
DG
99 int shmid;
100 pid_t pid;
101 struct cds_list_head markers;
102};
103
104struct ltt_ust_marker {
105 struct cds_list_head list;
106 char *name;
107 char *channel;
108};
109
19e70852
DG
110/*
111 * Get functions.
112 */
113struct ltt_kernel_event *get_kernel_event_by_name(
114 char *name, struct ltt_kernel_channel *channel);
115struct ltt_kernel_channel *get_kernel_channel_by_name(
116 char *name, struct ltt_kernel_session *session);
117
54012638 118/*
c363b55d 119 * Create functions malloc() the data structure.
54012638 120 */
54012638 121struct ltt_kernel_session *trace_create_kernel_session(void);
b082db07 122struct ltt_kernel_channel *trace_create_kernel_channel(struct lttng_channel *chan, char *path);
f3ed775e 123struct ltt_kernel_event *trace_create_kernel_event(struct lttng_event *ev);
58a97671 124struct ltt_kernel_metadata *trace_create_kernel_metadata(char *path);
54012638
DG
125struct ltt_kernel_stream *trace_create_kernel_stream(void);
126
c363b55d
DG
127/*
128 * Destroy functions free() the data structure and remove from linked list if
129 * it's applies.
130 */
131void trace_destroy_kernel_session(struct ltt_kernel_session *session);
132void trace_destroy_kernel_metadata(struct ltt_kernel_metadata *metadata);
133void trace_destroy_kernel_channel(struct ltt_kernel_channel *channel);
134void trace_destroy_kernel_event(struct ltt_kernel_event *event);
135void trace_destroy_kernel_stream(struct ltt_kernel_stream *stream);
136
fda89c9b 137#endif /* _LTT_TRACE_H */
This page took 0.028958 seconds and 4 git commands to generate.