source: mainline/uspace/lib/bithenge/tree.c@ 0784869

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 0784869 was 0784869, checked in by Sean Bartell <wingedtachikoma@…>, 13 years ago

Bithenge: improve Doxygen documentation

  • Property mode set to 100644
File size: 11.0 KB
RevLine 
[11b9ad7]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>
[5c925ce]39#include "blob.h"
[da0fef6]40#include "os.h"
[11b9ad7]41#include "tree.h"
42
[978ccaf1]43static void blob_destroy(bithenge_node_t *base)
[5c925ce]44{
[978ccaf1]45 bithenge_blob_t *self = bithenge_node_as_blob(base);
46 assert(self->base.blob_ops);
47 self->base.blob_ops->destroy(self);
[5c925ce]48}
49
[978ccaf1]50static void node_destroy(bithenge_node_t *self)
[11b9ad7]51{
[978ccaf1]52 switch (bithenge_node_type(self)) {
[5c925ce]53 case BITHENGE_NODE_BLOB:
[978ccaf1]54 blob_destroy(self);
55 return;
[11b9ad7]56 case BITHENGE_NODE_STRING:
[978ccaf1]57 if (self->string_value.needs_free)
58 free((void *)self->string_value.ptr);
[11b9ad7]59 break;
60 case BITHENGE_NODE_INTERNAL:
[978ccaf1]61 self->internal_ops->destroy(self);
62 return;
[11b9ad7]63 case BITHENGE_NODE_BOOLEAN:
[978ccaf1]64 return; /* The boolean nodes are allocated statically below. */
[11b9ad7]65 case BITHENGE_NODE_INTEGER: /* pass-through */
66 break;
67 }
[978ccaf1]68 free(self);
[11b9ad7]69}
70
[f2da0bb]71/** Decrement a node's reference count and free it if appropriate.
72 * @memberof bithenge_node_t
[978ccaf1]73 * @param node The node to dereference, or NULL. */
74void bithenge_node_dec_ref(bithenge_node_t *node)
[f2da0bb]75{
76 if (!node)
[978ccaf1]77 return;
[681a985]78 assert (node->refs > 0);
[f2da0bb]79 if (--node->refs == 0)
[978ccaf1]80 node_destroy(node);
[f2da0bb]81}
82
[e8e31d9]83typedef struct {
84 bithenge_node_t *key;
85 bithenge_node_t **out;
86} get_for_each_data_t;
87
88static int 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;
[a42d7d8]92 bool equal;
93 int rc = bithenge_node_equal(&equal, key, data->key);
[e8e31d9]94 bithenge_node_dec_ref(key);
[a42d7d8]95 if (rc != EOK)
96 return rc;
[e8e31d9]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
[1c79996]107 * very slow. Also works for blob nodes to find the byte value at a given
108 * index.
[e8e31d9]109 * @memberof bithenge_node_t
[1c79996]110 * @param self The internal/blob node to find a child of.
[e8e31d9]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. */
115int bithenge_node_get(bithenge_node_t *self, bithenge_node_t *key,
116 bithenge_node_t **out)
117{
[1c79996]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 int 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
[e8e31d9]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 int 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
[10334c2e]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. */
157int 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 int 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 int 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. */
198int bithenge_new_empty_internal_node(bithenge_node_t **out)
199{
[1a3b953]200 if (bithenge_should_fail())
201 return ENOMEM;
[10334c2e]202 bithenge_node_inc_ref(&empty_internal_node);
203 *out = &empty_internal_node;
204 return EOK;
205}
206
[11b9ad7]207typedef struct
208{
[5f679702]209 bithenge_node_t base;
[11b9ad7]210 bithenge_node_t **nodes;
211 bithenge_int_t len;
212 bool needs_free;
213} simple_internal_node_t;
214
[5f679702]215static simple_internal_node_t *node_as_simple(bithenge_node_t *node)
[11b9ad7]216{
217 return (simple_internal_node_t *)node;
218}
219
[f2da0bb]220static bithenge_node_t *simple_as_node(simple_internal_node_t *node)
221{
222 return &node->base;
223}
224
[8375d0eb]225static int simple_internal_node_for_each(bithenge_node_t *base,
226 bithenge_for_each_func_t func, void *data)
[11b9ad7]227{
228 int rc;
[978ccaf1]229 simple_internal_node_t *self = node_as_simple(base);
230 for (bithenge_int_t i = 0; i < self->len; i++) {
231 bithenge_node_inc_ref(self->nodes[2*i+0]);
232 bithenge_node_inc_ref(self->nodes[2*i+1]);
233 rc = func(self->nodes[2*i+0], self->nodes[2*i+1], data);
[11b9ad7]234 if (rc != EOK)
235 return rc;
236 }
237 return EOK;
238}
239
[978ccaf1]240static void simple_internal_node_destroy(bithenge_node_t *base)
[5c925ce]241{
[978ccaf1]242 simple_internal_node_t *self = node_as_simple(base);
243 for (bithenge_int_t i = 0; i < 2 * self->len; i++)
244 bithenge_node_dec_ref(self->nodes[i]);
245 if (self->needs_free)
246 free(self->nodes);
247 free(self);
[5c925ce]248}
249
[11b9ad7]250static bithenge_internal_node_ops_t simple_internal_node_ops = {
[5c925ce]251 .for_each = simple_internal_node_for_each,
252 .destroy = simple_internal_node_destroy,
[11b9ad7]253};
254
[f2da0bb]255/** Create an internal node from a set of keys and values. This function takes
256 * ownership of a reference to the key and value nodes, and optionally the
257 * array @a nodes.
[8375d0eb]258 * @memberof bithenge_node_t
259 * @param[out] out Stores the created internal node.
260 * @param nodes The array of key-value pairs. Keys are stored at even indices
261 * and values are stored at odd indices.
262 * @param len The number of key-value pairs in the node array.
263 * @param needs_free If true, when the internal node is destroyed it will free
[f2da0bb]264 * the nodes array rather than just dereferencing each node inside it.
[8375d0eb]265 * @return EOK on success or an error code from errno.h. */
266int bithenge_new_simple_internal_node(bithenge_node_t **out,
267 bithenge_node_t **nodes, bithenge_int_t len, bool needs_free)
[11b9ad7]268{
[04a7435f]269 int rc;
[11b9ad7]270 assert(out);
[978ccaf1]271 simple_internal_node_t *self = malloc(sizeof(*self));
272 if (!self) {
[04a7435f]273 rc = ENOMEM;
274 goto error;
[f2da0bb]275 }
[978ccaf1]276 rc = bithenge_init_internal_node(simple_as_node(self),
[04a7435f]277 &simple_internal_node_ops);
278 if (rc != EOK)
279 goto error;
[978ccaf1]280 self->nodes = nodes;
281 self->len = len;
282 self->needs_free = needs_free;
283 *out = simple_as_node(self);
[11b9ad7]284 return EOK;
[04a7435f]285error:
286 for (bithenge_int_t i = 0; i < 2 * len; i++)
287 bithenge_node_dec_ref(nodes[i]);
288 if (needs_free)
289 free(nodes);
[978ccaf1]290 free(self);
[04a7435f]291 return rc;
[11b9ad7]292}
293
[f2da0bb]294static bithenge_node_t false_node = { BITHENGE_NODE_BOOLEAN, 1, .boolean_value = false };
295static bithenge_node_t true_node = { BITHENGE_NODE_BOOLEAN, 1, .boolean_value = true };
[11b9ad7]296
[f2da0bb]297/** Create a boolean node.
[8375d0eb]298 * @memberof bithenge_node_t
299 * @param[out] out Stores the created boolean node.
300 * @param value The value for the node to hold.
301 * @return EOK on success or an error code from errno.h. */
[11b9ad7]302int bithenge_new_boolean_node(bithenge_node_t **out, bool value)
303{
304 assert(out);
[1a3b953]305 if (bithenge_should_fail())
306 return ENOMEM;
[5f679702]307 *out = value ? &true_node : &false_node;
[f2da0bb]308 (*out)->refs++;
[11b9ad7]309 return EOK;
310}
311
[f2da0bb]312/** Create an integer node.
[8375d0eb]313 * @memberof bithenge_node_t
314 * @param[out] out Stores the created integer node.
315 * @param value The value for the node to hold.
316 * @return EOK on success or an error code from errno.h. */
[11b9ad7]317int bithenge_new_integer_node(bithenge_node_t **out, bithenge_int_t value)
318{
319 assert(out);
[978ccaf1]320 bithenge_node_t *self = malloc(sizeof(*self));
321 if (!self)
[11b9ad7]322 return ENOMEM;
[978ccaf1]323 self->type = BITHENGE_NODE_INTEGER;
324 self->refs = 1;
325 self->integer_value = value;
326 *out = self;
[11b9ad7]327 return EOK;
328}
329
[f2da0bb]330/** Create a string node.
[8375d0eb]331 * @memberof bithenge_node_t
[04a7435f]332 * @param[out] out Stores the created string node. On error, this is unchanged.
[8375d0eb]333 * @param value The value for the node to hold.
334 * @param needs_free Whether the string should be freed when the node is
335 * destroyed.
336 * @return EOK on success or an error code from errno.h. */
[11b9ad7]337int bithenge_new_string_node(bithenge_node_t **out, const char *value, bool needs_free)
338{
339 assert(out);
[978ccaf1]340 bithenge_node_t *self = malloc(sizeof(*self));
[600f5d1]341 if (!self) {
342 if (needs_free)
343 free((void *)value);
[11b9ad7]344 return ENOMEM;
[600f5d1]345 }
[978ccaf1]346 self->type = BITHENGE_NODE_STRING;
347 self->refs = 1;
348 self->string_value.ptr = value;
349 self->string_value.needs_free = needs_free;
350 *out = self;
[11b9ad7]351 return EOK;
352}
[8375d0eb]353
[d5070ef]354/** Check whether the contents of two nodes are equal. Does not yet work for
[78d3a00]355 * internal nodes. Takes ownership of nothing.
[d5070ef]356 * @memberof bithenge_node_t
[a42d7d8]357 * @param[out] out Holds whether the nodes are equal.
[d5070ef]358 * @param a, b Nodes to compare.
[a42d7d8]359 * @return EOK on success or an error code from errno.h.
[0784869]360 * @todo Add support for internal nodes. */
[a42d7d8]361int bithenge_node_equal(bool *out, bithenge_node_t *a, bithenge_node_t *b)
[d5070ef]362{
[a42d7d8]363 if (a->type != b->type) {
364 *out = false;
365 return EOK;
366 }
[d5070ef]367 switch (a->type) {
368 case BITHENGE_NODE_INTERNAL:
[a42d7d8]369 *out = false;
370 return EOK;
[d5070ef]371 case BITHENGE_NODE_BOOLEAN:
[a42d7d8]372 *out = a->boolean_value == b->boolean_value;
373 return EOK;
[d5070ef]374 case BITHENGE_NODE_INTEGER:
[a42d7d8]375 *out = a->integer_value == b->integer_value;
376 return EOK;
[d5070ef]377 case BITHENGE_NODE_STRING:
[a42d7d8]378 *out = !str_cmp(a->string_value.ptr, b->string_value.ptr);
379 return EOK;
[d5070ef]380 case BITHENGE_NODE_BLOB:
[a42d7d8]381 return bithenge_blob_equal(out, bithenge_node_as_blob(a),
[d5070ef]382 bithenge_node_as_blob(b));
383 }
[a42d7d8]384 return EINVAL;
[d5070ef]385}
386
[8375d0eb]387/** @}
388 */
Note: See TracBrowser for help on using the repository browser.