/* zip_hash.c -- hash table string -> uint64 Copyright (C) 2015-2019 Dieter Baron and Thomas Klausner This file is part of libzip, a library to manipulate ZIP archives. The authors can be contacted at <[email protected]> Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The names of the authors may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "zipint.h" #include <stdlib.h> #include <string.h> /* parameter for the string hash function */ #define HASH_MULTIPLIER … #define HASH_START … /* hash table's fill ratio is kept between these by doubling/halfing its size as necessary */ #define HASH_MAX_FILL … #define HASH_MIN_FILL … /* but hash table size is kept between these */ #define HASH_MIN_SIZE … #define HASH_MAX_SIZE … struct zip_hash_entry { … }; zip_hash_entry_t; struct zip_hash { … }; /* free list of entries */ static void free_list(zip_hash_entry_t *entry) { … } /* compute hash of string, full 32 bit value */ static zip_uint32_t hash_string(const zip_uint8_t *name) { … } /* resize hash table; new_size must be a power of 2, can be larger or smaller than current size */ static bool hash_resize(zip_hash_t *hash, zip_uint32_t new_size, zip_error_t *error) { … } static zip_uint32_t size_for_capacity(zip_uint64_t capacity) { … } zip_hash_t * _zip_hash_new(zip_error_t *error) { … } void _zip_hash_free(zip_hash_t *hash) { … } /* insert into hash, return error on existence or memory issues */ bool _zip_hash_add(zip_hash_t *hash, const zip_uint8_t *name, zip_uint64_t index, zip_flags_t flags, zip_error_t *error) { … } /* remove entry from hash, error if not found */ bool _zip_hash_delete(zip_hash_t *hash, const zip_uint8_t *name, zip_error_t *error) { … } /* find value for entry in hash, -1 if not found */ zip_int64_t _zip_hash_lookup(zip_hash_t *hash, const zip_uint8_t *name, zip_flags_t flags, zip_error_t *error) { … } bool _zip_hash_reserve_capacity(zip_hash_t *hash, zip_uint64_t capacity, zip_error_t *error) { … } bool _zip_hash_revert(zip_hash_t *hash, zip_error_t *error) { … }