2 * Copyright (C) 2017 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
4 * This library is free software; you can redistribute it and/or modify it
5 * under the terms of the GNU Lesser General Public License, version 2.1 only,
6 * as published by the Free Software Foundation.
8 * This library is distributed in the hope that it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
13 * You should have received a copy of the GNU Lesser General Public License
14 * along with this library; if not, write to the Free Software Foundation,
15 * Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 #include <lttng/notification/notification-internal.h>
19 #include <lttng/condition/condition-internal.h>
20 #include <lttng/condition/evaluation-internal.h>
21 #include <lttng/condition/condition.h>
22 #include <lttng/condition/evaluation.h>
26 struct lttng_notification
*lttng_notification_create(
27 struct lttng_condition
*condition
,
28 struct lttng_evaluation
*evaluation
)
30 struct lttng_notification
*notification
= NULL
;
32 if (!condition
|| !evaluation
) {
36 notification
= zmalloc(sizeof(struct lttng_notification
));
41 notification
->condition
= condition
;
42 notification
->evaluation
= evaluation
;
48 int lttng_notification_serialize(const struct lttng_notification
*notification
,
49 struct lttng_dynamic_buffer
*buf
)
52 size_t header_offset
, size_before_payload
;
53 struct lttng_notification_comm notification_comm
= { 0 };
54 struct lttng_notification_comm
*header
;
56 header_offset
= buf
->size
;
57 ret
= lttng_dynamic_buffer_append(buf
, ¬ification_comm
,
58 sizeof(notification_comm
));
60 size_before_payload
= buf
->size
;
61 ret
= lttng_condition_serialize(notification
->condition
,
67 ret
= lttng_evaluation_serialize(notification
->evaluation
, buf
);
72 /* Update payload size. */
73 header
= (struct lttng_notification_comm
*) ((char *) buf
->data
+ header_offset
);
74 header
->length
= (uint32_t) (buf
->size
- size_before_payload
);
81 ssize_t
lttng_notification_create_from_buffer(
82 const struct lttng_buffer_view
*src_view
,
83 struct lttng_notification
**notification
)
85 ssize_t ret
, notification_size
= 0, condition_size
, evaluation_size
;
86 const struct lttng_notification_comm
*notification_comm
;
87 struct lttng_condition
*condition
;
88 struct lttng_evaluation
*evaluation
;
89 struct lttng_buffer_view condition_view
;
90 struct lttng_buffer_view evaluation_view
;
92 if (!src_view
|| !notification
) {
98 (const struct lttng_notification_comm
*) src_view
->data
;
99 notification_size
+= sizeof(*notification_comm
);
101 /* struct lttng_condition */
102 condition_view
= lttng_buffer_view_from_view(src_view
,
103 sizeof(*notification_comm
), -1);
104 condition_size
= lttng_condition_create_from_buffer(&condition_view
,
106 if (condition_size
< 0) {
107 ret
= condition_size
;
110 notification_size
+= condition_size
;
112 /* struct lttng_evaluation */
113 evaluation_view
= lttng_buffer_view_from_view(&condition_view
,
115 evaluation_size
= lttng_evaluation_create_from_buffer(&evaluation_view
,
117 if (evaluation_size
< 0) {
118 ret
= evaluation_size
;
121 notification_size
+= evaluation_size
;
123 /* Unexpected size of inner-elements; the buffer is corrupted. */
124 if ((ssize_t
) notification_comm
->length
!=
125 condition_size
+ evaluation_size
) {
130 *notification
= lttng_notification_create(condition
, evaluation
);
131 if (!*notification
) {
135 ret
= notification_size
;
139 lttng_condition_destroy(condition
);
140 lttng_evaluation_destroy(evaluation
);
144 void lttng_notification_destroy(struct lttng_notification
*notification
)
150 lttng_condition_destroy(notification
->condition
);
151 lttng_evaluation_destroy(notification
->evaluation
);
155 const struct lttng_condition
*lttng_notification_get_condition(
156 struct lttng_notification
*notification
)
158 return notification
? notification
->condition
: NULL
;
161 const struct lttng_evaluation
*lttng_notification_get_evaluation(
162 struct lttng_notification
*notification
)
164 return notification
? notification
->evaluation
: NULL
;