ucx/map.c

Mon, 15 Jul 2013 14:25:50 +0200

author
Olaf Wintermann <olaf.wintermann@gmail.com>
date
Mon, 15 Jul 2013 14:25:50 +0200
changeset 111
c8c59d7f4536
parent 108
d2b1e67b2b48
child 112
6384016df2a3
permissions
-rw-r--r--

new map foreach macro

     1 /*
     2  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
     3  *
     4  * Copyright 2013 Olaf Wintermann. All rights reserved.
     5  *
     6  * Redistribution and use in source and binary forms, with or without
     7  * modification, are permitted provided that the following conditions are met:
     8  *
     9  *   1. Redistributions of source code must retain the above copyright
    10  *      notice, this list of conditions and the following disclaimer.
    11  *
    12  *   2. Redistributions in binary form must reproduce the above copyright
    13  *      notice, this list of conditions and the following disclaimer in the
    14  *      documentation and/or other materials provided with the distribution.
    15  *
    16  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
    17  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
    18  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
    19  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
    20  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
    21  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
    22  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
    23  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
    24  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
    25  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
    26  * POSSIBILITY OF SUCH DAMAGE.
    27  */
    29 #include <stdlib.h>
    30 #include <string.h>
    32 #include "map.h"
    34 UcxMap *ucx_map_new(size_t size) {
    35     return ucx_map_new_allocator(size, NULL);
    36 }
    38 UcxMap *ucx_map_new_allocator(size_t size, UcxAllocator *allocator) {
    39     if(size == 0) {
    40         size = 16;
    41     }
    43     if(!allocator) {
    44         allocator = ucx_default_allocator();
    45     }
    47     UcxMap *map = (UcxMap*)allocator->malloc(allocator->pool, sizeof(UcxMap));
    48     if(map == NULL) {
    49         return NULL;
    50     }
    52     map->allocator = allocator;
    53     map->map = (UcxMapElement**)allocator->calloc(
    54             allocator->pool,
    55             size,
    56             sizeof(UcxMapElement*));
    57     if(map->map == NULL) {
    58         allocator->free(allocator->pool, map);
    59         return NULL;
    60     }
    61     map->size = size;
    62     map->count = 0;
    64     return map;
    65 }
    67 void ucx_map_free_elmlist(UcxMap *map) {
    68     for (size_t n = 0 ; n < map->size ; n++) {
    69         UcxMapElement *elem = map->map[n];
    70         if (elem != NULL) {
    71             do {
    72                 UcxMapElement *next = elem->next;
    73                 map->allocator->free(map->allocator->pool, elem->key.data);
    74                 free(elem);
    75                 elem = next;
    76             } while (elem != NULL);
    77         }
    78     }
    79     map->allocator->free(map->allocator->pool, map->map);
    80 }
    82 void ucx_map_free(UcxMap *map) {
    83     ucx_map_free_elmlist(map);
    84     map->allocator->free(map->allocator->pool, map);
    85 }
    87 int ucx_map_copy(UcxMap *restrict from, UcxMap *restrict to,
    88         copy_func fnc, void *data) {
    89     UcxMapIterator i = ucx_map_iterator(from);
    90     void *value;
    91     UCX_MAP_FOREACH(key, value, i) {
    92         int ret = ucx_map_put(to, i.cur->key, fnc ? fnc(value, data) : value);
    93         if(ret != 0) {
    94             return 1;
    95         }
    96     }
    97     return 0;
    98 }
   100 UcxMap *ucx_map_clone(UcxMap *map, copy_func fnc, void *data) {
   101     size_t bs = (map->count * 5) >> 1;
   102     UcxMap *newmap = ucx_map_new(bs > map->size ? bs : map->size);
   103     if(newmap == NULL) {
   104         return NULL;
   105     }
   106     ucx_map_copy(map, newmap, fnc, data);
   107     return newmap;
   108 }
   110 int ucx_map_rehash(UcxMap *map) {
   111     size_t load = (map->size * 3) >> 2;
   112     if (map->count > load) {
   113         UcxMap oldmap;
   114         oldmap.map = map->map;
   115         oldmap.size = map->size;
   116         oldmap.count = map->count;
   117         oldmap.allocator = map->allocator;
   119         map->size = (map->count * 5) >> 1;
   120         map->map = (UcxMapElement**)map->allocator->calloc(
   121                 map->allocator->pool,
   122                 map->size,
   123                 sizeof(UcxMapElement*));
   124         if(map->map == NULL) {
   125             *map = oldmap;
   126             return 1;
   127         }
   128         map->count = 0;
   129         ucx_map_copy(&oldmap, map, NULL, NULL);
   131         /* free the UcxMapElement list of oldmap */
   132         ucx_map_free_elmlist(&oldmap);
   133     }
   134     return 0;
   135 }
   137 int ucx_map_put(UcxMap *map, UcxKey key, void *data) {
   138     UcxAllocator *allocator = map->allocator;
   140     if(key.hash == 0) {
   141         key.hash = ucx_hash((char*)key.data, key.len);
   142     }
   144     size_t slot = key.hash%map->size;
   145     UcxMapElement *restrict elm = map->map[slot];
   146     UcxMapElement *restrict prev = NULL;
   148     while (elm != NULL && elm->key.hash < key.hash) {
   149         prev = elm;
   150         elm = elm->next;
   151     }
   153     if (elm == NULL || elm->key.hash != key.hash) {
   154         UcxMapElement *e = (UcxMapElement*)allocator->malloc(
   155                 allocator->pool,
   156                 sizeof(UcxMapElement));
   157         if(e == NULL) {
   158             return -1;
   159         }
   160         e->key.data = NULL;
   161         if (prev) {
   162             prev->next = e;
   163         } else {
   164             map->map[slot] = e;
   165         }
   166         e->next = elm;
   167         elm = e;
   168     }
   170     if(elm->key.data == NULL) {
   171         void *kd = allocator->malloc(allocator->pool, key.len);
   172         if (kd == NULL) {
   173             return -1;
   174         }
   175         memcpy(kd, key.data, key.len);
   176         key.data = kd;
   177         elm->key = key;
   178         map->count++;
   179     }
   180     elm->data = data;
   182     return 0;
   183 }
   185 void* ucx_map_get_and_remove(UcxMap *map, UcxKey key, _Bool remove) {
   186     if(key.hash == 0) {
   187         key.hash = ucx_hash((char*)key.data, key.len);
   188     }
   190     size_t slot = key.hash%map->size;
   191     UcxMapElement *restrict elm = map->map[slot];
   192     UcxMapElement *restrict pelm = NULL;
   193     while (elm && elm->key.hash <= key.hash) {
   194         if(elm->key.hash == key.hash) {
   195             int n = (key.len > elm->key.len) ? elm->key.len : key.len;
   196             if (memcmp(elm->key.data, key.data, n) == 0) {
   197                 void *data = elm->data;
   198                 if (remove) {
   199                     if (pelm) {
   200                         pelm->next = elm->next;
   201                     } else {
   202                         map->map[slot] = elm->next;
   203                     }
   204                     map->allocator->free(map->allocator->pool, elm);
   205                     map->count--;
   206                 }
   208                 return data;
   209             }
   210         }
   211         pelm = elm;
   212         elm = pelm->next;
   213     }
   215     return NULL;
   216 }
   218 void *ucx_map_get(UcxMap *map, UcxKey key) {
   219     return ucx_map_get_and_remove(map, key, 0);
   220 }
   222 void *ucx_map_remove(UcxMap *map, UcxKey key) {
   223     return ucx_map_get_and_remove(map, key, 1);
   224 }
   226 UcxKey ucx_key(void *data, size_t len) {
   227     UcxKey key;
   228     key.data = data;
   229     key.len = len;
   230     key.hash = ucx_hash((const char*) data, len);
   231     return key;
   232 }
   235 int ucx_hash(const char *data, size_t len) {
   236     /* murmur hash 2 */
   238     int m = 0x5bd1e995;
   239     int r = 24;
   241     int h = 25 ^ len;
   243     int i = 0;
   244     while (len >= 4) {
   245         int k = data[i + 0] & 0xFF;
   246         k |= (data[i + 1] & 0xFF) << 8;
   247         k |= (data[i + 2] & 0xFF) << 16;
   248         k |= (data[i + 3] & 0xFF) << 24;
   250         k *= m;
   251         k ^= k >> r;
   252         k *= m;
   254         h *= m;
   255         h ^= k;
   257         i += 4;
   258         len -= 4;
   259     }
   261     switch (len) {
   262         case 3: h ^= (data[i + 2] & 0xFF) << 16;
   263         /* no break */
   264         case 2: h ^= (data[i + 1] & 0xFF) << 8;
   265         /* no break */
   266         case 1: h ^= (data[i + 0] & 0xFF); h *= m;
   267         /* no break */
   268     }
   270     h ^= h >> 13;
   271     h *= m;
   272     h ^= h >> 15;
   274     return h;
   275 }
   277 UcxMapIterator ucx_map_iterator(UcxMap *map) {
   278     UcxMapIterator i;
   279     i.map = map;
   280     i.cur = NULL;
   281     i.index = 0;
   282     return i;
   283 }
   285 int ucx_map_iter_next(UcxMapIterator *i, UcxKey *key, void **elm) {
   286     UcxMapElement *e = i->cur;
   288     if(e == NULL) {
   289         e = i->map->map[0];
   290     } else {
   291         e = e->next;
   292     }
   294     while(i->index < i->map->size) {
   295         if(e != NULL) {
   296             if(e->data != NULL) {
   297                 i->cur = e;
   298                 *elm = e->data;
   299                 *key = e->key;
   300                 return 0;
   301             }
   303             e = e->next;
   304         } else {
   305             i->index++;
   307             if(i->index < i->map->size) {
   308                 e = i->map->map[i->index];
   309             }
   310         }
   311     }
   313     return 1;
   314 }
   316 int ucx_map_load_enc(UcxMap *map, FILE *f, UcxAllocator allocator,
   317         ucx_map_coder decoder, void* decdata) {
   319     int c; int r, n;
   321     char *key, *value;
   323     while ((c = fgetc(f)) > 0) {
   324         /* Discard leading spaces and comments */
   325         if (c < 33) continue;
   326         if (c == '#' || c == '!') {
   327             while ((c = (char) fgetc(f)) > 0) {
   328                 if (c == '\n') break;
   329             }
   330             continue;
   331         }
   333         /* read into key buffer */
   334         n = 16;
   335         key = (char*) malloc(n);
   336         r = 0;
   337         do {
   338             if (c == '=') break;
   339             if (r > n - 2) {
   340                 n *= 2;
   341                 key = (char*) realloc(key, n);
   342             }
   343             key[r] = c;
   344             r++;
   345         } while ((c = fgetc(f)) > 0);
   346         if (c <= 0) {
   347             free(key);
   348             return 1;
   349         }
   350         key[r] = 0;
   351         while (key[--r] == ' ') key[r] = 0;
   353         /* skip whitespaces */
   354         while ((c = fgetc(f)) > 0) {
   355             if (c > 32) break;
   356         }
   357         if (c <= 0) {
   358             free(key);
   359             return 1;
   360         }
   362         /* read into value buffer */
   363         n = 64;
   364         value = (char*) malloc(n);
   365         r = 0;
   366         do {
   367             if (c == '\n') break;
   368             if (r > n - 2) {
   369                 n *= 2;
   370                 value = (char*) realloc(value, n);
   371             }
   372             value[r] = c;
   373             r++;
   374         } while ((c = fgetc(f)) > 0);
   375         value[r] = 0;
   376         while (value[--r] < 33) value[r] = 0;
   378         if (decoder) {
   379             size_t decodedSize;
   380             void *decoded = decoder(value, decdata, &decodedSize);
   381             free(value);
   382             value = (char*) decoded;
   383             r = decodedSize;
   384         } else {
   385             r += 2;
   386             value = (char*) realloc(value, r);
   387         }
   389         if (allocator.pool) {
   390             void *pooledValue = allocator.malloc(allocator.pool, r);
   391             memcpy(pooledValue, value, r);
   392             free(value);
   393             value = (char*) pooledValue;
   394         }
   396         ucx_map_cstr_put(map, key, value);
   397         free(key);
   398     }
   400     return 0;
   401 }
   403 int ucx_map_store_enc(UcxMap *map, FILE *f,
   404         ucx_map_coder encoder, void *encdata) {
   405     UcxMapIterator iter = ucx_map_iterator(map);
   406     char *v;
   407     sstr_t key, value;
   408     size_t written;
   410     UCX_MAP_FOREACH(k, v, iter) {
   411         key = sstrn(k.data, k.len);
   412         if (encoder) {
   413             size_t encodedSize;
   414             void *encoded = encoder(v, encdata, &encodedSize);
   415             value = sstrn((char*) encoded,encodedSize - 1);
   416         } else {
   417             value = sstr(v);
   418         }
   420         written = 0;
   421         written += fwrite(key.ptr, 1, key.length, f);
   422         written += fwrite(" = ", 1, 3, f);
   423         written += fwrite(value.ptr, 1, value.length, f);
   424         written += fwrite("\n", 1, 1, f);
   426         if (encoder) {
   427             free(value.ptr);
   428         }
   430         if (written != key.length + value.length + 4) return 1;
   431     }
   433     return 0;
   434 }

mercurial