X-Git-Url: http://git.efficios.com/?p=lttng-tools.git;a=blobdiff_plain;f=include%2Flttng%2Faction%2Faction-internal.h;h=9e43a34d026491726e064acc6bede25bf3e92b88;hp=f747276c78c0240cd08c214bd034b75b16e68d28;hb=2463b7879c00298daa79744cdaae82ac061a4ed8;hpb=3dd04a6a94950c91b0895e6da9da5f84db1e7abc diff --git a/include/lttng/action/action-internal.h b/include/lttng/action/action-internal.h index f747276c7..9e43a34d0 100644 --- a/include/lttng/action/action-internal.h +++ b/include/lttng/action/action-internal.h @@ -12,20 +12,24 @@ #include #include #include +#include +#include #include #include +#include typedef bool (*action_validate_cb)(struct lttng_action *action); typedef void (*action_destroy_cb)(struct lttng_action *action); typedef int (*action_serialize_cb)(struct lttng_action *action, - struct lttng_dynamic_buffer *buf); + struct lttng_payload *payload); typedef bool (*action_equal_cb)(const struct lttng_action *a, const struct lttng_action *b); -typedef ssize_t (*action_create_from_buffer_cb)( - const struct lttng_buffer_view *view, +typedef ssize_t (*action_create_from_payload_cb)( + struct lttng_payload_view *view, struct lttng_action **action); struct lttng_action { + struct urcu_ref ref; enum lttng_action_type type; action_validate_cb validate; action_serialize_cb serialize; @@ -51,18 +55,23 @@ bool lttng_action_validate(struct lttng_action *action); LTTNG_HIDDEN int lttng_action_serialize(struct lttng_action *action, - struct lttng_dynamic_buffer *buf); + struct lttng_payload *buf); LTTNG_HIDDEN -ssize_t lttng_action_create_from_buffer(const struct lttng_buffer_view *view, +ssize_t lttng_action_create_from_payload(struct lttng_payload_view *view, struct lttng_action **action); -LTTNG_HIDDEN -enum lttng_action_type lttng_action_get_type_const( - const struct lttng_action *action); - LTTNG_HIDDEN bool lttng_action_is_equal(const struct lttng_action *a, const struct lttng_action *b); +LTTNG_HIDDEN +void lttng_action_get(struct lttng_action *action); + +LTTNG_HIDDEN +void lttng_action_put(struct lttng_action *action); + +LTTNG_HIDDEN +const char* lttng_action_type_string(enum lttng_action_type action_type); + #endif /* LTTNG_ACTION_INTERNAL_H */