2 * Copyright (C) 2020 Philippe Proulx <pproulx@efficios.com>
4 * SPDX-License-Identifier: LGPL-2.1-only
8 #ifndef LTTNG_EVENT_EXPR_INTERNAL_H
9 #define LTTNG_EVENT_EXPR_INTERNAL_H
11 #include <common/macros.h>
12 #include <lttng/event-expr.h>
18 struct lttng_bytecode
;
21 struct lttng_event_expr
{
22 enum lttng_event_expr_type type
;
26 * `LTTNG_EVENT_EXPR_TYPE_EVENT_PAYLOAD_FIELD` and
27 * `LTTNG_EVENT_EXPR_TYPE_CHANNEL_CONTEXT_FIELD`.
29 struct lttng_event_expr_field
{
30 struct lttng_event_expr parent
;
34 /* `LTTNG_EVENT_EXPR_TYPE_APP_SPECIFIC_CONTEXT_FIELD` */
35 struct lttng_event_expr_app_specific_context_field
{
36 struct lttng_event_expr parent
;
41 /* `LTTNG_EVENT_EXPR_TYPE_ARRAY_FIELD_ELEMENT` */
42 struct lttng_event_expr_array_field_element
{
43 struct lttng_event_expr parent
;
46 struct lttng_event_expr
*array_field_expr
;
52 * Returns whether or not `expr` is an l-value (locator value).
55 bool lttng_event_expr_is_lvalue(const struct lttng_event_expr
*expr
)
58 return expr
->type
== LTTNG_EVENT_EXPR_TYPE_EVENT_PAYLOAD_FIELD
||
59 expr
->type
== LTTNG_EVENT_EXPR_TYPE_CHANNEL_CONTEXT_FIELD
||
60 expr
->type
== LTTNG_EVENT_EXPR_TYPE_APP_SPECIFIC_CONTEXT_FIELD
||
61 expr
->type
== LTTNG_EVENT_EXPR_TYPE_ARRAY_FIELD_ELEMENT
;
64 int lttng_event_expr_to_bytecode(const struct lttng_event_expr
*expr
,
65 struct lttng_bytecode
**bytecode_out
);
67 enum lttng_error_code
lttng_event_expr_mi_serialize(
68 const struct lttng_event_expr
*expression
,
69 struct mi_writer
*writer
);
75 #endif /* LTTNG_EVENT_EXPR_INTERNAL_H */