open5gs/lib/core/ogs-hash.h

70 lines
2.2 KiB
C

/*
* Copyright (C) 2019 by Sukchan Lee <acetcom@gmail.com>
*
* This file is part of Open5GS.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#if !defined(OGS_CORE_INSIDE) && !defined(OGS_CORE_COMPILATION)
#error "This header cannot be included directly."
#endif
#ifndef OGS_HASH_H
#define OGS_HASH_H
#ifdef __cplusplus
extern "C" {
#endif
#define OGS_HASH_KEY_STRING (-1)
typedef struct ogs_hash_t ogs_hash_t;
typedef struct ogs_hash_index_t ogs_hash_index_t;
typedef unsigned int (*ogs_hashfunc_t)(const char *key, int *klen);
unsigned int ogs_hashfunc_default(const char *key, int *klen);
ogs_hash_t *ogs_hash_make(void);
ogs_hash_t *ogs_hash_make_custom(ogs_hashfunc_t ogs_hash_func);
void ogs_hash_destroy(ogs_hash_t *ht);
void ogs_hash_set(ogs_hash_t *ht, const void *key, int klen, const void *val);
void *ogs_hash_get(ogs_hash_t *ht, const void *key, int klen);
void *ogs_hash_get_or_set(ogs_hash_t *ht,
const void *key, int klen, const void *val);
ogs_hash_index_t *ogs_hash_first(ogs_hash_t *ht);
ogs_hash_index_t *ogs_hash_next(ogs_hash_index_t *hi);
void ogs_hash_this(ogs_hash_index_t *hi,
const void **key, int *klen, void **val);
const void* ogs_hash_this_key(ogs_hash_index_t *hi);
int ogs_hash_this_key_len(ogs_hash_index_t *hi);
void* ogs_hash_this_val(ogs_hash_index_t *hi);
unsigned int ogs_hash_count(ogs_hash_t *ht);
void ogs_hash_clear(ogs_hash_t *ht);
typedef int (ogs_hash_do_callback_fn_t)(
void *rec, const void *key, int klen, const void *value);
int ogs_hash_do(ogs_hash_do_callback_fn_t *comp,
void *rec, const ogs_hash_t *ht);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif /* OGS_HASH_H */