2 * SPDX-License-Identifier: MIT
4 * Copyright (C) 2016 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
6 * The context provider feature is part of the ABI and used by the Java jni
7 * interface. This header should be moved to the public header directory once
8 * some test code and documentation is written.
11 #ifndef _LTTNG_UST_CONTEXT_PROVIDER_H
12 #define _LTTNG_UST_CONTEXT_PROVIDER_H
15 #include <lttng/ust-events.h>
17 #include "common/dynamic-type.h"
19 struct lttng_ust_registered_context_provider
;
20 struct lttng_ust_probe_ctx
;
25 * IMPORTANT: this structure is part of the ABI between the probe and
26 * UST. Additional selectors may be added in the future, mapping to new
27 * union fields, which means the overall size of this structure may
28 * increase. This means this structure should never be nested within a
29 * public structure interface, nor embedded in an array.
32 struct lttng_ust_ctx_value
{
33 enum lttng_ust_dynamic_type sel
; /* Type selector */
45 * IMPORTANT: this structure is part of the ABI between the probe and
46 * UST. Fields need to be only added at the end, never reordered, never
49 * The field @struct_size should be used to determine the size of the
50 * structure. It should be queried before using additional fields added
51 * at the end of the structure.
54 struct lttng_ust_context_provider
{
58 size_t (*get_size
)(void *priv
, struct lttng_ust_probe_ctx
*probe_ctx
,
60 void (*record
)(void *priv
, struct lttng_ust_probe_ctx
*probe_ctx
,
61 struct lttng_ust_ring_buffer_ctx
*ctx
,
62 struct lttng_ust_channel_buffer
*chan
);
63 void (*get_value
)(void *priv
, struct lttng_ust_probe_ctx
*probe_ctx
,
64 struct lttng_ust_ctx_value
*value
);
67 /* End of base ABI. Fields below should be used after checking struct_size. */
71 * Application context callback private data
73 * IMPORTANT: this structure is part of the ABI between the probe and
74 * UST. Fields need to be only added at the end, never reordered, never
77 * The field @struct_size should be used to determine the size of the
78 * structure. It should be queried before using additional fields added
79 * at the end of the structure.
82 struct lttng_ust_app_context
{
85 struct lttng_ust_event_field
*event_field
;
88 /* End of base ABI. Fields below should be used after checking struct_size. */
92 * Returns an opaque pointer on success, which must be passed to
93 * lttng_ust_context_provider_unregister for unregistration. Returns
96 struct lttng_ust_registered_context_provider
*lttng_ust_context_provider_register(struct lttng_ust_context_provider
*provider
);
98 void lttng_ust_context_provider_unregister(struct lttng_ust_registered_context_provider
*reg_provider
);
100 #endif /* _LTTNG_UST_CONTEXT_PROVIDER_H */