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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 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 118 119 120 121 122 123 124 125 126 127 128 129 130 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 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
|
#ifndef TARANTOOL_LIB_BITSET_INDEX_H_INCLUDED
#define TARANTOOL_LIB_BITSET_INDEX_H_INCLUDED
/*
* 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.
*
* THIS SOFTWARE IS PROVIDED BY <COPYRIGHT HOLDER> ``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
* <COPYRIGHT HOLDER> OR CONTRIBUTORS 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.
*/
/**
* @file
* @brief bitset_index - a bit index based on @link bitset @endlink.
*
* @section Purpose
*
* bitset_index is an associative container that stores (key,
* value) pairs in a way that is optimized for searching values
* matching a logical expressions on bits of the key. The
* organization structure of bitset_index makes it easy to respond
* to queries like 'return all (key, value) pairs where the key
* has bit i and bit j set'. The implementation supports
* evaluation of arbitrary logical expressions represented in
* Disjunctive Normal Form.
*
* To search over keys in a bitset_index, a logical expression
* needs to be constructed.
* logical expression. The expression can be constructed one time
* and used for multiple queries. A search for an exact match for
* a given key is not what bitset_index is designed for --
* a conventional TREE or HASH index suits this task better.
*
* @section Organization
*
* bitset_index is a compressed bit matrix with dimensions N+1xK,
* where N corresponds to the bit count of the longest key present
* in the index, and K is the maximal value present in the index.
* Each column in the matrix stands for a single bit of the key
* and is represented by a single bitset.
* If there is value k, which corresponding key has bit i set,
* then bitset i+1 will have bit k set.
* For example, if a pair with (key, value) is inserted to the
* index and its key, has 0, 2, 5, 6 bits set then bitsets #1, #3,
* #6, #7 are set at position = pair.value (@link bitset_test
* bitset_test(bitset, pair.value) @endlink is true) and bitsets
* #2, #4, #7 , ... are unset at the position.
*
* bitset_index also uses a special bitset #0 that is set to true
* for each position where a pair with value = position exists in
* an index. This bitset is mostly needed for evaluation
* expressions with binary NOTs.
*
* A consequence of to the above design, is that in a bitset_index
* one can have multiple pairs with same key, but all values in an
* index must be unique.
*
* @section Performance
*
* For a certain kind of tasks bitset_index is more efficient both
* speed- and memory- wise than a binary search tree or a hash
* table.
*
* The complexity of @link bitset_insert @endlink operation is
* mostly equivalent to inserting one value into \a k balanced
* binary search trees, each of size \a m, where \a k is the number of
* set bits in the key and \ m is the number of pairs in the index
* divided by bitset page size.
*
* The complexity of iteration is linear from the number of pairs
* in which the search expression evaluates to true. The
* complexity of an iterator expression does not affect
* iteration performance directly, which is more dependent
* on the number of matching values.
*
* The actual performance heavily depends on the distribution of
* values. If the value space is dense, then internal bitsets are
* also compact and better optimized for iteration.
*
* @section Limitations
*
* Key size is limited only by the available memory.
* bitset_index automatically resizes on 'insert' if a key
* contains more bits than in any key inserted thus far.
*
* Since values are used as a position in bitsets, the actual
* range of values must be in [0..SIZE_MAX) range.
*
* @see bitset.h
* @see expr.h
* @see iterator.h
*/
#include <lib/bitset/bitset.h>
#include <lib/bitset/iterator.h>
#if defined(__cplusplus)
extern "C" {
#endif /* defined(__cplusplus) */
/**
* @brief BitsetIndex
*/
struct bitset_index {
/** @cond false **/
/* Used bitsets */
struct bitset **bitsets;
/* Capacity of bitsets array */
size_t capacity;
/* Memory allocator to use */
void *(*realloc)(void *ptr, size_t size);
/* A buffer used for rollback changes in bitset_insert */
char *rollback_buf;
/** @endcond **/
};
/**
* @brief Construct \a index
* @param index bitset index
* @param realloc memory allocator to use
* @retval 0 on success
* @retval -1 on memory error
*/
int
bitset_index_create(struct bitset_index *index,
void *(*realloc)(void *ptr, size_t size));
/**
* @brief Destruct \a index
* @param index bitset index
*/
void
bitset_index_destroy(struct bitset_index *index);
/**
* @brief Insert (\a key, \a value) pair into \a index.
* Only one pair with a given value can exist in the index.
* If a pair with the same \a value exists, it is updated quietly.
* This method is atomic, i.e. \a index will be in a consistent
* state after a return even in case of error.
*
* @param index object
* @param key key
* @param key_size size of the key
* @param value value
* @retval 0 on success
* @retval -1 on memory error
*/
int
bitset_index_insert(struct bitset_index *index, const void *key, size_t key_size,
size_t value);
/**
* @brief Remove a pair with \a value (*, \a value) from \a index.
* @param index bitset index
* @param value value
*/
void
bitset_index_remove_value(struct bitset_index *index, size_t value);
/**
* @brief Initialize \a expr to iterate over a bitset index.
* The \a expr can be then passed to @link bitset_index_init_iterator @endlink.
*
* 'All' algorithm. Matches all pairs in a index.
*
* @param expr bitset expression
* @retval 0 on success
* @retval -1 on memory error
* @see @link bitset_index_init_iterator @endlink
* @see expr.h
*/
int
bitset_index_expr_all(struct bitset_expr *expr);
/**
* @brief Initialize \a expr to iterate over a bitset index.
* The \a expr can be then passed to @link bitset_index_init_iterator @endlink.
*
* 'Equals' algorithm. Matches all pairs where \a key exactly equals to
* pair.key (\a key == pair.key).
*
* @param expr bitset expression
* @param key key
* @param key_size of \a key (in char, as sizeof returns)
* @retval 0 on success
* @retval -1 on memory error
* @see @link bitset_index_init_iterator @endlink
* @see expr.h
*/
int
bitset_index_expr_equals(struct bitset_expr *expr, const void *key,
size_t key_size);
/**
* @brief Initialize \a expr to iterate over a bitset index.
* The \a expr can be then passed to @link bitset_index_init_iterator @endlink.
*
* 'All-Bits-Set' algorithm. Matches all pairs where all bits from \a key
* are set in pair.key ((\a key & pair.key) == \a key).
*
* @param expr bitset expression
* @retval 0 on success
* @retval -1 on memory error
* @see @link bitset_index_init_iterator @endlink
* @see expr.h
*/
int
bitset_index_expr_all_set(struct bitset_expr *expr, const void *key,
size_t key_size);
/**
* @brief Initialize \a expr to iterate over a bitset index.
* The \a expr can then be passed to @link bitset_index_init_iterator @endlink.
*
* 'Any-Bits-Set' algorithm. Matches all pairs where at least one bit from
* \a key is set in pair.key ((\a key & pair.key) != 0).
*
* @param expr bitset expression
* @retval 0 on success
* @retval -1 on memory error
* @see @link bitset_index_init_iterator @endlink
* @see expr.h
*/
int
bitset_index_expr_any_set(struct bitset_expr *expr, const void *key,
size_t key_size);
/**
* @brief Initialize \a expr to iterate over a bitset index.
* The \a expr can be then passed to @link bitset_index_init_iterator @endlink.
*
* 'All-Bits-Not-Set' algorithm. Matches all pairs in the \a index, where all
* bits from the \a key is not set in pair.key ((\a key & pair.key) == 0).
*
* @param expr bitset expression
* @retval 0 on success
* @retval -1 on memory error
* @see @link bitset_index_init_iterator @endlink
* @see expr.h
*/
int
bitset_index_expr_all_not_set(struct bitset_expr *expr, const void *key,
size_t key_size);
/**
* @brief Initialize \a it using \a expr and bitsets used in \a index.
*
* @param index bitset index
* @param it bitset iterator
* @param expr bitset expression
* @retval 0 on success
* @retval 1 on memory error
*/
int
bitset_index_init_iterator(struct bitset_index *index,
struct bitset_iterator *it,
struct bitset_expr *expr);
/**
* @brief Checks if a (*, \a value) pair exists in \a index
* @param index bitset index
* @param value
* @retval true if \a index contains pair with the \a value
* @retval false otherwise
*/
bool
bitset_index_contains_value(struct bitset_index *index, size_t value);
/**
* @brief Return the number of pairs in \a index.
* @param index bitset index
* @return number of pairs in \a index
*/
inline size_t
bitset_index_size(const struct bitset_index *index)
{
return bitset_cardinality(index->bitsets[0]);
}
#if defined(DEBUG)
void
bitset_index_dump(struct bitset_index *index, int verbose, FILE *stream);
#endif /* defined(DEBUG) */
#if defined(__cplusplus)
} /* extern "C" */
#endif /* defined(__cplusplus) */
#endif /* TARANTOOL_LIB_BITSET_INDEX_H_INCLUDED */
|