blob: 506261319a53339144fb1dfaeade31a54216c76c (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#include <u.h>
#include <libc.h>
#include <bio.h>
#include <ctype.h>
#include <ndb.h>
#include "ndbhf.h"
/*
* free a parsed entry
*/
void
ndbfree(Ndbtuple *t)
{
Ndbtuple *tn;
for(; t; t = tn){
tn = t->entry;
if(t->val != t->valbuf){
free(t->val);
}
free(t);
}
}
/*
* set a value in a tuple
*/
void
ndbsetval(Ndbtuple *t, char *val, int n)
{
if(n < Ndbvlen){
if(t->val != t->valbuf){
free(t->val);
t->val = t->valbuf;
}
} else {
if(t->val != t->valbuf)
t->val = realloc(t->val, n+1);
else
t->val = malloc(n+1);
if(t->val == nil)
sysfatal("ndbsetval %r");
}
strncpy(t->val, val, n);
t->val[n] = 0;
}
/*
* allocate a tuple
*/
Ndbtuple*
ndbnew(char *attr, char *val)
{
Ndbtuple *t;
t = mallocz(sizeof(*t), 1);
if(t == nil)
sysfatal("ndbnew %r");
if(attr != nil)
strncpy(t->attr, attr, sizeof(t->attr)-1);
t->val = t->valbuf;
if(val != nil)
ndbsetval(t, val, strlen(val));
return t;
}
|