Library Interface

Home | PSI RAS | RCIS | S-Tree Lib

Back ] Up ] Next ]
  1. The S(b)-tree library interface.

The S(b)-tree library implements the algorithms sketched above, and provides means for creating, storing, and performing the basic operations for S(b)-trees. The implementation is written in C++ while a pure C function interface is provided.

To start using the library one needs

  1. to copy a directory named “STree” together with all its contents to your disk;
  2. to create in STree a file, containing the main() function of your test;
  3. the file must include “STree\Include\Inter.h”, and be compiled together with the library “STree.lib” located at “STree\Bin\Debug” or “STree\Bin\Release”.
  1. Keys.
  2. The key type is S_KEY. To create a key a S_CreateKey() function should be used. Given an array of bytes and its length it resets the given key to the specified value.

    void S_CreateKey(
            S_KEY * pResKey,
            S_STRING sParValue,
            S_WEIGHT iParLength
         );

    Note that one can store not only string-valued keys, but keys of an arbitrary structure by providing a conversion of a user defined key to a byte array. E.g. a number can be easily converted to a string using, say, the C run-time library routines itoa(), or ltoa().

    A key weight equals the length of the byte array plus a constant given by S_EMPTY_KEY_WEIGHT.

  3. S_CreateTree().
  4. S_COMPLETION_CODE S_CreateTree(
                        S_TREE_HANDLE * phResTree,
                        S_NAME sParFileName,
                        S_LOCALITY iParB = S_B_DEFAULT,
                        S_ORDER iParQ = S_Q_DEFAULT,
                        S_RANK iParP = S_P_DEFAULT,
                        S_WEIGHT iParMuMax = S_MuMax_DEFAULT
                      );

    To create a S(b)-tree it is necessary to specify the following parameters.
    FileName where the tree will be stored.
    b is the locality parameter. The better packing you need the greater b should be.
    q is the order of the S(b)-tree. It specifies a minimal number of keys in a node, and is intended to provide high branching of the tree internal nodes.
    p is the tree rank. It is the size of the block for storing the tree nodes, meaning that a node weight cannot exceed p.
    MuMax characterizes the key set K, in the way that all keys in K have length not greater than MuMax.

    A node weight is the sum of weights of keys contained in the node plus constant S_EMPTY_NODE_TREE_WEIGHT. In the implementation we need to store some header for each tree node that contains particularly the number of keys in the node, which is necessary for correct reads of the node. Thus, actually the tree rank according to our definitions above is p - S_EMPTY_NODE_TREE_WEIGHT.

    The restrictions for the parameters that provide correctness of the algorithms are as follows:

    1. b >= 1
    2. q >= b; q >= 2
    3. p >= 2q MuMax + S_EMPTY_NODE_TREE_WEIGHT

    S_CreateTree() creates an empty S(b)-tree with the specified parameters, forms the tree handle (S_TREE_HANDLE) in the output parameter phResTree, and returns the completion code (S_COMPLETION_CODE) of the function. The tree handle can be used then in other tree functions for specifying the tree the function is applied to. The completion code is S_CC_OK if the tree was successfully created. Otherwise one of the error codes is returned. Particularly, if the specified tree parameters do not satisfy the restriction a parameter inconsistency error code will be returned.

  5. S_LoadTree().
  6. S_COMPLETION_CODE S_LoadTree(
                        S_TREE_HANDLE * phResTree,
                        S_NAME sParFileName
                      );

    Another way to get access to a S(b)-tree is to load it.

    S_LoadTree() loads the tree located at the specified file, forms the tree handle, and returns a completion code.

  7. S_CloseTree().
  8. S_COMPLETION_CODE S_CloseTree(
                        S_TREE_HANDLE * phParTree
                      );

    S_CloseTree() closes the tree, saves it on disk in the file it was created at or loaded from, and releases the tree handle. A saved tree can be further opened. The released tree handle cannot be used any more for accessing the tree.

  9. S_SaveTree().
  10. S_COMPLETION_CODE S_SaveTree(
                        S_TREE_HANDLE * phParTree
                      );

    S_SaveTree() saves the specified tree on disk in the file it was created at or loaded from, but doesn’t close the tree. After saving the tree remains accessible via the same tree handle. This function can be useful for temporary backups of the tree.

  11. S_Search().
  12. S_COMPLETION_CODE S_Search(
                        S_TREE_HANDLE hParTree,
                        S_KEY * poParKey,
                        S_BOOL * pbIsFound
                      );

    S_Search() performs searching in the specified tree for a specified key. As a result it forms the value of the specified Boolean parameter pbIsFound, which is S_TRUE if the key is found in the tree or S_FALSE otherwise, and returns a completion code.

  13. S_Insert().
  14. S_COMPLETION_CODE S_Insert(
                        S_TREE_HANDLE hParTree,
                        S_KEY * poParKey
                      );

    S_Insert() inserts the given key to the specified tree, a completion code is returned.

  15. S_Delete().
  16. S_COMPLETION_CODE S_Delete(
                        S_TREE_HANDLE hParTree,
                        S_KEY * poParKey
                      );

    S_Delete() deletes the given key from the specified tree, a completion code is returned.

  17. S_First().
  18. S_COMPLETION_CODE S_First(
                        S_TREE_HANDLE hParTree,
                        S_KEY * poResKey,
                        S_BOOL * pbIsFound
                      );

    Since the set of keys stored in a S(B)-tree is linearly ordered, it is natural to be able to obtain the first, the last key in the set, the next, and the previous keys to a given one.

    S_First() looks for the first key in the specified tree, and assigns the result to the output parameter poResKey. The output parameter pbIsFound is either S_TRUE if the tree is not empty, or S_FALSE otherwise.

  19. S_Last().
  20. S_COMPLETION_CODE S_Last(
                        S_TREE_HANDLE hParTree,
                        S_KEY * poResKey,
                        S_BOOL * pbIsFound
                      );

    S_Last() looks for the last key in the specified tree, and assigns the result to the output parameter poResKey. The output parameter pbIsFound is either S_TRUE if the tree is not empty, or S_FALSE otherwise.

  21. S_Next().
  22. S_COMPLETION_CODE S_Next(
                        S_TREE_HANDLE hParTree,
                        S_KEY * poParKey,
                        S_KEY * poResKey,
                        S_BOOL * pbIsFound
                      );

    S_Next() looks in the specified tree for the key next to the given key poParKey, and assigns the result to the output parameter poResKey. The output parameter pbIsFound is either S_TRUE if the next key exists in the tree, or S_FALSE otherwise.

    Note that the given key poParKey shouldn’t necessarily be contained in the tree. To find the next means to find the minimal key in the tree that is greater than the given key.

  23. S_Previous().
  24. S_COMPLETION_CODE S_Previous(
                        S_TREE_HANDLE hParTree,
                        S_KEY * poParKey,
                        S_KEY * poResKey,
                        S_BOOL * pbIsFound
                      );

    S_Previous() looks in the specified tree for the key previous to the given key poParKey, and assigns the result to the output parameter poResKey. The output parameter pbIsFound is either S_TRUE if the previous key exists in the tree, or S_FALSE otherwise.

    Note that the given key poParKey shouldn’t necessarily be contained in the tree. To find the previous means to find the maximal key in the tree that is less than the given key.

  25. S(b)-tree parameters, and properties.
  26. The rest of the functions return the specified tree parameters:

    b, q, p, MuMax

    and the tree intrinsic properties:
    Number of nodes in the tree
    Number of keys in the tree
    The tree total weight
    The tree height
    The tree utilization

    Normally the return value of any of the functions is non-negative. A negative value is returned if the tree handle is invalid.

    Here are the prototypes of the functions:

    int S_TreeLocality(
            S_TREE_HANDLE hParTree
        );

    int S_TreeOrder(
            S_TREE_HANDLE hParTree
        );

    int S_TreeRank(
            S_TREE_HANDLE hParTree
        );

    int S_TreeMaxKeyWeight(
            S_TREE_HANDLE hParTree
        );

    long S_TreeNrNodes(
            S_TREE_HANDLE hParTree
        );

    long S_TreeNrKeys(
            S_TREE_HANDLE hParTree
        );

    long S_TreeWeight(
            S_TREE_HANDLE hParTree
        );

    int S_TreeHeight(
            S_TREE_HANDLE hParTree
        );

    double S_TreeUtilization(
            S_TREE_HANDLE hParTree
        );

  27. The completion codes.
  28. Here is the list of completion codes with their value and short descriptions.

    Completion code name

    Value

    Code description

    S_CC_OK

    0

    Normal completion

    S_CC_INVALID_TREE_HANDLE

    1

    Tree handle is invalid

    S_CC_B_INCONSISTENT

    2

    b = 0

    S_CC_Q_INCONSISTENT

    3

    q < 2

    S_CC_BQ_INCONSISTENT

    4

    b > q

    S_CC_MUMAX_INCONSISTENT

    5

    p < 2q MuMax + S_EMPTY_NODE_TREE_WEIGHT

    S_CC_CANNOT_OPEN_FILE

    6

    File cannot be opened with the specified open modes

    S_CC_FILE_NAME_IS_NOT_SPECIFIED

    7

    A file name is required

    S_CC_READ_FAIL

    8

    Read error

    S_CC_WRITE_FAIL

    9

    Write error

    S_CC_HEAVY_KEY

    10

    The key weight is too large to fit into the tree

    S_CC_WRONG_NODE_TYPE

    11

    Internal error

    S_CC_WRONG_NODE_NUMBER

    12

    Internal error

Last update: 12/24/97 by
Konstantin Shvachko: