summaryrefslogtreecommitdiff
path: root/src/config/node.c
blob: 7e6cd4b4bb94981741f31a3aaf39667647870aa7 (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
/* ISC license. */

#include <stdint.h>
#include <string.h>

#include <skalibs/stralloc.h>
#include <skalibs/strerr.h>

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

#define diestorage() strerr_diefu2x(100, "add node to configuration tree", ": too much data")
#define diefilepos() strerr_diefu2x(100, "add node to configuration tree", ": file too large")

void node_start (stralloc *storage, node *node, char const *key, size_t filepos, uint32_t line)
{
  size_t l = strlen(key) ;
  size_t k = storage->len ;
  if (!stralloc_catb(storage, key, l + 1)) dienomem() ;
  if (storage->len >= UINT32_MAX) diestorage() ;
  if (filepos > UINT32_MAX) diefilepos() ;
  node->key = k ;
  node->keylen = l ;
  node->data = storage->len ;
  node->datalen = 0 ;
  node->filepos = filepos ;
  node->line = line ;
}

void node_add (stralloc *storage, node *node, char const *s, size_t len)
{
  if (!stralloc_catb(storage, s, len)) dienomem() ;
  if (storage->len >= UINT32_MAX) diestorage() ;
  node->datalen += len ;
}