Fix: don't keep vpid, procname, nor patchlevel environment for per-uid buffers
[lttng-tools.git] / src / common / ust-consumer / ust-consumer.h
... / ...
CommitLineData
1/*
2 * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca>
3 * Copyright (C) 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License, version 2 only,
7 * as published by the Free Software Foundation.
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 along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
17 */
18
19#ifndef _LTTNG_USTCONSUMER_H
20#define _LTTNG_USTCONSUMER_H
21
22#include <config.h>
23#include <errno.h>
24
25#include <common/consumer.h>
26
27#ifdef HAVE_LIBLTTNG_UST_CTL
28
29int lttng_ustconsumer_take_snapshot(struct lttng_consumer_stream *stream);
30
31int lttng_ustconsumer_get_produced_snapshot(
32 struct lttng_consumer_stream *stream, unsigned long *pos);
33
34int lttng_ustconsumer_recv_cmd(struct lttng_consumer_local_data *ctx,
35 int sock, struct pollfd *consumer_sockpoll);
36
37extern int lttng_ustconsumer_allocate_channel(struct lttng_consumer_channel *chan);
38extern void lttng_ustconsumer_del_channel(struct lttng_consumer_channel *chan);
39extern int lttng_ustconsumer_add_stream(struct lttng_consumer_stream *stream);
40extern void lttng_ustconsumer_del_stream(struct lttng_consumer_stream *stream);
41
42int lttng_ustconsumer_read_subbuffer(struct lttng_consumer_stream *stream,
43 struct lttng_consumer_local_data *ctx);
44int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream *stream);
45
46void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream *stream);
47
48int lttng_ustctl_get_mmap_read_offset(struct lttng_consumer_stream *stream,
49 unsigned long *off);
50void *lttng_ustctl_get_mmap_base(struct lttng_consumer_stream *stream);
51int lttng_ustconsumer_data_pending(struct lttng_consumer_stream *stream);
52void lttng_ustconsumer_close_metadata(struct lttng_ht *ht);
53void lttng_ustconsumer_close_stream_wakeup(struct lttng_consumer_stream *stream);
54int lttng_ustconsumer_recv_metadata(int sock, uint64_t key, uint64_t offset,
55 uint64_t len, struct lttng_consumer_channel *channel);
56int lttng_ustconsumer_push_metadata(struct lttng_consumer_channel *metadata,
57 const char *metadata_str, uint64_t target_offset, uint64_t len);
58int lttng_ustconsumer_request_metadata(struct lttng_consumer_local_data *ctx,
59 struct lttng_consumer_channel *channel);
60
61#else /* HAVE_LIBLTTNG_UST_CTL */
62
63static inline
64ssize_t lttng_ustconsumer_on_read_subbuffer_mmap(
65 struct lttng_consumer_local_data *ctx,
66 struct lttng_consumer_stream *stream, unsigned long len,
67 unsigned long padding)
68{
69 return -ENOSYS;
70}
71
72static inline
73ssize_t lttng_ustconsumer_on_read_subbuffer_splice(
74 struct lttng_consumer_local_data *ctx,
75 struct lttng_consumer_stream *uststream, unsigned long len,
76 unsigned long padding)
77{
78 return -ENOSYS;
79}
80
81static inline
82int lttng_ustconsumer_take_snapshot(struct lttng_consumer_stream *stream)
83{
84 return -ENOSYS;
85}
86
87static inline
88int lttng_ustconsumer_get_produced_snapshot(
89 struct lttng_consumer_stream *stream, unsigned long *pos)
90{
91 return -ENOSYS;
92}
93
94static inline
95int lttng_ustconsumer_recv_cmd(struct lttng_consumer_local_data *ctx,
96 int sock, struct pollfd *consumer_sockpoll)
97{
98 return -ENOSYS;
99}
100
101static inline
102int lttng_ustconsumer_allocate_channel(struct lttng_consumer_channel *chan)
103{
104 return -ENOSYS;
105}
106
107static inline
108void lttng_ustconsumer_del_channel(struct lttng_consumer_channel *chan)
109{
110}
111
112static inline
113int lttng_ustconsumer_add_stream(struct lttng_consumer_stream *stream)
114{
115 return -ENOSYS;
116}
117
118static inline
119void lttng_ustconsumer_del_stream(struct lttng_consumer_stream *stream)
120{
121}
122
123static inline
124int lttng_ustconsumer_read_subbuffer(struct lttng_consumer_stream *stream,
125 struct lttng_consumer_local_data *ctx)
126{
127 return -ENOSYS;
128}
129
130static inline
131int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream *stream)
132{
133 return -ENOSYS;
134}
135
136static inline
137void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream *stream)
138{
139}
140
141static inline
142int lttng_ustctl_get_mmap_read_offset(struct lttng_consumer_stream *stream,
143 unsigned long *off)
144{
145 return -ENOSYS;
146}
147static inline
148int lttng_ustconsumer_data_pending(struct lttng_consumer_stream *stream)
149{
150 return -ENOSYS;
151}
152static inline
153void *lttng_ustctl_get_mmap_base(struct lttng_consumer_stream *stream)
154{
155 return NULL;
156}
157static inline
158void lttng_ustconsumer_close_metadata(struct lttng_ht *ht)
159{
160}
161static inline
162void lttng_ustconsumer_close_stream_wakeup(struct lttng_consumer_stream *stream)
163{
164}
165#endif /* HAVE_LIBLTTNG_UST_CTL */
166
167#endif /* _LTTNG_USTCONSUMER_H */
This page took 0.023172 seconds and 4 git commands to generate.