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