MI: implement all objects related to trigger machine interface
[lttng-tools.git] / include / lttng / action / action-internal.h
index 0649333f2d4d73a85250fa573e6ceeb811b4e12e..e97d4f032bd430b919c9b5837a2cbbb233e20ecf 100644 (file)
@@ -20,6 +20,9 @@
 #include <urcu/ref.h>
 
 struct lttng_rate_policy;
+struct mi_writer;
+struct mi_lttng_error_query_callbacks;
+struct lttng_trigger;
 
 typedef bool (*action_validate_cb)(struct lttng_action *action);
 typedef void (*action_destroy_cb)(struct lttng_action *action);
@@ -35,6 +38,8 @@ typedef const struct lttng_rate_policy *(*action_get_rate_policy_cb)(
 typedef enum lttng_action_status (*action_add_error_query_results_cb)(
                const struct lttng_action *action,
                struct lttng_error_query_results *results);
+typedef enum lttng_error_code (*action_mi_serialize_cb)(
+               const struct lttng_action *condition, struct mi_writer *writer);
 
 struct lttng_action {
        struct urcu_ref ref;
@@ -45,6 +50,7 @@ struct lttng_action {
        action_destroy_cb destroy;
        action_get_rate_policy_cb get_rate_policy;
        action_add_error_query_results_cb add_error_query_results;
+       action_mi_serialize_cb mi_serialize;
 
        /* Internal use only. */
 
@@ -76,7 +82,8 @@ void lttng_action_init(struct lttng_action *action,
                action_equal_cb equal,
                action_destroy_cb destroy,
                action_get_rate_policy_cb get_rate_policy,
-               action_add_error_query_results_cb add_error_query_results);
+               action_add_error_query_results_cb add_error_query_results,
+               action_mi_serialize_cb mi);
 
 LTTNG_HIDDEN
 bool lttng_action_validate(struct lttng_action *action);
@@ -128,5 +135,12 @@ LTTNG_HIDDEN
 enum lttng_action_status lttng_action_generic_add_error_query_results(
                const struct lttng_action *action,
                struct lttng_error_query_results *results);
+LTTNG_HIDDEN
+enum lttng_error_code lttng_action_mi_serialize(const struct lttng_trigger *trigger,
+               const struct lttng_action *action,
+               struct mi_writer *writer,
+               const struct mi_lttng_error_query_callbacks
+                               *error_query_callbacks,
+               struct lttng_dynamic_array *action_path_indexes);
 
 #endif /* LTTNG_ACTION_INTERNAL_H */
This page took 0.023333 seconds and 4 git commands to generate.