/usr/include/sphde/sasindex.h is in libsphde-dev 1.3.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 | /*
* Copyright (c) 2005-2014 IBM Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation, Steven Munroe - initial API and implementation
*/
#ifndef __SAS_INDEX_H
#define __SAS_INDEX_H
#include "sasindexkey.h"
#include "sasindexnode.h"
/*!
* \file sasindex.h
* \brief Shared Address Space B-tree based on binary values including
* virtual addresses.
*
* Allocate SAS block storage and manage it as a B-tree data structure
* using SASIndexKey_t struct as keys which are associated address
* value. This provides "map" (or association) between a binary value
* and an arbitrary address (an block or SPH object in SAS storage).
* One expected usage is to provide the reverse mapping from the address
* of a SAS block or SPH object back to its human readable label stored
* in a SASStringBTree_t. This is in fact the mechanism used by the
* SPHContext_t implementation.
*
* The Index B-tree keeps the binary key data sorted and allows
* search/insert/delete in logarithmic time. The B-Tree is organized
* into page-size nodes to improve storage locality for search and
* minimize paging when very large B-Trees are needed.
*
* A new Index can be constructed using the functions ::SASIndexCreate,
* ::SASIndexExpandCreate, or ::SASIndexCreatePageSize. The
* functions differs for the options provides. A SAS block can be initialized
* as a SBT by using the function ::SASIndexInit.
*
* \code
* SASIndex_t indexBTree;
* SASIndexKey_t mykey;
* char *myorigdata, *myassocdata;
*
* indexBTree = SASIndexCreate (blockSize);
* if (indexBTree)
* { // Use index to associate addresses of myassocdata with myorigdata
* SASIndexKeyInitRef(&mykey, myorigdata);
* rc = SASIndexPut (indexBTree, &mykey, myassocdata);
* if (rc)
* {
* printf("Associated @%p with @%p in BTree@%p",
* myassocdata, myorigdata, stringBTree);
* }
* }
* \endcode
*
* The helper functions ::SASIndexPut, ::SASIndexReplace, and
* ::SASIndexRemove can be used to insert, replace and remove a
* string/pointer tuple from SBT. Others useful functions are
* ::SASIndexContainsKey, which returns if a key exists; and
* ::SASIndexGet, which returns the value of a key.
*
* The enumeration API from sasindexenum.h can be use to iterate
* over the (in whole or part) of contents of BTree in key order.
*
* The functions above apply SASLock and SASUnlock around each Index
* operation to insure consistency of the Index.
*
* If at process needs exclusive access or needs to scan or populate an
* Index quickly, the application can SASLock the SASIndex_t, then use
* the *_nolock forms of the function above for faster access.
* \code
* SASIndex_t indexBTree;
* SASIndexEnum_t senum;
* unsigned long long *keyref;
*
* SASLock (indexBTree, SasUserLock__READ);
* senum = SASIndexEnumCreate (index);
* if (!senum)
* {
* printf ("SASIndexEnumCreate (%p) failed", index);
* return 1;
* }
*
* while (SASIndexEnumHasMore (senum))
* {
* keyref = (unsigned long long *) SASIndexEnumNext_nolock (senum);
* if (keyref)
* {
* // process reference value associated with next enum
* }
* }
* SASUnlock (indexBTree);
* \endcode
*
* Finally, a created SAS binary B-Tree \a SASIndex_t can be destroy
* with ::SASIndexDestroy.
*/
/*!
* \brief Handle to an instance of binary index B-tree.
*
* The type is SAS_RUNTIME_INDEX
*/
typedef void *SASIndex_t;
#ifdef __cplusplus
#define __C__ "C"
#else
#define __C__
#endif
/*!
* \brief Create a fixed SAS B-Tree of block_size size capacity.
*
* Create and initialize a B-Tree. The storage block must be power of two in
* size and the SAS type returned is SAS_RUNTIME_STRINGBTREE. The internal
* page size used is the default one defined in sasalloc.h (4096).
*
* @param block_size Size of the B-Tree to create.
* @return A handle to created SASStringBtree_t or 0 if creation fails.
*/
extern __C__ SASIndex_t
SASIndexFixedCreate (block_size_t block_size);
/*!
* \brief Internal function that creates new block of B-Tree nodes for
* an expanding SAS B-Tree \a btree.
*
* Create a block and initialize it to provide additional B-Tree node
* space to an existing expanding SAS B-Tree \a btree.
* This block is added the internal block list of the B-Tree.
*
* @param btree The SAS B-Tree to be expanded by one block.
* @return A new SASStringBtree_t handle or 0 if the block allocate or
* initialization fails.
*/
extern __C__ SASIndex_t
SASIndexExpandCreate (SASIndex_t btree);
/*!
* \brief Create a new expanding SAS B-Tree with \a heap_size size
* and \a page_size node size.
*
* Similar to ::SASIndexCreate but with additional option to set the
* internal node page size.
*
* @param block_size Size of the B-Tree to create.
* @param page_size Size of the internal node pages.
* @return A handle to created SASCompoundHeap_t or 0 if creation fails.
*/
extern __C__ SASIndex_t
SASIndexCreatePageSize (block_size_t block_size, block_size_t page_size);
/*!
* \brief Create a new expanding SAS B-Tree with initial \a heap_size
* size and default page_size for nodes.
*
* Create and initialize a B-Tree. The storage block must be power of two in
* size and SAS type returned is SAS_RUNTIME_INDEX. The internal page
* size used is the default one defined in sasalloc.h (4096).
*
* @param block_size Size of the B-Tree to create.
* @return A handle to created SASIndex_t or 0 if creation fails.
*/
extern __C__ SASIndex_t
SASIndexCreate (block_size_t block_size);
/*!
* \brief Destroy the SAS B-Tree \a btree.
*
* The type must be SAS_RUNTIME_INDEX. Destroy holds an exclusive
* write lock while clearing the control blocks and freeing the SAS block
* (or blocks for a expanding B-Tree).
*
* @param btree Handle of the SASIndex_t to be destroyed.
*/
extern __C__ void
SASIndexDestroy (SASIndex_t btree);
/*!
* \brief Return the number or insert/replace/remove operations performed on
* \a btree.
*
* The sas_type_t must be SAS_RUNTIME_INDEX. The function holds a read
* lock over B-Tree \a btree.
* An initialized SAS B-Tree starts with mod count 1 and it is incremented
* each time a insert/replace/remove operation is performed.
*
* @param btree Handle to the SASIndex_t.
* @return The number of insert/replace/remove operations performed on
* \a btree.
*/
extern __C__ long
SASIndexGetModCount (SASIndex_t btree);
/*!
* \brief Return the number or insert/replace/remove operations performed on
* \a btree.
*
* The sas_type_t must be SAS_RUNTIME_INDEX.
* An initialized SAS B-Tree starts with mod count 1 and it is incremented
* each time a insert/replace/remove operation is performed.
*
* This nolock form should only be used when the referenced SASIndex_t
* is known to be locked by the application or contained within a
* larger structure with a controlling lock.
*
* @param btree Handle to the SASIndex_t.
* @return The number of insert/replace/remove operations performed on
* \a btree.
*/
extern __C__ long
SASIndexGetModCount_nolock (SASIndex_t btree);
/*!
* \brief Return the maximum key string from \a btree.
*
* The sas_type_t must be SAS_RUNTIME_INDEX. The function holds a read
* lock over B-Tree \a btree.
* The maximum key is the right most entry of the right most node.
*
* \note this value it stored in the header of the SASIndex_t
* initial block and should never be modified by the application.
*
* @param btree Handle to the SASIndex_t.
* @return handle to maximum SASIndexKey_t from B-Tree \a btree or 0 if
* the B-Tree does not have any key or if an error occurs.
*/
extern __C__ SASIndexKey_t *
SASIndexGetMaxKey (SASIndex_t btree);
/*!
* \brief Return the maximum key string from \a btree.
*
* The sas_type_t must be SAS_RUNTIME_INDEX.
* The maximum key is the right most entry of the right most node.
*
* \note this value it stored in the header of the SASIndex_t
* initial block and should never be modified by the application.
*
* This nolock form should only be used when the referenced SASIndex_t
* is known to be locked by the application or contained within a
* larger structure with a controlling lock.
*
* @param btree Handle to the SASIndex_t.
* @return handle to maximum SASIndexKey_t from B-Tree \a btree or 0 if
* the B-Tree does not have any key or if an error occurs.
*/
extern __C__ SASIndexKey_t *
SASIndexGetMaxKey_nolock (SASIndex_t btree);
/*!
* \brief Return the minimum key string from \a btree.
*
* The sas_type_t must be SAS_RUNTIME_INDEX. The function holds a read
* lock over B-Tree \a btree.
* The minimum key is the left most entry of the left most node.
*
* \note this value it stored in the header of the SASIndex_t
* initial block and should never be modified by the application.
*
* @param btree Handle to the SASIndex_t.
* @return handle to maximum SASIndexKey_t from B-Tree \a btree or 0 if
* the B-Tree does not have any key or if an error occurs.
*/
extern __C__ SASIndexKey_t *
SASIndexGetMinKey (SASIndex_t btree);
/*!
* \brief Return the minimum key string from \a btree.
*
* The sas_type_t must be SAS_RUNTIME_INDEX.
* The minimum key is the left most entry of the left most node.
*
* This nolock form should only be used when the referenced SASIndex_t
* is known to be locked by the application or contained within a
* larger structure with a controlling lock.
*
* \note this value it stored in the header of the SASIndex_t
* initial block and should never be modified by the application.
*
* @param btree Handle to the SASIndex_t.
* @return handle to maximum SASIndexKey_t from B-Tree \a btree or 0 if
* the B-Tree does not have any key or if an error occurs.
*/
extern __C__ SASIndexKey_t *
SASIndexGetMinKey_nolock (SASIndex_t btree);
/*!
* \brief Return true if the SAS B-Tree \a btree contains the key \a key.
*
* The sas_type_t must be SAS_RUNTIME_INDEX. The function holds a
* read lock over B-Tree \a btree.
* This function searches the B-Tree for a matching key and returns true if found.
*
* @param btree Handle to the SASIndex_t.
* @param key Null terminated key string to search.
* @return 1 if the key is within \a btree or 0 otherwise.
*/
extern __C__ int
SASIndexContainsKey (SASIndex_t btree, SASIndexKey_t * key);
/*!
* \brief Return true if the SAS B-Tree \a btree contains the key \a key.
*
* The sas_type_t must be SAS_RUNTIME_INDEX.
* This function searches the B-Tree for a matching key and returns
* true if found.
*
* This nolock form should only be used when the referenced SASIndex_t
* is known to be locked by the application or contained within a
* larger structure with a controlling lock.
*
* @param btree Handle to the SASIndex_t.
* @param key Null terminated key string to search.
* @return 1 if the key is within \a btree or 0 otherwise.
*/
extern __C__ int
SASIndexContainsKey_nolock (SASIndex_t btree, SASIndexKey_t * key);
/*!
* \brief Return the memory address value associated with \a key in
* SAS B-Tree \a btree.
*
* The sas_type_t must be SAS_RUNTIME_INDEX. The function holds a read
* lock over B-Tree \a btree.
* This function searches the B-Tree for a matching key and if found,
* returns the associated memory address value.
*
* @param btree Handle to the SASIndex_t.
* @param key handle to maximum SASIndexKey_t key to search.
* @return The associated memory address with \a key or 0 if the B-Tree \a
* btree does not contain the key or if an error occurs.
*/
extern __C__ void *
SASIndexGet (SASIndex_t btree, SASIndexKey_t * key);
/*!
* \brief Return the memory address value associated with \a key in
* SAS B-Tree \a btree.
*
* The sas_type_t must be SAS_RUNTIME_INDEX.
* This function searches the B-Tree for a matching key and if found,
* returns the associated memory address value.
*
* This nolock form should only be used when the referenced SASIndex_t
* is known to be locked by the application or contained within a
* larger structure with a controlling lock.
*
* @param btree Handle to the SASIndex_t.
* @param key handle to maximum SASIndexKey_t key to search.
* @return The associated memory address with \a key or 0 if the B-Tree \a
* btree does not contain the key or if an error occurs.
*/
extern __C__ void *
SASIndexGet_nolock (SASIndex_t btree, SASIndexKey_t * key);
/*!
* \brief Return true if the SAS B-Tree \a btree is empty.
*
* The sas_type_t must be SAS_RUNTIME_INDEX. The function holds a read
* lock over B-Tree \a btree.
*
* @param btree Handle to the SASIndex_t.
* @return 1 if the B-Tree is not empty or 0 otherwise.
*/
extern __C__ int
SASIndexIsEmpty (SASIndex_t btree);
/*!
* \brief Return true if the SAS B-Tree \a btree is empty.
*
* The sas_type_t must be SAS_RUNTIME_INDEX.
*
* This nolock form should only be used when the referenced SASIndex_t
* is known to be locked by the application or contained within a
* larger structure with a controlling lock.
*
* @param btree Handle to the SASIndex_t.
* @return 1 if the B-Tree is not empty or 0 otherwise.
*/
extern __C__ int
SASIndexIsEmpty_nolock (SASIndex_t btree);
/*!
* \brief Add a new element \a value with key \a key in the SAS B-Tree
* \a btree.
*
* The sas_type_t must be SAS_RUNTIME_INDEX. The function holds a
* write lock over B-Tree \a btree.
* This function inserts the key and associated memory address value
* into the B-Tree.
* This B-Tree implementation does not allow duplicated key values.
*
* @param btree Handle to the SASIndex_t.
* @param key Key to use as index for the value.
* @param value Memory address to insert in the B-Tree.
* @return 1 if the operation succeeds or 0 otherwise.
* For example if the key already exist in this B-Tree.
*/
extern __C__ int
SASIndexPut (SASIndex_t btree, SASIndexKey_t * key, void *value);
/*!
* \brief Add a new element \a value with key \a key in the SAS B-Tree
* \a btree.
*
* The sas_type_t must be SAS_RUNTIME_INDEX.
* This function inserts the key and associated memory address value
* into the B-Tree.
* This B-Tree implementation does not allow duplicated key values.
*
* This nolock form should only be used when the referenced SASIndex_t
* is known to be locked by the application or contained within a
* larger structure with a controlling lock.
*
* @param btree Handle to the SASIndex_t.
* @param key Key to use as index for the value.
* @param value Memory address to insert in the B-Tree.
* @return 1 if the operation succeeds or 0 otherwise.
* For example if the key already exist in this B-Tree.
*/
extern __C__ int
SASIndexPut_nolock (SASIndex_t btree, SASIndexKey_t * key, void *value);
/*!
* \brief Replace the associated value of the element with key \a key
* in SAS B-Tree \a btree with the value \a value.
*
* The sas_type_t must be SAS_RUNTIME_INDEX. The function holds a
* write lock over B-Tree \a btree.
* This function searches the B-Tree for a matching key and if found,
* replaces the associated memory address value with \a value, and
* returns the previous associated value.
*
* @param btree Handle to the SASIndex_t.
* @param key Key to use as index for the value.
* @param value Memory address to replace in the B-Tree.
* @return The address of the previous associated value for the
* matching key, or 0 if an error occurs.
*/
extern __C__ void *
SASIndexReplace (SASIndex_t btree, SASIndexKey_t * key, void *value);
/*!
* \brief Replace the associated value of the element with key \a key
* in SAS B-Tree \a btree with the value \a value.
*
* The sas_type_t must be SAS_RUNTIME_INDEX.
* This function searches the B-Tree for a matching key and if found,
* replaces the associated memory address value with \a value, and
* returns the previous associated value.
*
* This nolock form should only be used when the referenced SASIndex_t
* is known to be locked by the application or contained within a
* larger structure with a controlling lock.
*
* @param btree Handle to the SASIndex_t.
* @param key Key to use as index for the value.
* @param value Memory address to replace in the B-Tree.
* @return The address of the previous associated value for the
* matching key, or 0 if an error occurs.
*/
extern __C__ void *
SASIndexReplace_nolock (SASIndex_t btree, SASIndexKey_t * key, void *value);
/*!
* \brief Remove the key \a key and its associated value from SAS B-Tree \a btree.
*
* The sas_type_t must be SAS_RUNTIME_INDEX. The function holds a write
* lock over B-Tree \a btree.
* This function searches the B-Tree for a matching key and if found,
* removes the key and associates value from this B-Tree.
*
* \note removing the key and associated value from the B-Tree does not
* remove or alter the data at that memory address. It only removes the
* associated between the and key and the address from this B-Tree.
*
* @param btree Handle to the SASIndex_t.
* @param key Key value to be removed from this B-Tree.
* @return The address of the previous item or 0 if an error occurs.
*/
extern __C__ void *
SASIndexRemove (SASIndex_t btree, SASIndexKey_t * key);
/*!
* \brief Remove the key \a key and its associated value from SAS B-Tree \a btree.
*
* The sas_type_t must be SAS_RUNTIME_INDEX.
* This function searches the B-Tree for a matching key and if found,
* removes the key and associates value from this B-Tree.
*
* This nolock form should only be used when the referenced SASIndex_t
* is known to be locked by the application or contained within a
* larger structure with a controlling lock.
*
* \note removing the key and associated value from the B-Tree does not
* remove or alter the data at that memory address. It only removes the
* associated between the and key and the address from this B-Tree.
*
* @param btree Handle to the SASIndex_t.
* @param key Key value to be removed from this B-Tree.
* @return The address of the previous item or 0 if an error occurs.
*/
extern __C__ void *
SASIndexRemove_nolock (SASIndex_t btree, SASIndexKey_t * key);
/*!
* \brief Internal function to initialize storage as a B-tree.
*
* An internal function used to initialize the control blocks within
* the specific storage block \a block as a SAS binary index B-tree.
* Both \a block_size and \a page_size must be power of two in
* size and have the same power of two (or better) alignment.
* The SAS type created is SAS_RUNTIME_STRINGBTREE.
*
* @param btree_block Block of allocated SAS storage.
* @param btree_size Size of the B-tree within the block.
* @param page_size Size of page size to use.
* @param expanding boolean indicates if the B-tree is expand or fixed.
* @return A handle to the initialized SASIndex_t or 0 if an error
* occurs.
*/
extern __C__ SASIndex_t
SASIndexInit (void *btree_block, block_size_t btree_size,
block_size_t page_size, int expanding);
/*!
* \brief Return the page size used for node allocation for \a btree.
*
* The sas_type_t must be SAS_RUNTIME_INDEX.
*
* @param btree Handle the to SASIndex_t.
* @return The page size value in bytes.
*/
extern __C__ block_size_t
SASIndexAllocSize (SASIndex_t btree);
/*!
* \brief Return the total available node free space for \a btree.
*
* The sas_type_t must be SAS_RUNTIME_INDEX. The function holds a write
* lock while calculating the total node free space from B-Tree.
*
* @param btree Handle to the SASIndex_t.
* @return The total available free node space in bytes.
*/
extern __C__ block_size_t
SASIndexFreeSpace (SASIndex_t btree);
#endif /* __SAS_INDEX_H */
|