Various fixes for prototype branch
[lttng-tools.git] / src / common / condition.c
CommitLineData
4c5c8fc8
JG
1/*
2 * Copyright (C) 2017 - Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 *
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.
7 *
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
11 * for more details.
12 *
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
16 */
17
18#include <lttng/condition/condition-internal.h>
a365f2d0 19#include <lttng/condition/buffer-usage-internal.h>
4c5c8fc8 20#include <common/macros.h>
45fdf591 21#include <common/error.h>
4c5c8fc8
JG
22#include <stdbool.h>
23#include <assert.h>
24
25enum lttng_condition_type lttng_condition_get_type(
26 struct lttng_condition *condition)
27{
28 return condition ? condition->type : LTTNG_CONDITION_TYPE_UNKNOWN;
29}
30
31void lttng_condition_destroy(struct lttng_condition *condition)
32{
33 if (!condition) {
34 return;
35 }
36
37 assert(condition->destroy);
38 condition->destroy(condition);
39}
40
41LTTNG_HIDDEN
42bool lttng_condition_validate(struct lttng_condition *condition)
43{
44 bool valid;
45
46 if (!condition) {
47 valid = false;
48 goto end;
49 }
50
51 if (!condition->validate) {
52 /* Sub-class guarantees that it can never be invalid. */
53 valid = true;
54 goto end;
55 }
56
57 valid = condition->validate(condition);
58end:
59 return valid;
60}
2a38b722
JG
61
62LTTNG_HIDDEN
63ssize_t lttng_condition_serialize(struct lttng_condition *condition, char *buf)
64{
65 ssize_t ret, condition_size;
66 struct lttng_condition_comm condition_comm;
67
68 if (!condition) {
69 ret = -1;
70 goto end;
71 }
72
73 condition_comm.condition_type = (int8_t) condition->type;
74 ret = sizeof(struct lttng_condition_comm);
75 if (buf) {
76 memcpy(buf, &condition_comm, ret);
77 buf += ret;
78 }
79
80 condition_size = condition->serialize(condition, buf);
81 if (condition_size < 0) {
82 ret = condition_size;
83 goto end;
84 }
85 ret += condition_size;
86end:
87 return ret;
88}
a365f2d0 89
3c47cdaf
JG
90LTTNG_HIDDEN
91bool lttng_condition_is_equal(struct lttng_condition *a,
92 struct lttng_condition *b)
93{
94 bool is_equal = false;
95
96 if (!a || !b) {
97 goto end;
98 }
99
100 if (a->type != b->type) {
101 goto end;
102 }
103
104 is_equal = a->equal ? a->equal(a, b) : true;
105end:
106 return is_equal;
107}
108
a365f2d0
JG
109LTTNG_HIDDEN
110ssize_t lttng_condition_create_from_buffer(const char *buf,
111 struct lttng_condition **condition)
112{
113 ssize_t ret, condition_size = 0;
114 struct lttng_condition_comm *condition_comm =
115 (struct lttng_condition_comm *) buf;
116
117 if (!buf || !condition) {
118 ret = -1;
119 goto end;
120 }
121
45fdf591 122 DBG("Deserializing condition from buffer");
a365f2d0
JG
123 condition_size += sizeof(*condition_comm);
124 buf += condition_size;
125
3c47cdaf 126 switch ((enum lttng_condition_type) condition_comm->condition_type) {
a365f2d0
JG
127 case LTTNG_CONDITION_TYPE_BUFFER_USAGE_LOW:
128 ret = lttng_condition_buffer_usage_low_create_from_buffer(buf,
129 condition);
130 if (ret < 0) {
131 goto end;
132 }
133 condition_size += ret;
134 break;
135 case LTTNG_CONDITION_TYPE_BUFFER_USAGE_HIGH:
136 ret = lttng_condition_buffer_usage_high_create_from_buffer(buf,
137 condition);
138 if (ret < 0) {
139 goto end;
140 }
141 condition_size += ret;
142 break;
143 default:
45fdf591
JG
144 ERR("Attempted to create condition of unknown type (%i)",
145 (int) condition_comm->condition_type);
a365f2d0
JG
146 ret = -1;
147 goto end;
148 }
149 ret = condition_size;
150end:
151 return ret;
152}
c254fb11
JG
153
154LTTNG_HIDDEN
155void lttng_condition_init(struct lttng_condition *condition,
156 enum lttng_condition_type type)
157{
158 condition->type = type;
159 CDS_INIT_LIST_HEAD(&condition->list_node);
160}
This page took 0.030897 seconds and 5 git commands to generate.