X-Git-Url: https://git.lttng.org/?p=lttng-tools.git;a=blobdiff_plain;f=include%2Flttng%2Fnotification%2Fnotification-internal.hpp;fp=include%2Flttng%2Fnotification%2Fnotification-internal.hpp;h=37c8f2af9ddd34cbe0d5d3a8b290ee86e5fe96d0;hp=0000000000000000000000000000000000000000;hb=c9e313bc594f40a86eed237dce222c0fc99c957f;hpb=4878de5c7deb512bbdac4fdfc498907efa06fb7c diff --git a/include/lttng/notification/notification-internal.hpp b/include/lttng/notification/notification-internal.hpp new file mode 100644 index 000000000..37c8f2af9 --- /dev/null +++ b/include/lttng/notification/notification-internal.hpp @@ -0,0 +1,43 @@ +/* + * Copyright (C) 2017 Jérémie Galarneau + * + * SPDX-License-Identifier: LGPL-2.1-only + * + */ + +#ifndef LTTNG_NOTIFICATION_INTERNAL_H +#define LTTNG_NOTIFICATION_INTERNAL_H + +#include +#include +#include +#include +#include + +struct lttng_payload; +struct lttng_payload_view; + +struct lttng_notification { + struct lttng_trigger *trigger; + struct lttng_evaluation *evaluation; +}; + +struct lttng_notification_comm { + /* Size of the payload following this field. */ + uint32_t length; + /* Trigger and evaluation objects follow. */ + char payload[]; +} LTTNG_PACKED; + +struct lttng_notification *lttng_notification_create( + struct lttng_trigger *trigger, + struct lttng_evaluation *evaluation); + +int lttng_notification_serialize(const struct lttng_notification *notification, + struct lttng_payload *payload); + +ssize_t lttng_notification_create_from_payload( + struct lttng_payload_view *view, + struct lttng_notification **notification); + +#endif /* LTTNG_NOTIFICATION_INTERNAL_H */