consumerd: move address computation from on_read_subbuffer_mmap
[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 <errno.h>
23
24#include <common/consumer/consumer.h>
25#include <stdbool.h>
26
27#ifdef HAVE_LIBLTTNG_UST_CTL
28
29int lttng_ustconsumer_take_snapshot(struct lttng_consumer_stream *stream);
30int lttng_ustconsumer_sample_snapshot_positions(
31 struct lttng_consumer_stream *stream);
32
33int lttng_ustconsumer_get_produced_snapshot(
34 struct lttng_consumer_stream *stream, unsigned long *pos);
35int lttng_ustconsumer_get_consumed_snapshot(
36 struct lttng_consumer_stream *stream, unsigned long *pos);
37
38int lttng_ustconsumer_recv_cmd(struct lttng_consumer_local_data *ctx,
39 int sock, struct pollfd *consumer_sockpoll);
40
41extern int lttng_ustconsumer_allocate_channel(struct lttng_consumer_channel *chan);
42extern void lttng_ustconsumer_del_channel(struct lttng_consumer_channel *chan);
43extern void lttng_ustconsumer_free_channel(struct lttng_consumer_channel *chan);
44extern int lttng_ustconsumer_add_stream(struct lttng_consumer_stream *stream);
45extern void lttng_ustconsumer_del_stream(struct lttng_consumer_stream *stream);
46
47int lttng_ustconsumer_read_subbuffer(struct lttng_consumer_stream *stream,
48 struct lttng_consumer_local_data *ctx);
49int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream *stream);
50
51void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream *stream);
52
53void lttng_ustctl_flush_buffer(struct lttng_consumer_stream *stream,
54 int producer_active);
55int lttng_ustconsumer_get_stream_id(struct lttng_consumer_stream *stream,
56 uint64_t *stream_id);
57int lttng_ustconsumer_data_pending(struct lttng_consumer_stream *stream);
58void lttng_ustconsumer_close_all_metadata(struct lttng_ht *ht);
59void lttng_ustconsumer_close_metadata(struct lttng_consumer_channel *metadata);
60void lttng_ustconsumer_close_stream_wakeup(struct lttng_consumer_stream *stream);
61int lttng_ustconsumer_recv_metadata(int sock, uint64_t key, uint64_t offset,
62 uint64_t len, uint64_t version,
63 struct lttng_consumer_channel *channel, int timer, int wait);
64int lttng_ustconsumer_request_metadata(struct lttng_consumer_local_data *ctx,
65 struct lttng_consumer_channel *channel, int timer, int wait);
66int lttng_ustconsumer_sync_metadata(struct lttng_consumer_local_data *ctx,
67 struct lttng_consumer_stream *metadata);
68void lttng_ustconsumer_flush_buffer(struct lttng_consumer_stream *stream,
69 int producer);
70int lttng_ustconsumer_get_current_timestamp(
71 struct lttng_consumer_stream *stream, uint64_t *ts);
72int lttng_ustconsumer_get_sequence_number(
73 struct lttng_consumer_stream *stream, uint64_t *seq);
74
75#else /* HAVE_LIBLTTNG_UST_CTL */
76
77static inline
78ssize_t lttng_ustconsumer_on_read_subbuffer_mmap(
79 struct lttng_consumer_local_data *ctx,
80 struct lttng_consumer_stream *stream, unsigned long len,
81 unsigned long padding)
82{
83 return -ENOSYS;
84}
85
86static inline
87ssize_t lttng_ustconsumer_on_read_subbuffer_splice(
88 struct lttng_consumer_local_data *ctx,
89 struct lttng_consumer_stream *uststream, unsigned long len,
90 unsigned long padding)
91{
92 return -ENOSYS;
93}
94
95static inline
96int lttng_ustconsumer_take_snapshot(struct lttng_consumer_stream *stream)
97{
98 return -ENOSYS;
99}
100
101static inline
102int lttng_ustconsumer_sample_snapshot_positions(
103 struct lttng_consumer_stream *stream)
104{
105 return -ENOSYS;
106}
107
108static inline
109int lttng_ustconsumer_get_produced_snapshot(
110 struct lttng_consumer_stream *stream, unsigned long *pos)
111{
112 return -ENOSYS;
113}
114
115static inline
116int lttng_ustconsumer_get_consumed_snapshot(
117 struct lttng_consumer_stream *stream, unsigned long *pos)
118{
119 return -ENOSYS;
120}
121
122static inline
123int lttng_ustconsumer_recv_cmd(struct lttng_consumer_local_data *ctx,
124 int sock, struct pollfd *consumer_sockpoll)
125{
126 return -ENOSYS;
127}
128
129static inline
130int lttng_ustconsumer_allocate_channel(struct lttng_consumer_channel *chan)
131{
132 return -ENOSYS;
133}
134
135static inline
136void lttng_ustconsumer_del_channel(struct lttng_consumer_channel *chan)
137{
138}
139
140static inline
141void lttng_ustconsumer_free_channel(struct lttng_consumer_channel *chan)
142{
143}
144
145static inline
146int lttng_ustconsumer_add_stream(struct lttng_consumer_stream *stream)
147{
148 return -ENOSYS;
149}
150
151static inline
152void lttng_ustconsumer_del_stream(struct lttng_consumer_stream *stream)
153{
154}
155
156static inline
157int lttng_ustconsumer_read_subbuffer(struct lttng_consumer_stream *stream,
158 struct lttng_consumer_local_data *ctx)
159{
160 return -ENOSYS;
161}
162
163static inline
164int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream *stream)
165{
166 return -ENOSYS;
167}
168
169static inline
170void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream *stream)
171{
172}
173
174static inline
175int lttng_ustctl_get_mmap_read_offset(struct lttng_consumer_stream *stream,
176 unsigned long *off)
177{
178 return -ENOSYS;
179}
180static inline
181int lttng_ustconsumer_data_pending(struct lttng_consumer_stream *stream)
182{
183 return -ENOSYS;
184}
185static inline
186void *lttng_ustctl_get_mmap_base(struct lttng_consumer_stream *stream)
187{
188 return NULL;
189}
190static inline
191void lttng_ustctl_flush_buffer(struct lttng_consumer_stream *stream,
192 int producer_active)
193{
194}
195static inline
196void lttng_ustconsumer_close_all_metadata(struct lttng_ht *ht)
197{
198}
199static inline
200void lttng_ustconsumer_close_metadata(struct lttng_consumer_channel *metadata)
201{
202}
203static inline
204void lttng_ustconsumer_close_stream_wakeup(struct lttng_consumer_stream *stream)
205{
206}
207static inline
208int lttng_ustconsumer_recv_metadata(int sock, uint64_t key, uint64_t offset,
209 uint64_t len, uint64_t version,
210 struct lttng_consumer_channel *channel, int timer)
211{
212 return -ENOSYS;
213}
214static inline
215int lttng_ustconsumer_request_metadata(struct lttng_consumer_local_data *ctx,
216 struct lttng_consumer_channel *channel, int timer, int wait)
217{
218 return -ENOSYS;
219}
220static inline
221int lttng_ustconsumer_sync_metadata(struct lttng_consumer_local_data *ctx,
222 struct lttng_consumer_stream *metadata)
223{
224 return -ENOSYS;
225}
226static inline
227void lttng_ustconsumer_flush_buffer(struct lttng_consumer_stream *stream,
228 int producer)
229{
230}
231static inline
232int lttng_ustconsumer_get_current_timestamp(
233 struct lttng_consumer_stream *stream, uint64_t *ts)
234{
235 return -ENOSYS;
236}
237static inline
238int lttng_ustconsumer_get_sequence_number(
239 struct lttng_consumer_stream *stream, uint64_t *seq)
240{
241 return -ENOSYS;
242}
243static inline
244int lttng_ustconsumer_get_stream_id(struct lttng_consumer_stream *stream,
245 uint64_t *stream_id)
246{
247 return -ENOSYS;
248}
249#endif /* HAVE_LIBLTTNG_UST_CTL */
250
251#endif /* _LTTNG_USTCONSUMER_H */
This page took 0.039183 seconds and 4 git commands to generate.