2 * Copyright (C) 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 * SPDX-License-Identifier: LGPL-2.1-only
8 #ifndef LTTNG_ACTION_INTERNAL_H
9 #define LTTNG_ACTION_INTERNAL_H
11 #include <common/buffer-view.h>
12 #include <common/dynamic-buffer.h>
13 #include <common/macros.h>
14 #include <common/payload-view.h>
15 #include <common/payload.h>
16 #include <lttng/lttng.h>
19 #include <sys/types.h>
22 struct lttng_rate_policy
;
24 struct mi_lttng_error_query_callbacks
;
27 typedef bool (*action_validate_cb
)(struct lttng_action
*action
);
28 typedef void (*action_destroy_cb
)(struct lttng_action
*action
);
29 typedef int (*action_serialize_cb
)(struct lttng_action
*action
,
30 struct lttng_payload
*payload
);
31 typedef bool (*action_equal_cb
)(const struct lttng_action
*a
,
32 const struct lttng_action
*b
);
33 typedef ssize_t (*action_create_from_payload_cb
)(
34 struct lttng_payload_view
*view
,
35 struct lttng_action
**action
);
36 typedef const struct lttng_rate_policy
*(*action_get_rate_policy_cb
)(
37 const struct lttng_action
*action
);
38 typedef enum lttng_action_status (*action_add_error_query_results_cb
)(
39 const struct lttng_action
*action
,
40 struct lttng_error_query_results
*results
);
41 typedef enum lttng_error_code (*action_mi_serialize_cb
)(
42 const struct lttng_action
*condition
, struct mi_writer
*writer
);
46 enum lttng_action_type type
;
47 action_validate_cb validate
;
48 action_serialize_cb serialize
;
49 action_equal_cb equal
;
50 action_destroy_cb destroy
;
51 action_get_rate_policy_cb get_rate_policy
;
52 action_add_error_query_results_cb add_error_query_results
;
53 action_mi_serialize_cb mi_serialize
;
55 /* Internal use only. */
57 /* The number of time the actions was enqueued for execution. */
58 uint64_t execution_request_counter
;
60 * The number of time the action was actually executed.
61 * Action rate policy can impact on this number.
63 uint64_t execution_counter
;
65 * The number of time the action execution failed.
66 * An unsigned long is used to use a type which makes atomic
67 * operations possible.
69 unsigned long execution_failure_counter
;
72 struct lttng_action_comm
{
73 /* enum lttng_action_type */
78 void lttng_action_init(struct lttng_action
*action
,
79 enum lttng_action_type type
,
80 action_validate_cb validate
,
81 action_serialize_cb serialize
,
82 action_equal_cb equal
,
83 action_destroy_cb destroy
,
84 action_get_rate_policy_cb get_rate_policy
,
85 action_add_error_query_results_cb add_error_query_results
,
86 action_mi_serialize_cb mi
);
89 bool lttng_action_validate(struct lttng_action
*action
);
92 int lttng_action_serialize(struct lttng_action
*action
,
93 struct lttng_payload
*buf
);
96 ssize_t
lttng_action_create_from_payload(struct lttng_payload_view
*view
,
97 struct lttng_action
**action
);
100 bool lttng_action_is_equal(const struct lttng_action
*a
,
101 const struct lttng_action
*b
);
104 void lttng_action_get(struct lttng_action
*action
);
107 void lttng_action_put(struct lttng_action
*action
);
110 const char* lttng_action_type_string(enum lttng_action_type action_type
);
113 void lttng_action_increase_execution_request_count(struct lttng_action
*action
);
116 void lttng_action_increase_execution_count(struct lttng_action
*action
);
119 void lttng_action_increase_execution_failure_count(struct lttng_action
*action
);
122 bool lttng_action_should_execute(const struct lttng_action
*action
);
125 enum lttng_action_status
lttng_action_add_error_query_results(
126 const struct lttng_action
*action
,
127 struct lttng_error_query_results
*results
);
130 * For use by the various lttng_action implementation. Implements the default
131 * behavior to the generic error "execution failure counter" that all actions
132 * (except list, which passes-through) provide.
135 enum lttng_action_status
lttng_action_generic_add_error_query_results(
136 const struct lttng_action
*action
,
137 struct lttng_error_query_results
*results
);
139 enum lttng_error_code
lttng_action_mi_serialize(const struct lttng_trigger
*trigger
,
140 const struct lttng_action
*action
,
141 struct mi_writer
*writer
,
142 const struct mi_lttng_error_query_callbacks
143 *error_query_callbacks
,
144 struct lttng_dynamic_array
*action_path_indexes
);
146 #endif /* LTTNG_ACTION_INTERNAL_H */