tsimplehash.h 3.4 KB
Newer Older
H
Haojun Liao 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/*
 * 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/>.
 */

#ifndef TDENGINE_TSIMPLEHASH_H
#define TDENGINE_TSIMPLEHASH_H

#include "tarray.h"

#ifdef __cplusplus
extern "C" {
#endif

typedef uint32_t (*_hash_fn_t)(const char *, uint32_t);
typedef int32_t (*_equal_fn_t)(const void *, const void *, size_t len);
typedef void (*_hash_free_fn_t)(void *);

C
Cary Xu 已提交
29 30
/**
 * @brief single thread hash
31
 *
C
Cary Xu 已提交
32
 */
H
Haojun Liao 已提交
33 34 35 36 37 38 39 40 41
typedef struct SSHashObj SSHashObj;

/**
 * init the hash table
 *
 * @param capacity    initial capacity of the hash table
 * @param fn          hash function to generate the hash value
 * @return
 */
C
Cary Xu 已提交
42
SSHashObj *tSimpleHashInit(size_t capacity, _hash_fn_t fn);
H
Haojun Liao 已提交
43 44 45 46 47 48 49 50

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

C
Cary Xu 已提交
51 52
int32_t tSimpleHashPrint(const SSHashObj *pHashObj);

H
Haojun Liao 已提交
53
/**
C
Cary Xu 已提交
54
 * @brief put element into hash table, if the element with the same key exists, update it
55 56 57 58 59 60 61
 *
 * @param pHashObj
 * @param key
 * @param keyLen
 * @param data
 * @param dataLen
 * @return int32_t
H
Haojun Liao 已提交
62
 */
C
Cary Xu 已提交
63
int32_t tSimpleHashPut(SSHashObj *pHashObj, const void *key, size_t keyLen, const void *data, size_t dataLen);
H
Haojun Liao 已提交
64 65 66 67 68 69

/**
 * return the payload data with the specified key
 *
 * @param pHashObj
 * @param key
C
Cary Xu 已提交
70
 * @param keyLen
H
Haojun Liao 已提交
71 72
 * @return
 */
C
Cary Xu 已提交
73
void *tSimpleHashGet(SSHashObj *pHashObj, const void *key, size_t keyLen);
H
Haojun Liao 已提交
74 75 76 77 78 79 80

/**
 * remove item with the specified key
 * @param pHashObj
 * @param key
 * @param keyLen
 */
C
Cary Xu 已提交
81
int32_t tSimpleHashRemove(SSHashObj *pHashObj, const void *key, size_t keyLen);
H
Haojun Liao 已提交
82

83 84 85 86 87 88 89 90 91 92 93 94
/**
 * remove item with the specified key during hash iterate
 *
 * @param pHashObj
 * @param key
 * @param keyLen
 * @param pIter
 * @param iter
 * @return int32_t
 */
int32_t tSimpleHashIterateRemove(SSHashObj *pHashObj, const void *key, size_t keyLen, void **pIter, int32_t *iter);

H
Haojun Liao 已提交
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113
/**
 * Clear the hash table.
 * @param pHashObj
 */
void tSimpleHashClear(SSHashObj *pHashObj);

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

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

114 115 116 117 118 119 120 121 122
#pragma pack(push, 4)
typedef struct SHNode{
  struct SHNode *next;
  uint32_t       keyLen : 20;
  uint32_t       dataLen : 12;
  char           data[];
} SHNode;
#pragma pack(pop)

H
Haojun Liao 已提交
123 124 125 126 127 128
/**
 * Get the corresponding key information for a given data in hash table
 * @param data
 * @param keyLen
 * @return
 */
129 130 131 132 133 134
static FORCE_INLINE void *tSimpleHashGetKey(void *data, size_t *keyLen) {
  SHNode *node = (SHNode *)((char *)data - offsetof(SHNode, data));
  if (keyLen) *keyLen = node->keyLen;

  return POINTER_SHIFT(data, node->dataLen);
}
H
Haojun Liao 已提交
135

C
Cary Xu 已提交
136 137 138 139 140 141 142 143 144
/**
 * Create the hash table iterator
 * @param pHashObj
 * @param data
 * @param iter
 * @return void*
 */
void *tSimpleHashIterate(const SSHashObj *pHashObj, void *data, int32_t *iter);

H
Haojun Liao 已提交
145 146 147
#ifdef __cplusplus
}
#endif
C
Cary Xu 已提交
148
#endif  // TDENGINE_TSIMPLEHASH_H