1 /* string-map.c - associative arrays of strings
4 * Copyright © 2016 David Bremner
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 3 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see https://www.gnu.org/licenses/ .
19 * Author: David Bremner <david@tethera.net>
22 #include "notmuch-private.h"
24 /* Create a new notmuch_string_map_t object, with 'ctx' as its
27 * This function can return NULL in case of out-of-memory.
30 typedef struct _notmuch_string_pair_t {
33 } notmuch_string_pair_t;
35 struct _notmuch_string_map {
38 notmuch_string_pair_t *pairs;
41 struct _notmuch_string_map_iterator {
42 notmuch_string_pair_t *current;
47 notmuch_string_map_t *
48 _notmuch_string_map_create (const void *ctx)
50 notmuch_string_map_t *map;
52 map = talloc (ctx, notmuch_string_map_t);
53 if (unlikely (map == NULL))
64 _notmuch_string_map_append (notmuch_string_map_t *map,
73 map->pairs = talloc_realloc (map, map->pairs, notmuch_string_pair_t, map->length + 1);
75 map->pairs = talloc_array (map, notmuch_string_pair_t, map->length + 1);
77 map->pairs[map->length - 1].key = talloc_strdup (map, key);
78 map->pairs[map->length - 1].value = talloc_strdup (map, value);
81 map->pairs[map->length].key = NULL;
82 map->pairs[map->length].value = NULL;
87 cmppair (const void *pa, const void *pb)
89 notmuch_string_pair_t *a = (notmuch_string_pair_t *) pa;
90 notmuch_string_pair_t *b = (notmuch_string_pair_t *) pb;
92 return strcmp (a->key, b->key);
96 _notmuch_string_map_sort (notmuch_string_map_t *map)
104 qsort (map->pairs, map->length, sizeof (notmuch_string_pair_t), cmppair);
110 string_cmp (const char *a, const char *b, bool exact)
113 return (strcmp (a, b));
115 return (strncmp (a, b, strlen (a)));
118 static notmuch_string_pair_t *
119 bsearch_first (notmuch_string_pair_t *array, size_t len, const char *key, bool exact)
122 size_t last = len - 1;
128 while (last > first) {
129 mid = (first + last) / 2;
130 int sign = string_cmp (key, array[mid].key, exact);
139 if (string_cmp (key, array[first].key, exact) == 0)
140 return array + first;
147 _notmuch_string_map_set (notmuch_string_map_t *map,
151 notmuch_string_pair_t *pair;
153 /* this means that calling string_map_set invalidates iterators */
154 _notmuch_string_map_sort (map);
155 pair = bsearch_first (map->pairs, map->length, key, true);
157 _notmuch_string_map_append (map, key, val);
159 talloc_free (pair->value);
160 pair->value = talloc_strdup (map->pairs, val);
165 _notmuch_string_map_get (notmuch_string_map_t *map, const char *key)
167 notmuch_string_pair_t *pair;
169 /* this means that calling append invalidates iterators */
170 _notmuch_string_map_sort (map);
172 pair = bsearch_first (map->pairs, map->length, key, true);
179 notmuch_string_map_iterator_t *
180 _notmuch_string_map_iterator_create (notmuch_string_map_t *map, const char *key,
183 notmuch_string_map_iterator_t *iter;
185 _notmuch_string_map_sort (map);
187 iter = talloc (map, notmuch_string_map_iterator_t);
188 if (unlikely (iter == NULL))
191 if (unlikely (talloc_reference (iter, map) == NULL))
194 iter->key = talloc_strdup (iter, key);
196 iter->current = bsearch_first (map->pairs, map->length, key, exact);
201 _notmuch_string_map_iterator_valid (notmuch_string_map_iterator_t *iterator)
203 if (iterator->current == NULL)
207 if (iterator->current->key == NULL)
210 return (0 == string_cmp (iterator->key, iterator->current->key, iterator->exact));
215 _notmuch_string_map_iterator_move_to_next (notmuch_string_map_iterator_t *iterator)
218 if (! _notmuch_string_map_iterator_valid (iterator))
221 (iterator->current)++;
225 _notmuch_string_map_iterator_key (notmuch_string_map_iterator_t *iterator)
227 if (! _notmuch_string_map_iterator_valid (iterator))
230 return iterator->current->key;
234 _notmuch_string_map_iterator_value (notmuch_string_map_iterator_t *iterator)
236 if (! _notmuch_string_map_iterator_valid (iterator))
239 return iterator->current->value;
243 _notmuch_string_map_iterator_destroy (notmuch_string_map_iterator_t *iterator)
245 talloc_free (iterator);