| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266 |
- /* Copyright (c) 2000-2007 by Nicolas Devillard.
- * Copyright (x) 2009 by Tim Post <tinkertim@gmail.com>
- * MIT License
- *
- * Permission is hereby granted, free of charge, to any person obtaining a
- * copy of this software and associated documentation files (the "Software"),
- * to deal in the Software without restriction, including without limitation
- * the rights to use, copy, modify, merge, publish, distribute, sublicense,
- * and/or sell copies of the Software, and to permit persons to whom the
- * Software is furnished to do so, subject to the following conditions:
- *
- * The above copyright notice and this permission notice shall be included in
- * all copies or substantial portions of the Software.
- *
- * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
- * DEALINGS IN THE SOFTWARE.
- */
- /** @addtogroup ciniparser
- * @{
- */
- /**
- * @file dictionary.c
- * @author N. Devillard
- * @date Sep 2007
- * @version $Revision: 1.27 $
- * @brief Implements a dictionary for string variables.
- *
- * This module implements a simple dictionary object, i.e. a list
- * of string/string associations. This object is useful to store e.g.
- * informations retrieved from a configuration file (ini files).
- */
- #include "dictionary.h"
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include <unistd.h>
- /** Maximum value size for integers and doubles. */
- #define MAXVALSZ 1024
- /** Minimal allocated number of entries in a dictionary */
- #define DICTMINSZ 128
- /** Invalid key token */
- #define DICT_INVALID_KEY ((char*)-1)
- /**
- * @brief Double the allocated size associated to a pointer
- * @param size the current allocated size
- * @return re-allocated pointer on success, NULL on failure
- */
- static void *mem_double(void *ptr, int size)
- {
- void *newptr;
- newptr = calloc(2 * size, 1);
- if (newptr == NULL) {
- return NULL;
- }
- memcpy(newptr, ptr, size);
- free(ptr);
- return newptr;
- }
- /* The remaining exposed functions are documented in dictionary.h */
- unsigned dictionary_hash(char *key)
- {
- int len;
- unsigned hash;
- int i;
- len = strlen(key);
- for (hash = 0, i = 0; i < len; i++) {
- hash += (unsigned) key[i];
- hash += (hash << 10);
- hash ^= (hash >> 6);
- }
- hash += (hash << 3);
- hash ^= (hash >> 11);
- hash += (hash << 15);
- return hash;
- }
- dictionary *dictionary_new(int size)
- {
- dictionary *d;
- /* If no size was specified, allocate space for DICTMINSZ */
- if (size<DICTMINSZ) size=DICTMINSZ;
- if (!(d = (dictionary *) calloc(1, sizeof(dictionary)))) {
- return NULL;
- }
- d->size = size;
- d->val = (char **) calloc(size, sizeof(char *));
- d->key = (char **) calloc(size, sizeof(char *));
- d->hash = (unsigned int *) calloc(size, sizeof(unsigned));
- return d;
- }
- void dictionary_del(dictionary *d)
- {
- int i;
- if (d == NULL)
- return;
- for (i = 0; i < d->size; i++) {
- if (d->key[i] != NULL)
- free(d->key[i]);
- if (d->val[i] != NULL)
- free(d->val[i]);
- }
- free(d->val);
- free(d->key);
- free(d->hash);
- free(d);
- return;
- }
- char *dictionary_get(dictionary *d, char *key, char *def)
- {
- unsigned hash;
- int i;
- hash = dictionary_hash(key);
- for (i=0; i < d->size; i++) {
- if (d->key[i] == NULL)
- continue;
- /* Compare hash */
- if (hash == d->hash[i]) {
- /* Compare string, to avoid hash collisions */
- if (!strcmp(key, d->key[i])) {
- return d->val[i];
- }
- }
- }
- return def;
- }
- int dictionary_set(dictionary *d, char *key, char *val)
- {
- int i;
- unsigned hash;
- if (d==NULL || key==NULL)
- return -1;
- /* Compute hash for this key */
- hash = dictionary_hash(key);
- /* Find if value is already in dictionary */
- if (d->n > 0) {
- for (i = 0; i < d->size; i++) {
- if (d->key[i] == NULL)
- continue;
- /* Same hash value */
- if (hash == d->hash[i]) {
- /* Same key */
- if (!strcmp(key, d->key[i])) {
- /* Found a value: modify and return */
- if (d->val[i] != NULL)
- free(d->val[i]);
- d->val[i] = val ? strdup(val) : NULL;
- /* Value has been modified: return */
- return 0;
- }
- }
- }
- }
- /* Add a new value
- * See if dictionary needs to grow */
- if (d->n == d->size) {
- /* Reached maximum size: reallocate dictionary */
- d->val = (char **) mem_double(d->val, d->size * sizeof(char *));
- d->key = (char **) mem_double(d->key, d->size * sizeof(char *));
- d->hash = (unsigned int *)
- mem_double(d->hash, d->size * sizeof(unsigned));
- if ((d->val == NULL) || (d->key == NULL) || (d->hash == NULL))
- /* Cannot grow dictionary */
- return -1;
- /* Double size */
- d->size *= 2;
- }
- /* Insert key in the first empty slot */
- for (i = 0; i < d->size; i++) {
- if (d->key[i] == NULL) {
- /* Add key here */
- break;
- }
- }
- /* Copy key */
- d->key[i] = strdup(key);
- d->val[i] = val ? strdup(val) : NULL;
- d->hash[i] = hash;
- d->n ++;
- return 0;
- }
- void dictionary_unset(dictionary *d, char *key)
- {
- unsigned hash;
- int i;
- if (key == NULL)
- return;
- hash = dictionary_hash(key);
- for (i = 0; i < d->size; i++) {
- if (d->key[i] == NULL)
- continue;
- /* Compare hash */
- if (hash == d->hash[i]) {
- /* Compare string, to avoid hash collisions */
- if (!strcmp(key, d->key[i])) {
- /* Found key */
- break;
- }
- }
- }
- if (i >= d->size)
- /* Key not found */
- return;
- free(d->key[i]);
- d->key[i] = NULL;
- if (d->val[i]!=NULL) {
- free(d->val[i]);
- d->val[i] = NULL;
- }
- d->hash[i] = 0;
- d->n --;
- return;
- }
- void dictionary_dump(dictionary *d, FILE *out)
- {
- int i;
- if (d == NULL || out == NULL)
- return;
- if (d->n < 1) {
- fprintf(out, "empty dictionary\n");
- return;
- }
- for (i = 0; i < d->size; i++) {
- if (d->key[i]) {
- fprintf(out, "%20s\t[%s]\n",
- d->key[i],
- d->val[i] ? d->val[i] : "UNDEF");
- }
- }
- return;
- }
- /** @}
- */
|