summaryrefslogtreecommitdiff
path: root/src/config/conftree.c
blob: 573646aadedc90e6ad75c9ee9705dc0e4aad2fb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/* ISC license. */

#include <skalibs/genalloc.h>
#include <skalibs/avltree.h>
#include <skalibs/cdbmake.h>

#include "shibari-cache-config-internal.h"

static repo conftree = \
{ \
  .ga = GENALLOC_ZERO, \
  .tree = AVLTREE_INIT(8, 3, 8, &node_dtok, &node_cmp, &conftree.ga), \
  .storage = &g.storage \
} ;

void confnode_start (node *node, char const *key, size_t filepos, uint32_t line)
{
  return node_start(&g.storage, node, key, filepos, line) ;
}

void confnode_add (node *node, char const *s, size_t len)
{
  return node_add(&g.storage, node, s, len) ;
}

node const *conftree_search (char const *key)
{
  return repo_search(&conftree, key) ;
}

void conftree_add (node const *node)
{
  return repo_add(&conftree, node) ;
}

void conftree_update (node const *node)
{
  return repo_update(&conftree, node) ;
}

static int confnode_write (uint32_t d, unsigned int h, void *data)
{
  node *nod = genalloc_s(node, &conftree.ga) + d ;
  (void)h ;
  return cdbmake_add((cdbmaker *)data, conftree.storage->s + nod->key, nod->keylen, conftree.storage->s + nod->data, nod->datalen) ;
}

int conftree_write (cdbmaker *cm)
{
  return avltree_iter(&conftree.tree, &confnode_write, cm) ;
}