2012-12-28 06:03:09 -05:00
|
|
|
#ifndef HEADER_CURL_HASH_H
|
|
|
|
#define HEADER_CURL_HASH_H
|
2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2004-06-24 03:43:48 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2002-01-03 05:22:59 -05:00
|
|
|
* \___|\___/|_| \_\_____|
|
|
|
|
*
|
2017-04-03 04:32:43 -04:00
|
|
|
* Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2002-01-03 05:22:59 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
* This software is licensed as described in the file COPYING, which
|
|
|
|
* you should have received as part of this distribution. The terms
|
2016-02-02 18:19:02 -05:00
|
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
2004-06-24 03:43:48 -04:00
|
|
|
*
|
2002-01-03 05:22:59 -05:00
|
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
* copies of the Software, and permit persons to whom the Software is
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
2002-01-03 05:22:59 -05:00
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
2002-01-03 05:22:59 -05:00
|
|
|
|
2013-01-06 13:06:49 -05:00
|
|
|
#include "curl_setup.h"
|
2002-01-03 05:22:59 -05:00
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "llist.h"
|
2002-01-03 05:22:59 -05:00
|
|
|
|
2007-06-26 17:09:28 -04:00
|
|
|
/* Hash function prototype */
|
2016-11-23 01:53:24 -05:00
|
|
|
typedef size_t (*hash_function) (void *key,
|
2007-06-26 17:09:28 -04:00
|
|
|
size_t key_length,
|
|
|
|
size_t slots_num);
|
|
|
|
|
|
|
|
/*
|
|
|
|
Comparator function prototype. Compares two keys.
|
|
|
|
*/
|
2016-11-23 01:53:24 -05:00
|
|
|
typedef size_t (*comp_function) (void *key1,
|
2007-06-26 17:09:28 -04:00
|
|
|
size_t key1_len,
|
2016-11-23 01:53:24 -05:00
|
|
|
void *key2,
|
2007-06-26 17:09:28 -04:00
|
|
|
size_t key2_len);
|
|
|
|
|
2002-01-03 05:22:59 -05:00
|
|
|
typedef void (*curl_hash_dtor)(void *);
|
|
|
|
|
2005-01-24 19:06:29 -05:00
|
|
|
struct curl_hash {
|
2017-04-03 04:32:43 -04:00
|
|
|
struct curl_llist *table;
|
2007-06-26 17:09:28 -04:00
|
|
|
|
|
|
|
/* Hash function to be used for this hash table */
|
|
|
|
hash_function hash_func;
|
|
|
|
|
|
|
|
/* Comparator function to compare keys */
|
|
|
|
comp_function comp_func;
|
2002-01-03 05:22:59 -05:00
|
|
|
curl_hash_dtor dtor;
|
2005-01-24 19:06:29 -05:00
|
|
|
int slots;
|
|
|
|
size_t size;
|
|
|
|
};
|
2002-01-03 05:22:59 -05:00
|
|
|
|
2005-01-24 19:06:29 -05:00
|
|
|
struct curl_hash_element {
|
2017-04-20 09:10:04 -04:00
|
|
|
struct curl_llist_element list;
|
2002-04-12 19:40:19 -04:00
|
|
|
void *ptr;
|
2002-11-05 05:51:41 -05:00
|
|
|
size_t key_len;
|
2017-03-31 19:12:32 -04:00
|
|
|
char key[1]; /* allocated memory following the struct */
|
2005-01-24 19:06:29 -05:00
|
|
|
};
|
2002-01-03 05:22:59 -05:00
|
|
|
|
2012-12-06 06:12:04 -05:00
|
|
|
struct curl_hash_iterator {
|
|
|
|
struct curl_hash *hash;
|
|
|
|
int slot_index;
|
|
|
|
struct curl_llist_element *current_element;
|
|
|
|
};
|
2002-01-03 05:22:59 -05:00
|
|
|
|
2007-06-26 17:09:28 -04:00
|
|
|
int Curl_hash_init(struct curl_hash *h,
|
|
|
|
int slots,
|
|
|
|
hash_function hfunc,
|
|
|
|
comp_function comparator,
|
|
|
|
curl_hash_dtor dtor);
|
|
|
|
|
|
|
|
void *Curl_hash_add(struct curl_hash *h, void *key, size_t key_len, void *p);
|
|
|
|
int Curl_hash_delete(struct curl_hash *h, void *key, size_t key_len);
|
2016-11-23 01:53:24 -05:00
|
|
|
void *Curl_hash_pick(struct curl_hash *, void *key, size_t key_len);
|
2005-01-24 19:06:29 -05:00
|
|
|
void Curl_hash_apply(struct curl_hash *h, void *user,
|
2002-11-05 05:51:41 -05:00
|
|
|
void (*cb)(void *user, void *ptr));
|
2005-01-24 19:06:29 -05:00
|
|
|
int Curl_hash_count(struct curl_hash *h);
|
2015-05-02 14:49:55 -04:00
|
|
|
void Curl_hash_destroy(struct curl_hash *h);
|
2005-01-24 19:06:29 -05:00
|
|
|
void Curl_hash_clean(struct curl_hash *h);
|
|
|
|
void Curl_hash_clean_with_criterium(struct curl_hash *h, void *user,
|
|
|
|
int (*comp)(void *, void *));
|
2016-11-23 01:53:24 -05:00
|
|
|
size_t Curl_hash_str(void *key, size_t key_length, size_t slots_num);
|
|
|
|
size_t Curl_str_key_compare(void *k1, size_t key1_len, void *k2,
|
2007-06-26 17:09:28 -04:00
|
|
|
size_t key2_len);
|
2012-12-06 06:12:04 -05:00
|
|
|
void Curl_hash_start_iterate(struct curl_hash *hash,
|
|
|
|
struct curl_hash_iterator *iter);
|
|
|
|
struct curl_hash_element *
|
|
|
|
Curl_hash_next_element(struct curl_hash_iterator *iter);
|
|
|
|
|
|
|
|
void Curl_hash_print(struct curl_hash *h,
|
|
|
|
void (*func)(void *));
|
|
|
|
|
|
|
|
|
2012-12-28 06:03:09 -05:00
|
|
|
#endif /* HEADER_CURL_HASH_H */
|