Move to kernel style SPDX license identifiers
[lttng-tools.git] / src / common / condition.c
CommitLineData
a58c490f 1/*
ab5be9fa 2 * Copyright (C) 2017 Jérémie Galarneau <jeremie.galarneau@efficios.com>
a58c490f 3 *
ab5be9fa 4 * SPDX-License-Identifier: LGPL-2.1-only
a58c490f 5 *
a58c490f
JG
6 */
7
8#include <lttng/condition/condition-internal.h>
9#include <lttng/condition/buffer-usage-internal.h>
e8360425 10#include <lttng/condition/session-consumed-size-internal.h>
c19092cd 11#include <lttng/condition/session-rotation-internal.h>
a58c490f
JG
12#include <common/macros.h>
13#include <common/error.h>
14#include <common/dynamic-buffer.h>
15#include <common/buffer-view.h>
16#include <stdbool.h>
17#include <assert.h>
18
19enum lttng_condition_type lttng_condition_get_type(
20 const struct lttng_condition *condition)
21{
22 return condition ? condition->type : LTTNG_CONDITION_TYPE_UNKNOWN;
23}
24
25void lttng_condition_destroy(struct lttng_condition *condition)
26{
27 if (!condition) {
28 return;
29 }
30
31 assert(condition->destroy);
32 condition->destroy(condition);
33}
34
35LTTNG_HIDDEN
36bool lttng_condition_validate(const struct lttng_condition *condition)
37{
38 bool valid;
39
40 if (!condition) {
41 valid = false;
42 goto end;
43 }
44
45 if (!condition->validate) {
46 /* Sub-class guarantees that it can never be invalid. */
47 valid = true;
48 goto end;
49 }
50
51 valid = condition->validate(condition);
52end:
53 return valid;
54}
55
56LTTNG_HIDDEN
3647288f
JG
57int lttng_condition_serialize(const struct lttng_condition *condition,
58 struct lttng_dynamic_buffer *buf)
a58c490f 59{
3647288f
JG
60 int ret;
61 struct lttng_condition_comm condition_comm = { 0 };
a58c490f
JG
62
63 if (!condition) {
64 ret = -1;
65 goto end;
66 }
67
3647288f
JG
68 condition_comm.condition_type = (int8_t) condition->type;
69
70 ret = lttng_dynamic_buffer_append(buf, &condition_comm,
71 sizeof(condition_comm));
72 if (ret) {
73 goto end;
a58c490f
JG
74 }
75
3647288f
JG
76 ret = condition->serialize(condition, buf);
77 if (ret) {
a58c490f
JG
78 goto end;
79 }
a58c490f
JG
80end:
81 return ret;
82}
83
84LTTNG_HIDDEN
85bool lttng_condition_is_equal(const struct lttng_condition *a,
86 const struct lttng_condition *b)
87{
88 bool is_equal = false;
89
90 if (!a || !b) {
91 goto end;
92 }
93
94 if (a->type != b->type) {
95 goto end;
96 }
97
6c2fe319
JG
98 if (a == b) {
99 is_equal = true;
100 goto end;
101 }
102
a58c490f
JG
103 is_equal = a->equal ? a->equal(a, b) : true;
104end:
105 return is_equal;
106}
107
108LTTNG_HIDDEN
109ssize_t lttng_condition_create_from_buffer(
110 const struct lttng_buffer_view *buffer,
111 struct lttng_condition **condition)
112{
113 ssize_t ret, condition_size = 0;
114 const struct lttng_condition_comm *condition_comm;
115 condition_create_from_buffer_cb create_from_buffer = NULL;
116
117 if (!buffer || !condition) {
118 ret = -1;
119 goto end;
120 }
121
122 DBG("Deserializing condition from buffer");
123 condition_comm = (const struct lttng_condition_comm *) buffer->data;
124 condition_size += sizeof(*condition_comm);
125
126 switch ((enum lttng_condition_type) condition_comm->condition_type) {
127 case LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW:
128 create_from_buffer = lttng_condition_buffer_usage_low_create_from_buffer;
129 break;
130 case LTTNG_CONDITION_TYPE_BUFFER_USAGE_HIGH:
131 create_from_buffer = lttng_condition_buffer_usage_high_create_from_buffer;
132 break;
e8360425
JD
133 case LTTNG_CONDITION_TYPE_SESSION_CONSUMED_SIZE:
134 create_from_buffer = lttng_condition_session_consumed_size_create_from_buffer;
135 break;
c19092cd
JG
136 case LTTNG_CONDITION_TYPE_SESSION_ROTATION_ONGOING:
137 create_from_buffer = lttng_condition_session_rotation_ongoing_create_from_buffer;
138 break;
139 case LTTNG_CONDITION_TYPE_SESSION_ROTATION_COMPLETED:
140 create_from_buffer = lttng_condition_session_rotation_completed_create_from_buffer;
141 break;
a58c490f
JG
142 default:
143 ERR("Attempted to create condition of unknown type (%i)",
144 (int) condition_comm->condition_type);
145 ret = -1;
146 goto end;
147 }
148
149 if (create_from_buffer) {
150 const struct lttng_buffer_view view =
151 lttng_buffer_view_from_view(buffer,
152 sizeof(*condition_comm), -1);
153
154 ret = create_from_buffer(&view, condition);
155 if (ret < 0) {
156 goto end;
157 }
158 condition_size += ret;
159
160 } else {
161 abort();
162 }
163
164 ret = condition_size;
165end:
166 return ret;
167}
168
169LTTNG_HIDDEN
170void lttng_condition_init(struct lttng_condition *condition,
171 enum lttng_condition_type type)
172{
173 condition->type = type;
174}
This page took 0.05695 seconds and 5 git commands to generate.