X-Git-Url: https://git.efficios.com/?a=blobdiff_plain;f=include%2Flttng%2Fcondition%2Fevent-rule-internal.h;fp=include%2Flttng%2Fcondition%2Fevent-rule-internal.h;h=0000000000000000000000000000000000000000;hb=c3e68e71e0bca1c067bf24447163ac6850a9b09e;hp=0f2f3fbf6c3e7971a587bdb2bcdff3b8a79e3087;hpb=11f6ce94d8fb73f017888681aaba5d7df55fc735;p=deliverable%2Flttng-tools.git diff --git a/include/lttng/condition/event-rule-internal.h b/include/lttng/condition/event-rule-internal.h deleted file mode 100644 index 0f2f3fbf6..000000000 --- a/include/lttng/condition/event-rule-internal.h +++ /dev/null @@ -1,72 +0,0 @@ -/* - * Copyright (C) 2019 Jonathan Rajotte - * - * SPDX-License-Identifier: LGPL-2.1-only - * - */ - -#ifndef LTTNG_CONDITION_EVENT_RULE_INTERNAL_H -#define LTTNG_CONDITION_EVENT_RULE_INTERNAL_H - -#include -#include -#include -#include -#include - -struct lttng_capture_descriptor { - struct lttng_event_expr *event_expression; - struct lttng_bytecode *bytecode; -}; - -struct lttng_condition_event_rule { - struct lttng_condition parent; - struct lttng_event_rule *rule; - - /* Array of `struct lttng_capture_descriptor *`. */ - struct lttng_dynamic_pointer_array capture_descriptors; -}; - -struct lttng_evaluation_event_rule { - struct lttng_evaluation parent; - char *name; -}; - -struct lttng_evaluation_event_rule_comm { - /* Includes the null terminator. */ - uint32_t trigger_name_length; - /* Trigger name. */ - char payload[]; -} LTTNG_PACKED; - -LTTNG_HIDDEN -ssize_t lttng_condition_event_rule_create_from_payload( - struct lttng_payload_view *view, - struct lttng_condition **condition); - -LTTNG_HIDDEN -enum lttng_condition_status -lttng_condition_event_rule_borrow_rule_mutable( - const struct lttng_condition *condition, - struct lttng_event_rule **rule); - -LTTNG_HIDDEN -struct lttng_evaluation *lttng_evaluation_event_rule_create( - const char* trigger_name); - -LTTNG_HIDDEN -ssize_t lttng_evaluation_event_rule_create_from_payload( - struct lttng_payload_view *view, - struct lttng_evaluation **_evaluation); - -LTTNG_HIDDEN -enum lttng_error_code -lttng_condition_event_rule_generate_capture_descriptor_bytecode( - struct lttng_condition *condition); - -LTTNG_HIDDEN -const struct lttng_bytecode * -lttng_condition_event_rule_get_capture_bytecode_at_index( - const struct lttng_condition *condition, unsigned int index); - -#endif /* LTTNG_CONDITION_EVENT_RULE_INTERNAL_H */