d73b9852e7d0cbfe21551dbf63f06580fe0e58c2
[lttng-tools.git] / src / common / ust-consumer / ust-consumer.h
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
29 int lttng_ustconsumer_take_snapshot(struct lttng_consumer_stream *stream);
30 int lttng_ustconsumer_sample_snapshot_positions(
31 struct lttng_consumer_stream *stream);
32
33 int lttng_ustconsumer_get_produced_snapshot(
34 struct lttng_consumer_stream *stream, unsigned long *pos);
35 int lttng_ustconsumer_get_consumed_snapshot(
36 struct lttng_consumer_stream *stream, unsigned long *pos);
37
38 int lttng_ustconsumer_recv_cmd(struct lttng_consumer_local_data *ctx,
39 int sock, struct pollfd *consumer_sockpoll);
40
41 extern int lttng_ustconsumer_allocate_channel(struct lttng_consumer_channel *chan);
42 extern void lttng_ustconsumer_del_channel(struct lttng_consumer_channel *chan);
43 extern void lttng_ustconsumer_free_channel(struct lttng_consumer_channel *chan);
44 extern int lttng_ustconsumer_add_stream(struct lttng_consumer_stream *stream);
45 extern void lttng_ustconsumer_del_stream(struct lttng_consumer_stream *stream);
46
47 int lttng_ustconsumer_read_subbuffer(struct lttng_consumer_stream *stream,
48 struct lttng_consumer_local_data *ctx);
49 int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream *stream);
50
51 void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream *stream);
52
53 int lttng_ustctl_get_mmap_read_offset(struct lttng_consumer_stream *stream,
54 unsigned long *off);
55 void *lttng_ustctl_get_mmap_base(struct lttng_consumer_stream *stream);
56 void lttng_ustctl_flush_buffer(struct lttng_consumer_stream *stream,
57 int producer_active);
58 int lttng_ustconsumer_get_stream_id(struct lttng_consumer_stream *stream,
59 uint64_t *stream_id);
60 int lttng_ustconsumer_data_pending(struct lttng_consumer_stream *stream);
61 void lttng_ustconsumer_close_all_metadata(struct lttng_ht *ht);
62 void lttng_ustconsumer_close_metadata(struct lttng_consumer_channel *metadata);
63 void lttng_ustconsumer_close_stream_wakeup(struct lttng_consumer_stream *stream);
64 int 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);
67 int lttng_ustconsumer_request_metadata(struct lttng_consumer_local_data *ctx,
68 struct lttng_consumer_channel *channel, int timer, int wait);
69 int lttng_ustconsumer_sync_metadata(struct lttng_consumer_local_data *ctx,
70 struct lttng_consumer_stream *metadata);
71 void lttng_ustconsumer_flush_buffer(struct lttng_consumer_stream *stream,
72 int producer);
73 int lttng_ustconsumer_get_current_timestamp(
74 struct lttng_consumer_stream *stream, uint64_t *ts);
75 int lttng_ustconsumer_get_sequence_number(
76 struct lttng_consumer_stream *stream, uint64_t *seq);
77
78 #else /* HAVE_LIBLTTNG_UST_CTL */
79
80 static inline
81 ssize_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
89 static inline
90 ssize_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
98 static inline
99 int lttng_ustconsumer_take_snapshot(struct lttng_consumer_stream *stream)
100 {
101 return -ENOSYS;
102 }
103
104 static inline
105 int lttng_ustconsumer_sample_snapshot_positions(
106 struct lttng_consumer_stream *stream)
107 {
108 return -ENOSYS;
109 }
110
111 static inline
112 int lttng_ustconsumer_get_produced_snapshot(
113 struct lttng_consumer_stream *stream, unsigned long *pos)
114 {
115 return -ENOSYS;
116 }
117
118 static inline
119 int lttng_ustconsumer_get_consumed_snapshot(
120 struct lttng_consumer_stream *stream, unsigned long *pos)
121 {
122 return -ENOSYS;
123 }
124
125 static inline
126 int lttng_ustconsumer_recv_cmd(struct lttng_consumer_local_data *ctx,
127 int sock, struct pollfd *consumer_sockpoll)
128 {
129 return -ENOSYS;
130 }
131
132 static inline
133 int lttng_ustconsumer_allocate_channel(struct lttng_consumer_channel *chan)
134 {
135 return -ENOSYS;
136 }
137
138 static inline
139 void lttng_ustconsumer_del_channel(struct lttng_consumer_channel *chan)
140 {
141 }
142
143 static inline
144 void lttng_ustconsumer_free_channel(struct lttng_consumer_channel *chan)
145 {
146 }
147
148 static inline
149 int lttng_ustconsumer_add_stream(struct lttng_consumer_stream *stream)
150 {
151 return -ENOSYS;
152 }
153
154 static inline
155 void lttng_ustconsumer_del_stream(struct lttng_consumer_stream *stream)
156 {
157 }
158
159 static inline
160 int lttng_ustconsumer_read_subbuffer(struct lttng_consumer_stream *stream,
161 struct lttng_consumer_local_data *ctx)
162 {
163 return -ENOSYS;
164 }
165
166 static inline
167 int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream *stream)
168 {
169 return -ENOSYS;
170 }
171
172 static inline
173 void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream *stream)
174 {
175 }
176
177 static inline
178 int lttng_ustctl_get_mmap_read_offset(struct lttng_consumer_stream *stream,
179 unsigned long *off)
180 {
181 return -ENOSYS;
182 }
183 static inline
184 int lttng_ustconsumer_data_pending(struct lttng_consumer_stream *stream)
185 {
186 return -ENOSYS;
187 }
188 static inline
189 void *lttng_ustctl_get_mmap_base(struct lttng_consumer_stream *stream)
190 {
191 return NULL;
192 }
193 static inline
194 void lttng_ustctl_flush_buffer(struct lttng_consumer_stream *stream,
195 int producer_active)
196 {
197 }
198 static inline
199 void lttng_ustconsumer_close_all_metadata(struct lttng_ht *ht)
200 {
201 }
202 static inline
203 void lttng_ustconsumer_close_metadata(struct lttng_consumer_channel *metadata)
204 {
205 }
206 static inline
207 void lttng_ustconsumer_close_stream_wakeup(struct lttng_consumer_stream *stream)
208 {
209 }
210 static inline
211 int 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 }
217 static inline
218 int 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 }
223 static inline
224 int lttng_ustconsumer_sync_metadata(struct lttng_consumer_local_data *ctx,
225 struct lttng_consumer_stream *metadata)
226 {
227 return -ENOSYS;
228 }
229 static inline
230 void lttng_ustconsumer_flush_buffer(struct lttng_consumer_stream *stream,
231 int producer)
232 {
233 }
234 static inline
235 int lttng_ustconsumer_get_current_timestamp(
236 struct lttng_consumer_stream *stream, uint64_t *ts)
237 {
238 return -ENOSYS;
239 }
240 static inline
241 int lttng_ustconsumer_get_sequence_number(
242 struct lttng_consumer_stream *stream, uint64_t *seq)
243 {
244 return -ENOSYS;
245 }
246 static inline
247 int 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.033682 seconds and 3 git commands to generate.