2 * Copyright (C) 2011 - Julien Desfossez <julien.desfossez@polymtl.ca>
3 * Copyright (C) 2011 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
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.
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.
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.
19 #ifndef _LTTNG_USTCONSUMER_H
20 #define _LTTNG_USTCONSUMER_H
24 #include <common/consumer/consumer.h>
27 #ifdef HAVE_LIBLTTNG_UST_CTL
29 int lttng_ustconsumer_take_snapshot(struct lttng_consumer_stream
*stream
);
30 int lttng_ustconsumer_sample_snapshot_positions(
31 struct lttng_consumer_stream
*stream
);
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
);
38 int lttng_ustconsumer_recv_cmd(struct lttng_consumer_local_data
*ctx
,
39 int sock
, struct pollfd
*consumer_sockpoll
);
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
);
47 int lttng_ustconsumer_read_subbuffer(struct lttng_consumer_stream
*stream
,
48 struct lttng_consumer_local_data
*ctx
, bool *rotated
);
49 int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream
*stream
);
51 void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream
*stream
);
53 int lttng_ustctl_get_mmap_read_offset(struct lttng_consumer_stream
*stream
,
55 void *lttng_ustctl_get_mmap_base(struct lttng_consumer_stream
*stream
);
56 int lttng_ustconsumer_get_stream_id(struct lttng_consumer_stream
*stream
,
58 int lttng_ustconsumer_data_pending(struct lttng_consumer_stream
*stream
);
59 void lttng_ustconsumer_close_all_metadata(struct lttng_ht
*ht
);
60 void lttng_ustconsumer_close_metadata(struct lttng_consumer_channel
*metadata
);
61 void lttng_ustconsumer_close_stream_wakeup(struct lttng_consumer_stream
*stream
);
62 int lttng_ustconsumer_recv_metadata(int sock
, uint64_t key
, uint64_t offset
,
63 uint64_t len
, uint64_t version
,
64 struct lttng_consumer_channel
*channel
, int timer
, int wait
);
65 int lttng_ustconsumer_request_metadata(struct lttng_consumer_local_data
*ctx
,
66 struct lttng_consumer_channel
*channel
, int timer
, int wait
);
67 int lttng_ustconsumer_sync_metadata(struct lttng_consumer_local_data
*ctx
,
68 struct lttng_consumer_stream
*metadata
);
69 void lttng_ustconsumer_flush_buffer(struct lttng_consumer_stream
*stream
,
71 int lttng_ustconsumer_get_current_timestamp(
72 struct lttng_consumer_stream
*stream
, uint64_t *ts
);
73 int lttng_ustconsumer_get_sequence_number(
74 struct lttng_consumer_stream
*stream
, uint64_t *seq
);
76 #else /* HAVE_LIBLTTNG_UST_CTL */
79 ssize_t
lttng_ustconsumer_on_read_subbuffer_mmap(
80 struct lttng_consumer_local_data
*ctx
,
81 struct lttng_consumer_stream
*stream
, unsigned long len
,
82 unsigned long padding
)
88 ssize_t
lttng_ustconsumer_on_read_subbuffer_splice(
89 struct lttng_consumer_local_data
*ctx
,
90 struct lttng_consumer_stream
*uststream
, unsigned long len
,
91 unsigned long padding
)
97 int lttng_ustconsumer_take_snapshot(struct lttng_consumer_stream
*stream
)
103 int lttng_ustconsumer_sample_snapshot_positions(
104 struct lttng_consumer_stream
*stream
)
110 int lttng_ustconsumer_get_produced_snapshot(
111 struct lttng_consumer_stream
*stream
, unsigned long *pos
)
117 int lttng_ustconsumer_get_consumed_snapshot(
118 struct lttng_consumer_stream
*stream
, unsigned long *pos
)
124 int lttng_ustconsumer_recv_cmd(struct lttng_consumer_local_data
*ctx
,
125 int sock
, struct pollfd
*consumer_sockpoll
)
131 int lttng_ustconsumer_allocate_channel(struct lttng_consumer_channel
*chan
)
137 void lttng_ustconsumer_del_channel(struct lttng_consumer_channel
*chan
)
142 void lttng_ustconsumer_free_channel(struct lttng_consumer_channel
*chan
)
147 int lttng_ustconsumer_add_stream(struct lttng_consumer_stream
*stream
)
153 void lttng_ustconsumer_del_stream(struct lttng_consumer_stream
*stream
)
158 int lttng_ustconsumer_read_subbuffer(struct lttng_consumer_stream
*stream
,
159 struct lttng_consumer_local_data
*ctx
, bool *rotated
)
165 int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream
*stream
)
171 void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream
*stream
)
176 int lttng_ustctl_get_mmap_read_offset(struct lttng_consumer_stream
*stream
,
182 int lttng_ustconsumer_data_pending(struct lttng_consumer_stream
*stream
)
187 void *lttng_ustctl_get_mmap_base(struct lttng_consumer_stream
*stream
)
192 void lttng_ustconsumer_close_all_metadata(struct lttng_ht
*ht
)
196 void lttng_ustconsumer_close_metadata(struct lttng_consumer_channel
*metadata
)
200 void lttng_ustconsumer_close_stream_wakeup(struct lttng_consumer_stream
*stream
)
204 int lttng_ustconsumer_recv_metadata(int sock
, uint64_t key
, uint64_t offset
,
205 uint64_t len
, uint64_t version
,
206 struct lttng_consumer_channel
*channel
, int timer
)
211 int lttng_ustconsumer_request_metadata(struct lttng_consumer_local_data
*ctx
,
212 struct lttng_consumer_channel
*channel
, int timer
, int wait
)
217 int lttng_ustconsumer_sync_metadata(struct lttng_consumer_local_data
*ctx
,
218 struct lttng_consumer_stream
*metadata
)
223 void lttng_ustconsumer_flush_buffer(struct lttng_consumer_stream
*stream
,
228 int lttng_ustconsumer_get_current_timestamp(
229 struct lttng_consumer_stream
*stream
, uint64_t *ts
)
234 int lttng_ustconsumer_get_sequence_number(
235 struct lttng_consumer_stream
*stream
, uint64_t *seq
)
240 int lttng_ustconsumer_get_stream_id(struct lttng_consumer_stream
*stream
,
245 #endif /* HAVE_LIBLTTNG_UST_CTL */
247 #endif /* _LTTNG_USTCONSUMER_H */