s3:dbwrap: move the db_open_rbt() prototype to a new header dbwrap_rbt.h
[Samba.git] / source3 / lib / dbwrap / dbwrap_rbt.c
blob699f922fa517815679f92d308f98d371d953ba29
1 /*
2 Unix SMB/CIFS implementation.
3 Database interface wrapper around red-black trees
4 Copyright (C) Volker Lendecke 2007, 2008
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
20 #include "includes.h"
21 #include "dbwrap/dbwrap.h"
22 #include "dbwrap/dbwrap_rbt.h"
23 #include "../lib/util/rbtree.h"
25 #define DBWRAP_RBT_ALIGN(_size_) (((_size_)+15)&~15)
27 struct db_rbt_ctx {
28 struct rb_root tree;
31 struct db_rbt_rec {
32 struct db_rbt_ctx *db_ctx;
33 struct db_rbt_node *node;
36 /* The structure that ends up in the tree */
38 struct db_rbt_node {
39 struct rb_node rb_node;
40 size_t keysize, valuesize;
43 * key and value are appended implicitly, "data" is only here as a
44 * target for offsetof()
47 char data[1];
51 * Hide the ugly pointer calculations in a function
54 static struct db_rbt_node *db_rbt2node(struct rb_node *node)
56 return (struct db_rbt_node *)
57 ((char *)node - offsetof(struct db_rbt_node, rb_node));
61 * Compare two keys
64 static int db_rbt_compare(TDB_DATA a, TDB_DATA b)
66 int res;
68 res = memcmp(a.dptr, b.dptr, MIN(a.dsize, b.dsize));
70 if ((res < 0) || ((res == 0) && (a.dsize < b.dsize))) {
71 return -1;
73 if ((res > 0) || ((res == 0) && (a.dsize > b.dsize))) {
74 return 1;
76 return 0;
80 * dissect a db_rbt_node into its implicit key and value parts
83 static void db_rbt_parse_node(struct db_rbt_node *node,
84 TDB_DATA *key, TDB_DATA *value)
86 key->dptr = ((uint8 *)node) + offsetof(struct db_rbt_node, data);
87 key->dsize = node->keysize;
88 value->dptr = key->dptr + node->keysize;
89 value->dsize = node->valuesize;
92 static NTSTATUS db_rbt_store(struct db_record *rec, TDB_DATA data, int flag)
94 struct db_rbt_rec *rec_priv = (struct db_rbt_rec *)rec->private_data;
95 struct db_rbt_node *node;
97 struct rb_node ** p;
98 struct rb_node * parent;
100 TDB_DATA this_key, this_val;
102 if (rec_priv->node != NULL) {
105 * The record was around previously
108 db_rbt_parse_node(rec_priv->node, &this_key, &this_val);
110 SMB_ASSERT(this_key.dsize == rec->key.dsize);
111 SMB_ASSERT(memcmp(this_key.dptr, rec->key.dptr,
112 this_key.dsize) == 0);
114 if (this_val.dsize >= data.dsize) {
116 * The new value fits into the old space
118 memcpy(this_val.dptr, data.dptr, data.dsize);
119 rec_priv->node->valuesize = data.dsize;
120 return NT_STATUS_OK;
124 * We need to delete the key from the tree and start fresh,
125 * there's not enough space in the existing record
128 rb_erase(&rec_priv->node->rb_node, &rec_priv->db_ctx->tree);
131 * Keep the existing node around for a while: If the record
132 * existed before, we reference the key data in there.
136 node = (struct db_rbt_node *)talloc_size(rec_priv->db_ctx,
137 offsetof(struct db_rbt_node, data) + rec->key.dsize
138 + data.dsize);
140 if (node == NULL) {
141 TALLOC_FREE(rec_priv->node);
142 return NT_STATUS_NO_MEMORY;
145 ZERO_STRUCT(node->rb_node);
147 node->keysize = rec->key.dsize;
148 node->valuesize = data.dsize;
150 db_rbt_parse_node(node, &this_key, &this_val);
152 memcpy(this_key.dptr, rec->key.dptr, node->keysize);
153 TALLOC_FREE(rec_priv->node);
155 memcpy(this_val.dptr, data.dptr, node->valuesize);
157 parent = NULL;
158 p = &rec_priv->db_ctx->tree.rb_node;
160 while (*p) {
161 struct db_rbt_node *r;
162 TDB_DATA search_key, search_val;
163 int res;
165 parent = (*p);
167 r = db_rbt2node(*p);
169 db_rbt_parse_node(r, &search_key, &search_val);
171 res = db_rbt_compare(this_key, search_key);
173 if (res == -1) {
174 p = &(*p)->rb_left;
176 else if (res == 1) {
177 p = &(*p)->rb_right;
179 else {
180 smb_panic("someone messed with the tree");
184 rb_link_node(&node->rb_node, parent, p);
185 rb_insert_color(&node->rb_node, &rec_priv->db_ctx->tree);
187 return NT_STATUS_OK;
190 static NTSTATUS db_rbt_delete(struct db_record *rec)
192 struct db_rbt_rec *rec_priv = (struct db_rbt_rec *)rec->private_data;
194 if (rec_priv->node == NULL) {
195 return NT_STATUS_OK;
198 rb_erase(&rec_priv->node->rb_node, &rec_priv->db_ctx->tree);
199 TALLOC_FREE(rec_priv->node);
201 return NT_STATUS_OK;
204 static struct db_record *db_rbt_fetch_locked(struct db_context *db_ctx,
205 TALLOC_CTX *mem_ctx,
206 TDB_DATA key)
208 struct db_rbt_ctx *ctx = talloc_get_type_abort(
209 db_ctx->private_data, struct db_rbt_ctx);
211 struct db_rbt_rec *rec_priv;
212 struct db_record *result;
213 struct rb_node *n;
214 size_t size;
215 bool found = false;
216 struct db_rbt_node *r = NULL;
217 TDB_DATA search_key = tdb_null, search_val = tdb_null;
219 n = ctx->tree.rb_node;
221 while (n != NULL) {
222 int res;
224 r = db_rbt2node(n);
226 db_rbt_parse_node(r, &search_key, &search_val);
228 res = db_rbt_compare(key, search_key);
230 if (res == -1) {
231 n = n->rb_left;
233 else if (res == 1) {
234 n = n->rb_right;
236 else {
237 found = true;
238 break;
243 * In this low-level routine, play tricks to reduce the number of
244 * tallocs to one. Not recommened for general use, but here it pays
245 * off.
248 size = DBWRAP_RBT_ALIGN(sizeof(struct db_record))
249 + sizeof(struct db_rbt_rec);
251 if (!found) {
253 * We need to keep the key around for later store
255 size += key.dsize;
258 result = (struct db_record *)talloc_size(mem_ctx, size);
259 if (result == NULL) {
260 return NULL;
263 rec_priv = (struct db_rbt_rec *)
264 ((char *)result + DBWRAP_RBT_ALIGN(sizeof(struct db_record)));
265 rec_priv->db_ctx = ctx;
267 result->store = db_rbt_store;
268 result->delete_rec = db_rbt_delete;
269 result->private_data = rec_priv;
271 if (found) {
272 rec_priv->node = r;
273 result->key = search_key;
274 result->value = search_val;
276 else {
277 rec_priv->node = NULL;
278 result->key.dptr = (uint8 *)
279 ((char *)rec_priv + sizeof(*rec_priv));
280 result->key.dsize = key.dsize;
281 memcpy(result->key.dptr, key.dptr, key.dsize);
283 result->value = tdb_null;
286 return result;
289 static int db_rbt_fetch(struct db_context *db, TALLOC_CTX *mem_ctx,
290 TDB_DATA key, TDB_DATA *data)
292 struct db_rbt_ctx *ctx = talloc_get_type_abort(
293 db->private_data, struct db_rbt_ctx);
295 struct rb_node *n;
296 bool found = false;
297 struct db_rbt_node *r = NULL;
298 TDB_DATA search_key, search_val;
299 uint8_t *result;
301 n = ctx->tree.rb_node;
303 while (n != NULL) {
304 int res;
306 r = db_rbt2node(n);
308 db_rbt_parse_node(r, &search_key, &search_val);
310 res = db_rbt_compare(key, search_key);
312 if (res == -1) {
313 n = n->rb_left;
315 else if (res == 1) {
316 n = n->rb_right;
318 else {
319 found = true;
320 break;
324 if (!found) {
325 *data = tdb_null;
326 return 0;
329 result = (uint8 *)talloc_memdup(mem_ctx, search_val.dptr,
330 search_val.dsize);
331 if (result == NULL) {
332 return -1;
335 data->dptr = result;
336 data->dsize = search_val.dsize;
337 return 0;
340 static int db_rbt_traverse_internal(struct rb_node *n,
341 int (*f)(struct db_record *db,
342 void *private_data),
343 void *private_data)
345 struct db_rbt_node *r;
346 struct db_record rec;
347 int ret;
349 if (n == NULL) {
350 return 0;
353 ret = db_rbt_traverse_internal(n->rb_left, f, private_data);
354 if (ret != 0) {
355 return ret;
358 r = db_rbt2node(n);
359 ZERO_STRUCT(rec);
360 db_rbt_parse_node(r, &rec.key, &rec.value);
362 ret = f(&rec, private_data);
363 if (ret != 0) {
364 return ret;
367 return db_rbt_traverse_internal(n->rb_right, f, private_data);
370 static int db_rbt_traverse(struct db_context *db,
371 int (*f)(struct db_record *db,
372 void *private_data),
373 void *private_data)
375 struct db_rbt_ctx *ctx = talloc_get_type_abort(
376 db->private_data, struct db_rbt_ctx);
378 return db_rbt_traverse_internal(ctx->tree.rb_node, f, private_data);
381 static int db_rbt_get_seqnum(struct db_context *db)
383 return 0;
386 static int db_rbt_trans_dummy(struct db_context *db)
389 * Transactions are pretty pointless in-memory, just return success.
391 return 0;
394 struct db_context *db_open_rbt(TALLOC_CTX *mem_ctx)
396 struct db_context *result;
398 result = talloc(mem_ctx, struct db_context);
400 if (result == NULL) {
401 return NULL;
404 result->private_data = talloc_zero(result, struct db_rbt_ctx);
406 if (result->private_data == NULL) {
407 TALLOC_FREE(result);
408 return NULL;
411 result->fetch_locked = db_rbt_fetch_locked;
412 result->fetch = db_rbt_fetch;
413 result->traverse = db_rbt_traverse;
414 result->traverse_read = db_rbt_traverse;
415 result->get_seqnum = db_rbt_get_seqnum;
416 result->transaction_start = db_rbt_trans_dummy;
417 result->transaction_commit = db_rbt_trans_dummy;
418 result->transaction_cancel = db_rbt_trans_dummy;
420 return result;