source: mainline/uspace/lib/bithenge/src/tree.c@ 1433ecda

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 1433ecda was 1433ecda, checked in by Jiri Svoboda <jiri@…>, 7 years ago

Fix cstyle: make ccheck-fix and commit only files where all the changes are good.

  • Property mode set to 100644
File size: 11.1 KB
Line 
1/*
2 * Copyright (c) 2012 Sean Bartell
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup bithenge
30 * @{
31 */
32/**
33 * @file
34 * Trees and nodes.
35 */
36
37#include <errno.h>
38#include <stdlib.h>
39#include <bithenge/blob.h>
40#include <bithenge/tree.h>
41#include "common.h"
42
43static void blob_destroy(bithenge_node_t *base)
44{
45 bithenge_blob_t *self = bithenge_node_as_blob(base);
46 assert(self->base.blob_ops);
47 self->base.blob_ops->destroy(self);
48}
49
50static void node_destroy(bithenge_node_t *self)
51{
52 switch (bithenge_node_type(self)) {
53 case BITHENGE_NODE_BLOB:
54 blob_destroy(self);
55 return;
56 case BITHENGE_NODE_STRING:
57 if (self->string_value.needs_free)
58 free((void *)self->string_value.ptr);
59 break;
60 case BITHENGE_NODE_INTERNAL:
61 self->internal_ops->destroy(self);
62 return;
63 case BITHENGE_NODE_BOOLEAN:
64 return; /* The boolean nodes are allocated statically below. */
65 case BITHENGE_NODE_INTEGER: /* pass-through */
66 break;
67 }
68 free(self);
69}
70
71/** Decrement a node's reference count and free it if appropriate.
72 * @memberof bithenge_node_t
73 * @param node The node to dereference, or NULL. */
74void bithenge_node_dec_ref(bithenge_node_t *node)
75{
76 if (!node)
77 return;
78 assert (node->refs > 0);
79 if (--node->refs == 0)
80 node_destroy(node);
81}
82
83typedef struct {
84 bithenge_node_t *key;
85 bithenge_node_t **out;
86} get_for_each_data_t;
87
88static errno_t get_for_each_func(bithenge_node_t *key, bithenge_node_t *value,
89 void *raw_data)
90{
91 get_for_each_data_t *data = (get_for_each_data_t *)raw_data;
92 bool equal;
93 errno_t rc = bithenge_node_equal(&equal, key, data->key);
94 bithenge_node_dec_ref(key);
95 if (rc != EOK)
96 return rc;
97 if (equal) {
98 *data->out = value;
99 return EEXIST;
100 }
101 bithenge_node_dec_ref(value);
102 return EOK;
103}
104
105/** Get a child of a node. Takes ownership of the key. If the node does not
106 * provide this function, for_each will be used as an alternative, which may be
107 * very slow. Also works for blob nodes to find the byte value at a given
108 * index.
109 * @memberof bithenge_node_t
110 * @param self The internal/blob node to find a child of.
111 * @param key The key to search for.
112 * @param[out] out Holds the found node.
113 * @return EOK on success, ENOENT if not found, or another error code from
114 * errno.h. */
115errno_t bithenge_node_get(bithenge_node_t *self, bithenge_node_t *key,
116 bithenge_node_t **out)
117{
118 if (self->type == BITHENGE_NODE_BLOB) {
119 if (bithenge_node_type(key) != BITHENGE_NODE_INTEGER) {
120 bithenge_node_dec_ref(key);
121 return ENOENT;
122 }
123 bithenge_int_t offset = bithenge_integer_node_value(key);
124 bithenge_node_dec_ref(key);
125 uint8_t byte;
126 aoff64_t size = 1;
127 errno_t rc = bithenge_blob_read(bithenge_node_as_blob(self),
128 offset, (char *)&byte, &size);
129 if (rc != EOK)
130 return rc;
131 if (size != 1)
132 return ENOENT;
133
134 return bithenge_new_integer_node(out, byte);
135 }
136
137 assert(self->type == BITHENGE_NODE_INTERNAL);
138 if (self->internal_ops->get)
139 return self->internal_ops->get(self, key, out);
140 *out = NULL;
141 get_for_each_data_t data = { key, out };
142 errno_t rc = bithenge_node_for_each(self, get_for_each_func, &data);
143 bithenge_node_dec_ref(key);
144 if (rc == EEXIST && *out)
145 return EOK;
146 if (rc == EOK)
147 rc = ENOENT;
148 bithenge_node_dec_ref(*out);
149 return rc;
150}
151
152/** Initialize an internal node.
153 * @memberof bithenge_node_t
154 * @param[out] self The node.
155 * @param[in] ops The operations provided.
156 * @return EOK on success or an error code from errno.h. */
157errno_t bithenge_init_internal_node(bithenge_node_t *self,
158 const bithenge_internal_node_ops_t *ops)
159{
160 self->type = BITHENGE_NODE_INTERNAL;
161 self->refs = 1;
162 self->internal_ops = ops;
163 return EOK;
164}
165
166static void internal_node_indestructible(bithenge_node_t *self)
167{
168 assert(false);
169}
170
171static errno_t empty_internal_node_for_each(bithenge_node_t *base,
172 bithenge_for_each_func_t func, void *data)
173{
174 return EOK;
175}
176
177static errno_t empty_internal_node_get(bithenge_node_t *self, bithenge_node_t *key,
178 bithenge_node_t **out)
179{
180 return ENOENT;
181}
182
183static const bithenge_internal_node_ops_t empty_internal_node_ops = {
184 .for_each = empty_internal_node_for_each,
185 .get = empty_internal_node_get,
186 .destroy = internal_node_indestructible,
187};
188
189static bithenge_node_t empty_internal_node = {
190 BITHENGE_NODE_INTERNAL,
191 1,
192 { .internal_ops = &empty_internal_node_ops },
193};
194
195/** Create an empty internal node.
196 * @param[out] out Holds the created node.
197 * @return EOK on success or an error code from errno.h. */
198errno_t bithenge_new_empty_internal_node(bithenge_node_t **out)
199{
200 if (bithenge_should_fail())
201 return ENOMEM;
202 bithenge_node_inc_ref(&empty_internal_node);
203 *out = &empty_internal_node;
204 return EOK;
205}
206
207typedef struct {
208 bithenge_node_t base;
209 bithenge_node_t **nodes;
210 bithenge_int_t len;
211 bool needs_free;
212} simple_internal_node_t;
213
214static simple_internal_node_t *node_as_simple(bithenge_node_t *node)
215{
216 return (simple_internal_node_t *)node;
217}
218
219static bithenge_node_t *simple_as_node(simple_internal_node_t *node)
220{
221 return &node->base;
222}
223
224static errno_t simple_internal_node_for_each(bithenge_node_t *base,
225 bithenge_for_each_func_t func, void *data)
226{
227 errno_t rc;
228 simple_internal_node_t *self = node_as_simple(base);
229 for (bithenge_int_t i = 0; i < self->len; i++) {
230 bithenge_node_inc_ref(self->nodes[2 * i + 0]);
231 bithenge_node_inc_ref(self->nodes[2 * i + 1]);
232 rc = func(self->nodes[2 * i + 0], self->nodes[2 * i + 1], data);
233 if (rc != EOK)
234 return rc;
235 }
236 return EOK;
237}
238
239static void simple_internal_node_destroy(bithenge_node_t *base)
240{
241 simple_internal_node_t *self = node_as_simple(base);
242 for (bithenge_int_t i = 0; i < 2 * self->len; i++)
243 bithenge_node_dec_ref(self->nodes[i]);
244 if (self->needs_free)
245 free(self->nodes);
246 free(self);
247}
248
249static bithenge_internal_node_ops_t simple_internal_node_ops = {
250 .for_each = simple_internal_node_for_each,
251 .destroy = simple_internal_node_destroy,
252};
253
254/** Create an internal node from a set of keys and values. This function takes
255 * ownership of a reference to the key and value nodes, and optionally the
256 * array @a nodes.
257 * @memberof bithenge_node_t
258 * @param[out] out Stores the created internal node.
259 * @param nodes The array of key-value pairs. Keys are stored at even indices
260 * and values are stored at odd indices.
261 * @param len The number of key-value pairs in the node array.
262 * @param needs_free If true, when the internal node is destroyed it will free
263 * the nodes array rather than just dereferencing each node inside it.
264 * @return EOK on success or an error code from errno.h. */
265errno_t bithenge_new_simple_internal_node(bithenge_node_t **out,
266 bithenge_node_t **nodes, bithenge_int_t len, bool needs_free)
267{
268 errno_t rc;
269 assert(out);
270 simple_internal_node_t *self = malloc(sizeof(*self));
271 if (!self) {
272 rc = ENOMEM;
273 goto error;
274 }
275 rc = bithenge_init_internal_node(simple_as_node(self),
276 &simple_internal_node_ops);
277 if (rc != EOK)
278 goto error;
279 self->nodes = nodes;
280 self->len = len;
281 self->needs_free = needs_free;
282 *out = simple_as_node(self);
283 return EOK;
284error:
285 for (bithenge_int_t i = 0; i < 2 * len; i++)
286 bithenge_node_dec_ref(nodes[i]);
287 if (needs_free)
288 free(nodes);
289 free(self);
290 return rc;
291}
292
293static bithenge_node_t false_node = { BITHENGE_NODE_BOOLEAN, 1, .boolean_value = false };
294static bithenge_node_t true_node = { BITHENGE_NODE_BOOLEAN, 1, .boolean_value = true };
295
296/** Create a boolean node.
297 * @memberof bithenge_node_t
298 * @param[out] out Stores the created boolean node.
299 * @param value The value for the node to hold.
300 * @return EOK on success or an error code from errno.h. */
301errno_t bithenge_new_boolean_node(bithenge_node_t **out, bool value)
302{
303 assert(out);
304 if (bithenge_should_fail())
305 return ENOMEM;
306 *out = value ? &true_node : &false_node;
307 (*out)->refs++;
308 return EOK;
309}
310
311/** Create an integer node.
312 * @memberof bithenge_node_t
313 * @param[out] out Stores the created integer node.
314 * @param value The value for the node to hold.
315 * @return EOK on success or an error code from errno.h. */
316errno_t bithenge_new_integer_node(bithenge_node_t **out, bithenge_int_t value)
317{
318 assert(out);
319 bithenge_node_t *self = malloc(sizeof(*self));
320 if (!self)
321 return ENOMEM;
322 self->type = BITHENGE_NODE_INTEGER;
323 self->refs = 1;
324 self->integer_value = value;
325 *out = self;
326 return EOK;
327}
328
329/** Create a string node.
330 * @memberof bithenge_node_t
331 * @param[out] out Stores the created string node. On error, this is unchanged.
332 * @param value The value for the node to hold.
333 * @param needs_free Whether the string should be freed when the node is
334 * destroyed.
335 * @return EOK on success or an error code from errno.h. */
336errno_t bithenge_new_string_node(bithenge_node_t **out, const char *value, bool needs_free)
337{
338 assert(out);
339 bithenge_node_t *self = malloc(sizeof(*self));
340 if (!self) {
341 if (needs_free)
342 free((void *)value);
343 return ENOMEM;
344 }
345 self->type = BITHENGE_NODE_STRING;
346 self->refs = 1;
347 self->string_value.ptr = value;
348 self->string_value.needs_free = needs_free;
349 *out = self;
350 return EOK;
351}
352
353/** Check whether the contents of two nodes are equal. Does not yet work for
354 * internal nodes. Takes ownership of nothing.
355 * @memberof bithenge_node_t
356 * @param[out] out Holds whether the nodes are equal.
357 * @param a, b Nodes to compare.
358 * @return EOK on success or an error code from errno.h.
359 * @todo Add support for internal nodes. */
360errno_t bithenge_node_equal(bool *out, bithenge_node_t *a, bithenge_node_t *b)
361{
362 if (a->type != b->type) {
363 *out = false;
364 return EOK;
365 }
366 switch (a->type) {
367 case BITHENGE_NODE_INTERNAL:
368 *out = false;
369 return EOK;
370 case BITHENGE_NODE_BOOLEAN:
371 *out = a->boolean_value == b->boolean_value;
372 return EOK;
373 case BITHENGE_NODE_INTEGER:
374 *out = a->integer_value == b->integer_value;
375 return EOK;
376 case BITHENGE_NODE_STRING:
377 *out = !str_cmp(a->string_value.ptr, b->string_value.ptr);
378 return EOK;
379 case BITHENGE_NODE_BLOB:
380 return bithenge_blob_equal(out, bithenge_node_as_blob(a),
381 bithenge_node_as_blob(b));
382 }
383 return EINVAL;
384}
385
386/** @}
387 */
Note: See TracBrowser for help on using the repository browser.