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
25 #include <common/consumer.h>
27 #ifdef HAVE_LIBLTTNG_UST_CTL
30 * Take a snapshot for a specific fd
32 * Returns 0 on success, < 0 on error
34 int lttng_ustconsumer_take_snapshot(struct lttng_consumer_local_data
*ctx
,
35 struct lttng_consumer_stream
*stream
);
38 * Get the produced position
40 * Returns 0 on success, < 0 on error
42 int lttng_ustconsumer_get_produced_snapshot(
43 struct lttng_consumer_local_data
*ctx
,
44 struct lttng_consumer_stream
*stream
,
47 int lttng_ustconsumer_recv_cmd(struct lttng_consumer_local_data
*ctx
,
48 int sock
, struct pollfd
*consumer_sockpoll
);
50 extern int lttng_ustconsumer_allocate_channel(struct lttng_consumer_channel
*chan
);
51 extern void lttng_ustconsumer_del_channel(struct lttng_consumer_channel
*chan
);
52 extern int lttng_ustconsumer_add_stream(struct lttng_consumer_stream
*stream
);
53 extern void lttng_ustconsumer_del_stream(struct lttng_consumer_stream
*stream
);
55 int lttng_ustconsumer_read_subbuffer(struct lttng_consumer_stream
*stream
,
56 struct lttng_consumer_local_data
*ctx
);
57 int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream
*stream
);
59 void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream
*stream
);
61 extern int lttng_ustctl_get_mmap_read_offset(
62 struct lttng_ust_shm_handle
*handle
,
63 struct lttng_ust_lib_ring_buffer
*buf
, unsigned long *off
);
64 int lttng_ustconsumer_data_available(struct lttng_consumer_stream
*stream
);
66 #else /* HAVE_LIBLTTNG_UST_CTL */
69 ssize_t
lttng_ustconsumer_on_read_subbuffer_mmap(
70 struct lttng_consumer_local_data
*ctx
,
71 struct lttng_consumer_stream
*stream
, unsigned long len
,
72 unsigned long padding
)
78 ssize_t
lttng_ustconsumer_on_read_subbuffer_splice(
79 struct lttng_consumer_local_data
*ctx
,
80 struct lttng_consumer_stream
*uststream
, unsigned long len
,
81 unsigned long padding
)
87 int lttng_ustconsumer_take_snapshot(struct lttng_consumer_local_data
*ctx
,
88 struct lttng_consumer_stream
*stream
)
94 int lttng_ustconsumer_get_produced_snapshot(
95 struct lttng_consumer_local_data
*ctx
,
96 struct lttng_consumer_stream
*stream
,
103 int lttng_ustconsumer_recv_cmd(struct lttng_consumer_local_data
*ctx
,
104 int sock
, struct pollfd
*consumer_sockpoll
)
110 int lttng_ustconsumer_allocate_channel(struct lttng_consumer_channel
*chan
)
116 void lttng_ustconsumer_del_channel(struct lttng_consumer_channel
*chan
)
121 int lttng_ustconsumer_add_stream(struct lttng_consumer_stream
*stream
)
127 void lttng_ustconsumer_del_stream(struct lttng_consumer_stream
*stream
)
132 int lttng_ustconsumer_read_subbuffer(struct lttng_consumer_stream
*stream
,
133 struct lttng_consumer_local_data
*ctx
)
139 int lttng_ustconsumer_on_recv_stream(struct lttng_consumer_stream
*stream
)
145 void lttng_ustconsumer_on_stream_hangup(struct lttng_consumer_stream
*stream
)
150 int lttng_ustctl_get_mmap_read_offset(struct lttng_ust_shm_handle
*handle
,
151 struct lttng_ust_lib_ring_buffer
*buf
, unsigned long *off
)
156 int lttng_ustconsumer_data_available(struct lttng_consumer_stream
*stream
)
160 #endif /* HAVE_LIBLTTNG_UST_CTL */
162 #endif /* _LTTNG_USTCONSUMER_H */