File: key_value.c

package info (click to toggle)
f-irc 1.36-1.1
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 656 kB
  • sloc: ansic: 12,845; makefile: 61
file content (182 lines) | stat: -rw-r--r-- 3,272 bytes parent folder | download | duplicates (2)
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
/* GPLv2 applies
 * SVN revision: $Revision: 671 $
 * (C) 2006-2014 by folkert@vanheusden.com
 */
#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#include "gen.h"
#include "utils.h"
#include "key_value.h"

key_value * allocate_kv(void)
{
	return (key_value *)calloc(1, sizeof(key_value));
}

void free_kv(key_value *p)
{
	truncate_kv(p);

	free(p);
}

void bin_search(const key_value *work, const char *key, int *found_at, int *insert_at)
{
	int imin = 0, imax = work -> n - 1, found = -1;

	while(imax >= imin)
	{
		int imid = (imin + imax) / 2;
		int cmp = strcmp(work -> pairs[imid].key, key);

		if (cmp < 0)
			imin = imid + 1;
		else if (cmp > 0)
			imax = imid - 1;
		else
		{
			found = imid;
			break;
		}
	}

	if (found == -1)
	{
		*insert_at = imin;
		*found_at = -1;
	}
	else
	{
		*insert_at = -1;
		*found_at = found;
	}
}

int get_n_kv_from_kv(const key_value *in)
{
	return in -> n;
}

const char *get_key_by_index(const key_value *in, int nr)
{
	return in -> pairs[nr].key;
}

const void *get_value_by_index(const key_value *in, int nr)
{
	return in -> pairs[nr].value;
}

void add_to_kv(key_value *work, const char *key, const void *value)
{
	int found_at = -1, insert_at = -1;

	bin_search(work, key, &found_at, &insert_at);

	if (found_at != -1)
	{
		myfree(work -> pairs[found_at].value);

		work -> pairs[found_at].value = value;
	}
	else
	{
		int n_to_move = work -> n - insert_at;

		work -> pairs = realloc(work -> pairs, (work -> n + 1) * sizeof(key_value_pair));

		if (n_to_move)
			memmove(&work -> pairs[insert_at + 1], &work -> pairs[insert_at], n_to_move * sizeof(key_value_pair));

		work -> pairs[insert_at].key = key;
		work -> pairs[insert_at].value = value;

		work -> n++;
	}
}

const void * get_from_kv(const key_value *in, const char *key)
{
	int found_at = -1, insert_at = -1;

	bin_search(in, key, &found_at, &insert_at);

	if (found_at == -1)
		return NULL;

	return in -> pairs[found_at].value;
}

BOOL update_kv(key_value *work, const char *key, const void *new_value)
{
	int found_at = -1, insert_at = -1;

	bin_search(work, key, &found_at, &insert_at);

	if (found_at == -1)
		return FALSE;

	myfree(work -> pairs[found_at].value);

	work -> pairs[found_at].value = new_value;

	return TRUE;
}

void truncate_kv(key_value *work)
{
	if (work)
	{
		int loop;

		for(loop=0; loop<work -> n; loop++)
		{
			myfree(work -> pairs[loop].key);
			myfree(work -> pairs[loop].value);
		}

		myfree(work -> pairs);

		work -> pairs = NULL;
		work -> n = 0;
	}
}

typedef struct
{
	BOOL asc, key;
	int (*value_cmp)(const void *pv1, const void *pv2);
} sort_pars;

sort_pars sp;

int qsort_cmp(const void *pv1, const void *pv2)
{
	key_value_pair *v1 = (key_value_pair *)pv1;
	key_value_pair *v2 = (key_value_pair *)pv2;

	if (sp.key)
	{
		if (sp.asc)
			return strcmp(v1 -> key, v2 -> key);
		else
			return strcmp(v2 -> key, v1 -> key);
	}

	if (sp.asc)
		return sp.value_cmp(v1 -> value, v2 -> value);
	else
		return sp.value_cmp(v2 -> value, v1 -> value);
}

void sort_kv(key_value *work, const BOOL asc, const BOOL key, int (*value_cmp)(const void *pv1, const void *pv2))
{
	sp.asc = asc;
	sp.key = key;
	sp.value_cmp = value_cmp;

	qsort(work -> pairs, work -> n, sizeof(key_value_pair), qsort_cmp);
}