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/condition/evaluation-internal.h>
19 #include <lttng/condition/buffer-usage-internal.h>
20 #include <common/macros.h>
21 #include <common/error.h>
26 ssize_t
lttng_evaluation_serialize(struct lttng_evaluation
*evaluation
,
29 ssize_t ret
, offset
= 0;
30 struct lttng_evaluation_comm evaluation_comm
;
32 evaluation_comm
.type
= (int8_t) evaluation
->type
;
34 memcpy(buf
, &evaluation_comm
, sizeof(evaluation_comm
));
36 offset
+= sizeof(evaluation_comm
);
38 if (evaluation
->serialize
) {
39 ret
= evaluation
->serialize(evaluation
,
40 buf
? (buf
+ offset
) : NULL
);
53 ssize_t
lttng_evaluation_create_from_buffer(
54 const struct lttng_buffer_view
*src_view
,
55 struct lttng_evaluation
**evaluation
)
57 ssize_t ret
, evaluation_size
= 0;
58 const struct lttng_evaluation_comm
*evaluation_comm
;
59 const struct lttng_buffer_view evaluation_view
=
60 lttng_buffer_view_from_view(src_view
,
61 sizeof(*evaluation_comm
), -1);
63 if (!src_view
|| !evaluation
) {
68 evaluation_comm
= (const struct lttng_evaluation_comm
*) src_view
->data
;
69 evaluation_size
+= sizeof(*evaluation_comm
);
71 switch ((enum lttng_condition_type
) evaluation_comm
->type
) {
72 case LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW
:
73 ret
= lttng_evaluation_buffer_usage_low_create_from_buffer(
74 &evaluation_view
, evaluation
);
78 evaluation_size
+= ret
;
80 case LTTNG_CONDITION_TYPE_BUFFER_USAGE_HIGH
:
81 ret
= lttng_evaluation_buffer_usage_high_create_from_buffer(
82 &evaluation_view
, evaluation
);
86 evaluation_size
+= ret
;
89 ERR("Attempted to create evaluation of unknown type (%i)",
90 (int) evaluation_comm
->type
);
94 ret
= evaluation_size
;
99 enum lttng_condition_type
lttng_evaluation_get_type(
100 const struct lttng_evaluation
*evaluation
)
102 return evaluation
? evaluation
->type
: LTTNG_CONDITION_TYPE_UNKNOWN
;
105 void lttng_evaluation_destroy(struct lttng_evaluation
*evaluation
)
111 assert(evaluation
->destroy
);
112 evaluation
->destroy(evaluation
);