thash.h 4.9 KB
Newer Older
H
Haojun Liao 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 * Copyright (c) 2019 TAOS Data, Inc. <jhtao@taosdata.com>
 *
 * This program is free software: you can use, redistribute, and/or modify
 * it under the terms of the GNU Affero General Public License, version 3
 * or later ("AGPL"), as published by the Free Software Foundation.
 *
 * 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.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

S
hash  
Shengliang Guan 已提交
16 17 18 19 20
#ifndef _TD_UTIL_HASH_H_
#define _TD_UTIL_HASH_H_

#include "tarray.h"
#include "tlockfree.h"
H
Haojun Liao 已提交
21 22 23 24 25 26

#ifdef __cplusplus
extern "C" {
#endif

typedef uint32_t (*_hash_fn_t)(const char *, uint32_t);
S
hash  
Shengliang Guan 已提交
27
typedef int32_t (*_equal_fn_t)(const void *, const void *, size_t len);
H
Haojun Liao 已提交
28 29 30
typedef void (*_hash_before_fn_t)(void *);
typedef void (*_hash_free_fn_t)(void *);

D
dapan1121 已提交
31 32
#define HASH_NODE_EXIST(code) (code == -2)

H
Haojun Liao 已提交
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
/**
 * murmur hash algorithm
 * @key  usually string
 * @len  key length
 * @seed hash seed
 * @out  an int32 value
 */
uint32_t MurmurHash3_32(const char *key, uint32_t len);

/**
 *
 * @param key
 * @param len
 * @return
 */
uint32_t taosIntHash_32(const char *key, uint32_t len);
uint32_t taosIntHash_64(const char *key, uint32_t len);

_hash_fn_t taosGetDefaultHashFunction(int32_t type);

D
dapan1121 已提交
53 54
_equal_fn_t taosGetDefaultEqualFunction(int32_t type);

H
Haojun Liao 已提交
55 56
typedef struct SHashNode {
  struct SHashNode *next;
S
hash  
Shengliang Guan 已提交
57 58 59
  uint32_t          hashVal;  // the hash value of key
  uint32_t          dataLen;  // length of data
  uint32_t          keyLen;   // length of the key
H
Haojun Liao 已提交
60
  uint16_t          refCount; // reference count
S
hash  
Shengliang Guan 已提交
61
  int8_t            removed;  // flag to indicate removed
H
Haojun Liao 已提交
62 63 64 65
  char              data[];
} SHashNode;

typedef enum SHashLockTypeE {
S
hash  
Shengliang Guan 已提交
66 67
  HASH_NO_LOCK = 0,
  HASH_ENTRY_LOCK = 1,
H
Haojun Liao 已提交
68 69
} SHashLockTypeE;

H
Haojun Liao 已提交
70
typedef struct SHashObj SHashObj;
H
Haojun Liao 已提交
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117

/**
 * init the hash table
 *
 * @param capacity    initial capacity of the hash table
 * @param fn          hash function to generate the hash value
 * @param threadsafe  thread safe or not
 * @return
 */
SHashObj *taosHashInit(size_t capacity, _hash_fn_t fn, bool update, SHashLockTypeE type);

/**
 * return the size of hash table
 * @param pHashObj
 * @return
 */
int32_t taosHashGetSize(const SHashObj *pHashObj);

/**
 * put element into hash table, if the element with the same key exists, update it
 * @param pHashObj
 * @param key
 * @param keyLen
 * @param data
 * @param size
 * @return
 */
int32_t taosHashPut(SHashObj *pHashObj, const void *key, size_t keyLen, void *data, size_t size);

/**
 * return the payload data with the specified key
 *
 * @param pHashObj
 * @param key
 * @param keyLen
 * @return
 */
void *taosHashGet(SHashObj *pHashObj, const void *key, size_t keyLen);

/**
 * Clone the result to destination buffer
 * @param pHashObj
 * @param key
 * @param keyLen
 * @param destBuf
 * @return
 */
H
Haojun Liao 已提交
118
int32_t taosHashGetDup(SHashObj *pHashObj, const void *key, size_t keyLen, void *destBuf);
H
Haojun Liao 已提交
119

D
dapan1121 已提交
120
/**
H
Haojun Liao 已提交
121
 *
D
dapan1121 已提交
122 123 124 125
 * @param pHashObj
 * @param key
 * @param keyLen
 * @param destBuf
H
Haojun Liao 已提交
126
 * @param size
D
dapan1121 已提交
127 128
 * @return
 */
H
Haojun Liao 已提交
129
int32_t taosHashGetDup_m(SHashObj* pHashObj, const void* key, size_t keyLen, void** destBuf, int32_t* size);
D
dapan1121 已提交
130

H
Haojun Liao 已提交
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
/**
 * remove item with the specified key
 * @param pHashObj
 * @param key
 * @param keyLen
 */
int32_t taosHashRemove(SHashObj *pHashObj, const void *key, size_t keyLen);

/**
 * Clear the hash table.
 * @param pHashObj
 */
void taosHashClear(SHashObj *pHashObj);

/**
 * Clean up hash table and release all allocated resources.
 * @param handle
 */
void taosHashCleanup(SHashObj *pHashObj);

/**
 * Get the max overflow link list length
 * @param pHashObj
 * @return
 */
int32_t taosHashGetMaxOverflowLinkLength(const SHashObj *pHashObj);

/**
 * Get the hash table size
 * @param pHashObj
 * @return
 */
size_t taosHashGetMemSize(const SHashObj *pHashObj);

/**
 * Create the hash table iterator
 * @param pHashObj
 * @param p
 * @return
 */
void *taosHashIterate(SHashObj *pHashObj, void *p);

/**
 * Cancel the hash table iterator
 * @param pHashObj
 * @param p
 */
S
hash  
Shengliang Guan 已提交
178
void taosHashCancelIterate(SHashObj *pHashObj, void *p);
H
Haojun Liao 已提交
179

H
Haojun Liao 已提交
180 181 182 183 184 185 186
 /**
  * Get the corresponding key information for a given data in hash table
  * @param data
  * @param keyLen
  * @return
  */
void *taosHashGetKey(void *data, size_t* keyLen);
L
Liu Jicong 已提交
187

D
dapan1121 已提交
188 189 190 191 192 193 194 195
/**
 * return the payload data with the specified key(reference number added)
 *
 * @param pHashObj
 * @param key
 * @param keyLen
 * @return
 */
S
hash  
Shengliang Guan 已提交
196
void *taosHashAcquire(SHashObj *pHashObj, const void *key, size_t keyLen);
D
dapan1121 已提交
197 198 199 200 201 202 203 204 205 206

/**
 * release the prevous acquired obj
 *
 * @param pHashObj
 * @param data
 * @return
 */
void taosHashRelease(SHashObj *pHashObj, void *p);

H
Haojun Liao 已提交
207 208 209 210 211
/**
 *
 * @param pHashObj
 * @param fp
 */
D
dapan1121 已提交
212 213
void taosHashSetEqualFp(SHashObj *pHashObj, _equal_fn_t fp);

H
Haojun Liao 已提交
214 215 216 217 218 219 220
/**
 *
 * @param pHashObj
 * @param fp
 */
void taosHashSetFreeFp(SHashObj *pHashObj, _hash_free_fn_t fp);

H
Haojun Liao 已提交
221 222 223 224
#ifdef __cplusplus
}
#endif

S
hash  
Shengliang Guan 已提交
225
#endif  // _TD_UTIL_HASH_H_