summaryrefslogtreecommitdiff
path: root/src/data_string.c
blob: 5ce160a3c0a59acaa6b2627bae8d817e90cee12e (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>

#include "array.h"

static void data_string_free(data_unset *d) {
	data_string *ds = (data_string *)d;
	
	buffer_free(ds->key);
	buffer_free(ds->value);
	
	free(d);
}

static void data_string_reset(data_unset *d) {
	data_string *ds = (data_string *)d;
	
	/* reused array elements */
	buffer_reset(ds->key);
	buffer_reset(ds->value);
}

static int data_string_insert_dup(data_unset *dst, data_unset *src) {
	data_string *ds_dst = (data_string *)dst;
	data_string *ds_src = (data_string *)src;
	
	if (ds_dst->value->used) {
		buffer_append_string(ds_dst->value, ", ");
		buffer_append_string_buffer(ds_dst->value, ds_src->value);
	} else {
		buffer_copy_string_buffer(ds_dst->value, ds_src->value);
	}
	
	src->free(src);
	
	return 0;
}

static int data_response_insert_dup(data_unset *dst, data_unset *src) {
	data_string *ds_dst = (data_string *)dst;
	data_string *ds_src = (data_string *)src;
	
	if (ds_dst->value->used) {
		buffer_append_string(ds_dst->value, "\r\n");
		buffer_append_string_buffer(ds_dst->value, ds_dst->key);
		buffer_append_string(ds_dst->value, ": ");
		buffer_append_string_buffer(ds_dst->value, ds_src->value);
	} else {
		buffer_copy_string_buffer(ds_dst->value, ds_src->value);
	}
	
	src->free(src);
	
	return 0;
}


static void data_string_print(data_unset *d) {
	data_string *ds = (data_string *)d;
	
	fprintf(stderr, "{%s: %s}", ds->key->ptr, ds->value->used ? ds->value->ptr : "");
}


data_string *data_string_init(void) {
	data_string *ds;
	
	ds = calloc(1, sizeof(*ds));
	assert(ds);
	
	ds->key = buffer_init();
	ds->value = buffer_init();
	
	ds->free = data_string_free;
	ds->reset = data_string_reset;
	ds->insert_dup = data_string_insert_dup;
	ds->print = data_string_print;
	ds->type = TYPE_STRING;
	
	return ds;
}

data_string *data_response_init(void) {
	data_string *ds;
	
	ds = data_string_init();
	ds->insert_dup = data_response_insert_dup;
	
	return ds;
}