source: mainline/uspace/lib/bithenge/tree.c@ 5e514c0

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

Bithenge: add fake system call errors to test error handling

  • Property mode set to 100644
File size: 10.9 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 "blob.h"
40#include "os.h"
41#include "tree.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 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;
92 bool equal;
93 int 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. */
115int 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 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
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
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{
200 bithenge_node_inc_ref(&empty_internal_node);
201 *out = &empty_internal_node;
202 return EOK;
203}
204
205typedef struct
206{
207 bithenge_node_t base;
208 bithenge_node_t **nodes;
209 bithenge_int_t len;
210 bool needs_free;
211} simple_internal_node_t;
212
213static simple_internal_node_t *node_as_simple(bithenge_node_t *node)
214{
215 return (simple_internal_node_t *)node;
216}
217
218static bithenge_node_t *simple_as_node(simple_internal_node_t *node)
219{
220 return &node->base;
221}
222
223static int simple_internal_node_for_each(bithenge_node_t *base,
224 bithenge_for_each_func_t func, void *data)
225{
226 int rc;
227 simple_internal_node_t *self = node_as_simple(base);
228 for (bithenge_int_t i = 0; i < self->len; i++) {
229 bithenge_node_inc_ref(self->nodes[2*i+0]);
230 bithenge_node_inc_ref(self->nodes[2*i+1]);
231 rc = func(self->nodes[2*i+0], self->nodes[2*i+1], data);
232 if (rc != EOK)
233 return rc;
234 }
235 return EOK;
236}
237
238static void simple_internal_node_destroy(bithenge_node_t *base)
239{
240 simple_internal_node_t *self = node_as_simple(base);
241 for (bithenge_int_t i = 0; i < 2 * self->len; i++)
242 bithenge_node_dec_ref(self->nodes[i]);
243 if (self->needs_free)
244 free(self->nodes);
245 free(self);
246}
247
248static bithenge_internal_node_ops_t simple_internal_node_ops = {
249 .for_each = simple_internal_node_for_each,
250 .destroy = simple_internal_node_destroy,
251};
252
253/** Create an internal node from a set of keys and values. This function takes
254 * ownership of a reference to the key and value nodes, and optionally the
255 * array @a nodes.
256 * @memberof bithenge_node_t
257 * @param[out] out Stores the created internal node.
258 * @param nodes The array of key-value pairs. Keys are stored at even indices
259 * and values are stored at odd indices.
260 * @param len The number of key-value pairs in the node array.
261 * @param needs_free If true, when the internal node is destroyed it will free
262 * the nodes array rather than just dereferencing each node inside it.
263 * @return EOK on success or an error code from errno.h. */
264int bithenge_new_simple_internal_node(bithenge_node_t **out,
265 bithenge_node_t **nodes, bithenge_int_t len, bool needs_free)
266{
267 int rc;
268 assert(out);
269 simple_internal_node_t *self = malloc(sizeof(*self));
270 if (!self) {
271 rc = ENOMEM;
272 goto error;
273 }
274 rc = bithenge_init_internal_node(simple_as_node(self),
275 &simple_internal_node_ops);
276 if (rc != EOK)
277 goto error;
278 self->nodes = nodes;
279 self->len = len;
280 self->needs_free = needs_free;
281 *out = simple_as_node(self);
282 return EOK;
283error:
284 for (bithenge_int_t i = 0; i < 2 * len; i++)
285 bithenge_node_dec_ref(nodes[i]);
286 if (needs_free)
287 free(nodes);
288 free(self);
289 return rc;
290}
291
292static bithenge_node_t false_node = { BITHENGE_NODE_BOOLEAN, 1, .boolean_value = false };
293static bithenge_node_t true_node = { BITHENGE_NODE_BOOLEAN, 1, .boolean_value = true };
294
295/** Create a boolean node.
296 * @memberof bithenge_node_t
297 * @param[out] out Stores the created boolean node.
298 * @param value The value for the node to hold.
299 * @return EOK on success or an error code from errno.h. */
300int bithenge_new_boolean_node(bithenge_node_t **out, bool value)
301{
302 assert(out);
303 *out = value ? &true_node : &false_node;
304 (*out)->refs++;
305 return EOK;
306}
307
308/** Create an integer node.
309 * @memberof bithenge_node_t
310 * @param[out] out Stores the created integer node.
311 * @param value The value for the node to hold.
312 * @return EOK on success or an error code from errno.h. */
313int bithenge_new_integer_node(bithenge_node_t **out, bithenge_int_t value)
314{
315 assert(out);
316 bithenge_node_t *self = malloc(sizeof(*self));
317 if (!self)
318 return ENOMEM;
319 self->type = BITHENGE_NODE_INTEGER;
320 self->refs = 1;
321 self->integer_value = value;
322 *out = self;
323 return EOK;
324}
325
326/** Create a string node.
327 * @memberof bithenge_node_t
328 * @param[out] out Stores the created string node. On error, this is unchanged.
329 * @param value The value for the node to hold.
330 * @param needs_free Whether the string should be freed when the node is
331 * destroyed.
332 * @return EOK on success or an error code from errno.h. */
333int bithenge_new_string_node(bithenge_node_t **out, const char *value, bool needs_free)
334{
335 assert(out);
336 bithenge_node_t *self = malloc(sizeof(*self));
337 if (!self) {
338 if (needs_free)
339 free((void *)value);
340 return ENOMEM;
341 }
342 self->type = BITHENGE_NODE_STRING;
343 self->refs = 1;
344 self->string_value.ptr = value;
345 self->string_value.needs_free = needs_free;
346 *out = self;
347 return EOK;
348}
349
350/** Check whether the contents of two nodes are equal. Does not yet work for
351 * internal nodes. Takes ownership of nothing.
352 * @memberof bithenge_node_t
353 * @param[out] out Holds whether the nodes are equal.
354 * @param a, b Nodes to compare.
355 * @return EOK on success or an error code from errno.h.
356 * @todo Add support for internal nodes.
357 */
358int bithenge_node_equal(bool *out, bithenge_node_t *a, bithenge_node_t *b)
359{
360 if (a->type != b->type) {
361 *out = false;
362 return EOK;
363 }
364 switch (a->type) {
365 case BITHENGE_NODE_INTERNAL:
366 *out = false;
367 return EOK;
368 case BITHENGE_NODE_BOOLEAN:
369 *out = a->boolean_value == b->boolean_value;
370 return EOK;
371 case BITHENGE_NODE_INTEGER:
372 *out = a->integer_value == b->integer_value;
373 return EOK;
374 case BITHENGE_NODE_STRING:
375 *out = !str_cmp(a->string_value.ptr, b->string_value.ptr);
376 return EOK;
377 case BITHENGE_NODE_BLOB:
378 return bithenge_blob_equal(out, bithenge_node_as_blob(a),
379 bithenge_node_as_blob(b));
380 }
381 return EINVAL;
382}
383
384/** @}
385 */
Note: See TracBrowser for help on using the repository browser.