Clean-up: run format-cpp on the tree
[lttng-tools.git] / include / lttng / action / action-internal.hpp
CommitLineData
a58c490f 1/*
ab5be9fa 2 * Copyright (C) 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
a58c490f 3 *
ab5be9fa 4 * SPDX-License-Identifier: LGPL-2.1-only
a58c490f 5 *
a58c490f
JG
6 */
7
8#ifndef LTTNG_ACTION_INTERNAL_H
9#define LTTNG_ACTION_INTERNAL_H
10
c9e313bc
SM
11#include <common/buffer-view.hpp>
12#include <common/dynamic-buffer.hpp>
13#include <common/macros.hpp>
14#include <common/payload-view.hpp>
15#include <common/payload.hpp>
28f23191 16
588c4b0d 17#include <lttng/lttng.h>
28f23191 18
588c4b0d 19#include <pthread.h>
a58c490f 20#include <stdbool.h>
72756a3f 21#include <sys/types.h>
c852ce4e 22#include <urcu/ref.h>
a58c490f 23
7f4d5b07 24struct lttng_rate_policy;
6a751b95
JR
25struct mi_writer;
26struct mi_lttng_error_query_callbacks;
27struct lttng_trigger;
2d57482c 28
e665dfbc
JG
29using action_validate_cb = bool (*)(struct lttng_action *);
30using action_destroy_cb = void (*)(struct lttng_action *);
31using action_serialize_cb = int (*)(struct lttng_action *, struct lttng_payload *);
32using action_equal_cb = bool (*)(const struct lttng_action *, const struct lttng_action *);
33using action_create_from_payload_cb = ssize_t (*)(struct lttng_payload_view *,
34 struct lttng_action **);
35using action_get_rate_policy_cb = const struct lttng_rate_policy *(*) (const struct lttng_action *);
36using action_add_error_query_results_cb = enum lttng_action_status (*)(
37 const struct lttng_action *, struct lttng_error_query_results *);
38using action_mi_serialize_cb = enum lttng_error_code (*)(const struct lttng_action *,
39 struct mi_writer *);
a58c490f
JG
40
41struct lttng_action {
c852ce4e 42 struct urcu_ref ref;
a58c490f
JG
43 enum lttng_action_type type;
44 action_validate_cb validate;
45 action_serialize_cb serialize;
3dd04a6a 46 action_equal_cb equal;
a58c490f 47 action_destroy_cb destroy;
7f4d5b07 48 action_get_rate_policy_cb get_rate_policy;
588c4b0d 49 action_add_error_query_results_cb add_error_query_results;
6a751b95 50 action_mi_serialize_cb mi_serialize;
2d57482c
JR
51
52 /* Internal use only. */
53
54 /* The number of time the actions was enqueued for execution. */
55 uint64_t execution_request_counter;
56 /*
57 * The number of time the action was actually executed.
7f4d5b07 58 * Action rate policy can impact on this number.
2d57482c
JR
59 * */
60 uint64_t execution_counter;
61 /*
62 * The number of time the action execution failed.
588c4b0d
JG
63 * An unsigned long is used to use a type which makes atomic
64 * operations possible.
2d57482c 65 */
588c4b0d 66 unsigned long execution_failure_counter;
a58c490f
JG
67};
68
69struct lttng_action_comm {
70 /* enum lttng_action_type */
71 int8_t action_type;
72} LTTNG_PACKED;
73
6acb3f46 74void lttng_action_init(struct lttng_action *action,
28f23191
JG
75 enum lttng_action_type type,
76 action_validate_cb validate,
77 action_serialize_cb serialize,
78 action_equal_cb equal,
79 action_destroy_cb destroy,
80 action_get_rate_policy_cb get_rate_policy,
81 action_add_error_query_results_cb add_error_query_results,
82 action_mi_serialize_cb mi);
6acb3f46 83
a58c490f
JG
84bool lttng_action_validate(struct lttng_action *action);
85
28f23191 86int lttng_action_serialize(struct lttng_action *action, struct lttng_payload *buf);
a58c490f 87
c0a66c84 88ssize_t lttng_action_create_from_payload(struct lttng_payload_view *view,
28f23191 89 struct lttng_action **action);
a58c490f 90
28f23191 91bool lttng_action_is_equal(const struct lttng_action *a, const struct lttng_action *b);
3dd04a6a 92
c852ce4e
JG
93void lttng_action_get(struct lttng_action *action);
94
c852ce4e
JG
95void lttng_action_put(struct lttng_action *action);
96
28f23191 97const char *lttng_action_type_string(enum lttng_action_type action_type);
10615eee 98
2d57482c
JR
99void lttng_action_increase_execution_request_count(struct lttng_action *action);
100
2d57482c
JR
101void lttng_action_increase_execution_count(struct lttng_action *action);
102
2d57482c
JR
103void lttng_action_increase_execution_failure_count(struct lttng_action *action);
104
2d57482c
JR
105bool lttng_action_should_execute(const struct lttng_action *action);
106
28f23191
JG
107enum lttng_action_status
108lttng_action_add_error_query_results(const struct lttng_action *action,
109 struct lttng_error_query_results *results);
588c4b0d
JG
110
111/*
112 * For use by the various lttng_action implementation. Implements the default
113 * behavior to the generic error "execution failure counter" that all actions
a8940c5e 114 * (except list, which passes-through) provide.
588c4b0d 115 */
28f23191
JG
116enum lttng_action_status
117lttng_action_generic_add_error_query_results(const struct lttng_action *action,
118 struct lttng_error_query_results *results);
119enum lttng_error_code
120lttng_action_mi_serialize(const struct lttng_trigger *trigger,
121 const struct lttng_action *action,
122 struct mi_writer *writer,
123 const struct mi_lttng_error_query_callbacks *error_query_callbacks,
124 struct lttng_dynamic_array *action_path_indexes);
588c4b0d 125
a58c490f 126#endif /* LTTNG_ACTION_INTERNAL_H */
This page took 0.049684 seconds and 4 git commands to generate.