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