Classes | Typedefs | Enumerations | Functions
mkavl.h File Reference
#include <stdlib.h>
#include <stdint.h>
#include <stdbool.h>
#include <string.h>
#include <assert.h>

Go to the source code of this file.

Classes

struct  mkavl_allocator_st_

Typedefs

typedef struct mkavl_tree_st_mkavl_tree_handle
typedef struct mkavl_iterator_st_mkavl_iterator_handle
typedef enum mkavl_rc_e_ mkavl_rc_e
typedef enum mkavl_find_type_e_ mkavl_find_type_e
typedef void *(* mkavl_malloc_fn )(size_t size, void *context)
typedef void(* mkavl_free_fn )(void *ptr, void *context)
typedef struct mkavl_allocator_st_ mkavl_allocator_st
typedef int32_t(* mkavl_compare_fn )(const void *item1, const void *item2, void *context)
typedef mkavl_rc_e(* mkavl_item_fn )(void *item, void *context)
typedef mkavl_rc_e(* mkavl_delete_context_fn )(void *context)
typedef void *(* mkavl_copy_fn )(void *item, void *context)
typedef mkavl_rc_e(* mkavl_walk_cb_fn )(void *item, void *tree_context, void *walk_context, bool *stop_walk)

Enumerations

enum  mkavl_rc_e_ {
  MKAVL_RC_E_INVALID, MKAVL_RC_E_SUCCESS, MKAVL_RC_E_EINVAL, MKAVL_RC_E_ENOMEM,
  MKAVL_RC_E_EOOSYNC, MKAVL_RC_E_MAX
}
enum  mkavl_find_type_e_ {
  MKAVL_FIND_TYPE_E_INVALID, MKAVL_FIND_TYPE_E_EQUAL, MKAVL_FIND_TYPE_E_FIRST = MKAVL_FIND_TYPE_E_EQUAL, MKAVL_FIND_TYPE_E_GT,
  MKAVL_FIND_TYPE_E_LT, MKAVL_FIND_TYPE_E_GE, MKAVL_FIND_TYPE_E_LE, MKAVL_FIND_TYPE_E_MAX
}

Functions

bool mkavl_rc_e_is_notok (mkavl_rc_e rc)
bool mkavl_rc_e_is_ok (mkavl_rc_e rc)
bool mkavl_rc_e_is_valid (mkavl_rc_e rc)
const char * mkavl_rc_e_get_string (mkavl_rc_e rc)
bool mkavl_find_type_e_is_valid (mkavl_find_type_e type)
const char * mkavl_find_type_e_get_string (mkavl_find_type_e type)
mkavl_rc_e mkavl_new (mkavl_tree_handle *tree_h, mkavl_compare_fn *compare_fn_array, size_t compare_fn_array_count, void *context, mkavl_allocator_st *allocator)
void * mkavl_get_tree_context (mkavl_tree_handle tree_h)
mkavl_rc_e mkavl_delete (mkavl_tree_handle *tree_h, mkavl_item_fn item_fn, mkavl_delete_context_fn delete_context_fn)
mkavl_rc_e mkavl_copy (const mkavl_tree_handle source_tree_h, mkavl_tree_handle *new_tree_h, mkavl_copy_fn copy_fn, mkavl_item_fn item_fn, bool use_source_context, void *new_context, mkavl_delete_context_fn delete_context_fn, mkavl_allocator_st *allocator)
mkavl_rc_e mkavl_add (mkavl_tree_handle tree_h, void *item_to_add, void **existing_item)
mkavl_rc_e mkavl_find (mkavl_tree_handle tree_h, mkavl_find_type_e type, size_t key_idx, const void *lookup_item, void **found_item)
mkavl_rc_e mkavl_remove (mkavl_tree_handle tree_h, const void *item_to_remove, void **found_item)
mkavl_rc_e mkavl_add_key_idx (mkavl_tree_handle tree_h, size_t key_idx, void *item_to_add, void **existing_item)
mkavl_rc_e mkavl_remove_key_idx (mkavl_tree_handle tree_h, size_t key_idx, const void *item_to_remove, void **found_item)
uint32_t mkavl_count (mkavl_tree_handle tree_h)
mkavl_rc_e mkavl_walk (mkavl_tree_handle tree_h, mkavl_walk_cb_fn cb_fn, void *walk_context)
mkavl_rc_e mkavl_iter_new (mkavl_iterator_handle *iterator_h, mkavl_tree_handle tree_h, size_t key_idx)
mkavl_rc_e mkavl_iter_delete (mkavl_iterator_handle *iterator_h)
mkavl_rc_e mkavl_iter_first (mkavl_iterator_handle iterator_h, void **item)
mkavl_rc_e mkavl_iter_last (mkavl_iterator_handle iterator_h, void **item)
mkavl_rc_e mkavl_iter_find (mkavl_iterator_handle iterator_h, void *lookup_item, void **found_item)
mkavl_rc_e mkavl_iter_next (mkavl_iterator_handle iterator_h, void **item)
mkavl_rc_e mkavl_iter_prev (mkavl_iterator_handle iterator_h, void **item)
mkavl_rc_e mkavl_iter_cur (mkavl_iterator_handle iterator_h, void **item)

Detailed Description

Author:
Matt Miller <matt@matthewjmiller.net>

LICENSE

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version.

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. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.

DESCRIPTION

This is the public interface for the multi-key AVL interface.

Definition in file mkavl.h.


Typedef Documentation

Specifies the allocator functions for an AVL tree.

typedef int32_t(* mkavl_compare_fn)(const void *item1, const void *item2, void *context)

Prototype for comparing two items. The context is what was passed in when the AVL tree was created.

Returns:
Zero if item1 and item2 are equal, 1 if item1 is greater, and -1 if item2 is greater.

Definition at line 189 of file mkavl.h.

typedef void*(* mkavl_copy_fn)(void *item, void *context)

Prototype for a function that is applied when copying items from an existing tree to a new tree.

Parameters:
itemItem to be copied
contextClient context for the tree
Returns:
A pointer to the item to be placed into the new tree.

Definition at line 222 of file mkavl.h.

typedef mkavl_rc_e(* mkavl_delete_context_fn)(void *context)

Prototype for a function that is a callback to the client to operate on its context when mkavl_delete() is called.

Parameters:
contextThe client context
Returns:
The return code

Definition at line 211 of file mkavl.h.

The type of find for lookups.

typedef void(* mkavl_free_fn)(void *ptr, void *context)

Prototype for freeing items.

Definition at line 169 of file mkavl.h.

typedef mkavl_rc_e(* mkavl_item_fn)(void *item, void *context)

Prototype for a function that is applied to every element for various operations.

Parameters:
itemThe item on which to operate
contextThe client context
Returns:
The return code

Definition at line 201 of file mkavl.h.

Opaque pointer to reference instances of AVL iterators

Definition at line 117 of file mkavl.h.

typedef void*(* mkavl_malloc_fn)(size_t size, void *context)

Prototype for allocating items.

Definition at line 163 of file mkavl.h.

typedef enum mkavl_rc_e_ mkavl_rc_e

Return codes used to indicate whether a function call was successful.

Opaque pointer to reference instances of AVL trees

Definition at line 114 of file mkavl.h.

typedef mkavl_rc_e(* mkavl_walk_cb_fn)(void *item, void *tree_context, void *walk_context, bool *stop_walk)

Prototype for a function applied to items when walking over the entire tree.

Parameters:
itemThe current item on which to operate.
tree_contextThe context for the tree.
walk_contextThe context for the current walk.
stop_walkImpelementor should set to true to stop the walk upon return.

Definition at line 234 of file mkavl.h.


Enumeration Type Documentation

The type of find for lookups.

Enumerator:
MKAVL_FIND_TYPE_E_INVALID 

Invalid type

MKAVL_FIND_TYPE_E_EQUAL 

Find an item equal to

MKAVL_FIND_TYPE_E_FIRST 

First valid find type

MKAVL_FIND_TYPE_E_GT 

Find an item greater than

MKAVL_FIND_TYPE_E_LT 

Find an item less than

MKAVL_FIND_TYPE_E_GE 

Find an item greater than or equal to

MKAVL_FIND_TYPE_E_LE 

Find an item less than or equal to

MKAVL_FIND_TYPE_E_MAX 

Max value for bounds testing

Definition at line 140 of file mkavl.h.

Return codes used to indicate whether a function call was successful.

Enumerator:
MKAVL_RC_E_INVALID 

Invalid return code, should never be used

MKAVL_RC_E_SUCCESS 

Successful return

MKAVL_RC_E_EINVAL 

Function received an invalid input

MKAVL_RC_E_ENOMEM 

Function failed to allocate memory

MKAVL_RC_E_EOOSYNC 

Internal data structures are out of sync

MKAVL_RC_E_MAX 

Max return code for bounds testing

Definition at line 122 of file mkavl.h.


Function Documentation

mkavl_rc_e mkavl_add ( mkavl_tree_handle  tree_h,
void *  item_to_add,
void **  existing_item 
)

Add an item to each AVL tree in the mkavl.

Parameters:
tree_hThe mkavl tree.
item_to_addA pointer to the data to add.
existing_itemIf an existing item is found, it is returned. Otherwise, NULL if the item was not found.
Returns:
The return code

Definition at line 1004 of file mkavl.c.

mkavl_rc_e mkavl_add_key_idx ( mkavl_tree_handle  tree_h,
size_t  key_idx,
void *  item_to_add,
void **  existing_item 
)

Add an item only to a specific AVL tree within the mkavl tree. Note that this must be used very carefully in conjunction with mkavl_remove_key_idx to make sure the mkavl does not become out of sync. In steady state, the mkavl should always have an equal number of data items in each AVL tree. However, if a field changes in an item that affects some keys but not other, these APIs may be used to remove the item with the old values from the affected AVLs, update the values, and then re-add to each AVL tree from which the old item was removed.

See also:
mkavl_remove_key_idx
Parameters:
tree_hThe mkavl tree.
key_idxThe index of the AVL tree to which the item is added.
item_to_addThe item being added.
existing_itemIf an existing item is found, it is returned.
Returns:
The return code

Definition at line 1422 of file mkavl.c.

mkavl_rc_e mkavl_copy ( mkavl_tree_handle  source_tree_h,
mkavl_tree_handle new_tree_h,
mkavl_copy_fn  copy_fn,
mkavl_item_fn  item_fn,
bool  use_source_context,
void *  new_context,
mkavl_delete_context_fn  delete_context_fn,
mkavl_allocator_st allocator 
)

Deep copy a mkavl tree into a new tree.

Parameters:
source_tree_hThe tree from which to copy.
new_tree_hA pointer to the new tree to which the copy will be done.
copy_fnA function that is applied to each item in the source tree before it is copied to the new tree. This is applied once per item regardless of how many AVL trees there are. E.g., this may allocate a deep copy of the data. If NULL, then a shallow copy of the data is copied to the new tree. Note that this function is called with the source tree's context value.
item_fnIf there is an error copying the new tree, this function is applied to all items in the new tree as it is destroyed. E.g., this may be a function to free the data.
use_source_contextIf true, the client context from source_tree_h is used for the new tree. If false, new_context is used for the new tree.
new_contextThe opaque client context to use for the new tree if user_source_context if false.
delete_context_fnUpon an error, this function will be applied to the new_context if use_source_context is false. If use_source_context is true, this is a no-op in the case of an error (will not call on the source tree's context). If NULL, no function is applied. If given, the function will be called even if the client context is NULL.
allocatorThe memory allocation functions to use for the new tree.
Returns:
The return code

Definition at line 862 of file mkavl.c.

uint32_t mkavl_count ( mkavl_tree_handle  tree_h)

Get a count of the total number of items within the tree. Note that this is the steady state account, i.e., broadly, the number of calls to mkavl_add that succeeded minus the number of calls to mkavl_remove that succeeded. If this is called in between calls to mkavl_add_key_idx and mkavl_remove_key_idx, then it is possible for individual AVL trees to have a different count.

See also:
mkavl_add
mkavl_remove
mkavl_add_key_idx
mkavl_remove_key_idx

Definition at line 1502 of file mkavl.c.

mkavl_rc_e mkavl_delete ( mkavl_tree_handle tree_h,
mkavl_item_fn  item_fn,
mkavl_delete_context_fn  delete_context_fn 
)

The destroys the tree that was allocated by mkavl_new. Note that this doesn't actually free the data of the items as that is left to the client. The item_fn parameter can be used for this purpose. Upon return, the tree_h memory is set to NULL. This is O(N lg N) for N items.

See also:
mkavl_new
mkavl_delete_tree
Parameters:
tree_hA pointer the the tree to free.
item_fnThis function is applied to each item after it has been removed from all the AVL trees. This is only called once per item regardless of how many AVL trees there are. E.g., this could be the function to free the memory for the data. If NULL, no function is applied.
delete_context_fnThis function is applied to the tree's opaque client context that was given via mkavl_new(). E.g., this could free the client context if it was a heap memory pointer. If NULL, no function is applied. If given, the function will be called even if the client context is NULL. This function is called after all the items have been deleted and item functions called.
Returns:
The return code

Definition at line 750 of file mkavl.c.

mkavl_rc_e mkavl_find ( mkavl_tree_handle  tree_h,
mkavl_find_type_e  type,
size_t  key_idx,
const void *  lookup_item,
void **  found_item 
)

Find an item in the tree.

Parameters:
tree_hThe tree to search
typeThe type of lookup to do.
key_idxThe AVL tree being searched.
lookup_itemThe item to use as the lookup target.
found_itemThe item found for the lookup.
Returns:
The return code

Definition at line 1275 of file mkavl.c.

const char* mkavl_find_type_e_get_string ( mkavl_find_type_e  type)

Get a string representation of the find type.

Parameters:
typeThe find type
Returns:
A string representation of the return code or "__Invalid__" if an invalid return code is input.

Definition at line 266 of file mkavl.c.

bool mkavl_find_type_e_is_valid ( mkavl_find_type_e  type)

Indicates whether the return code is valid.

Parameters:
typeThe type to check
Returns:
true if the return code is valid.

Definition at line 252 of file mkavl.c.

void* mkavl_get_tree_context ( mkavl_tree_handle  tree_h)

Get the context pointer for the tree.

See also:
mkavl_new
Parameters:
tree_hThe tree whose context to get. This must be a valid, non-NULL tree pointer or else a crash will occur.
Returns:
The tree's context (possibly NULL if that was passed to mkavl_new()).

Definition at line 721 of file mkavl.c.

mkavl_rc_e mkavl_iter_cur ( mkavl_iterator_handle  iterator_h,
void **  item 
)

Get the current item in the iteration.

See also:
mkavl_iter_new
Parameters:
iterator_hThe iterator to use.
itemThe item found.
Returns:
The return code

Definition at line 1780 of file mkavl.c.

mkavl_rc_e mkavl_iter_delete ( mkavl_iterator_handle iterator_h)

Destroy the iterator.

See also:
mkavl_iter_new
Parameters:
iterator_hThe iterator to free. Upon return, this will be set to NULL.
Returns:
The return code

Definition at line 1617 of file mkavl.c.

mkavl_rc_e mkavl_iter_find ( mkavl_iterator_handle  iterator_h,
void *  lookup_item,
void **  found_item 
)

Find an item and update the iterator to that node.

See also:
mkavl_iter_new
Parameters:
iterator_hThe iterator to use.
lookup_itemThe item to find.
found_itemThe item found.
Returns:
The return code

Definition at line 1701 of file mkavl.c.

mkavl_rc_e mkavl_iter_first ( mkavl_iterator_handle  iterator_h,
void **  item 
)

Get the first item in the iteration.

See also:
mkavl_iter_new
Parameters:
iterator_hThe iterator to use.
itemThe item found.
Returns:
The return code

Definition at line 1648 of file mkavl.c.

mkavl_rc_e mkavl_iter_last ( mkavl_iterator_handle  iterator_h,
void **  item 
)

Get the last item in the iteration.

See also:
mkavl_iter_new
Parameters:
iterator_hThe iterator to use.
itemThe item found.
Returns:
The return code

Definition at line 1674 of file mkavl.c.

mkavl_rc_e mkavl_iter_new ( mkavl_iterator_handle iterator_h,
mkavl_tree_handle  tree_h,
size_t  key_idx 
)

Create a new iterator to use.

See also:
mkavl_iter_delete
Parameters:
iterator_hThe pointer to fill in with the new iterator.
tree_hThe tree on which to iterate.
key_idxThe index of the AVL tree on which to iterate.
Returns:
The return code

Definition at line 1565 of file mkavl.c.

mkavl_rc_e mkavl_iter_next ( mkavl_iterator_handle  iterator_h,
void **  item 
)

Get the next item in the iteration and update the iterator to that node.

See also:
mkavl_iter_new
Parameters:
iterator_hThe iterator to use.
itemThe item found.
Returns:
The return code

Definition at line 1730 of file mkavl.c.

mkavl_rc_e mkavl_iter_prev ( mkavl_iterator_handle  iterator_h,
void **  item 
)

Get the previous item in the iteration and update the iterator to that node.

See also:
mkavl_iter_new
Parameters:
iterator_hThe iterator to use.
itemThe item found.
Returns:
The return code

Definition at line 1755 of file mkavl.c.

mkavl_rc_e mkavl_new ( mkavl_tree_handle tree_h,
mkavl_compare_fn compare_fn_array,
size_t  compare_fn_array_count,
void *  context,
mkavl_allocator_st allocator 
)

Create a new mkavl tree composed of AVL trees using the given array of comparison functions.

See also:
mkavl_delete
Parameters:
tree_hA pointer to the memory location for the new tree.
compare_fn_arrayAn array of size compare_fn_array_count of the comparison functions for the mkavl. This allows the same set of data items to be stored in different orders by mulitple keys. A deep copy of the functions is made for the tree_h. There must be at least one function passed in.
compare_fn_array_countThe size of the compare_fn_array.
contextAn opaque context passed back to the client in callbacks.
allocatorThe memory allocation functions to use for the tree, or NULL if the default functions are to be used.
Returns:
The return value

Definition at line 608 of file mkavl.c.

const char* mkavl_rc_e_get_string ( mkavl_rc_e  rc)

Get a string representation of the return code.

Parameters:
rcThe return code
Returns:
A string representation of the return code or "__Invalid__" if an invalid return code is input.

Definition at line 214 of file mkavl.c.

bool mkavl_rc_e_is_notok ( mkavl_rc_e  rc)

Indicates whether the return code is not in error.

Parameters:
rcThe return code to check
Returns:
true if the return code is not in error.

Definition at line 177 of file mkavl.c.

bool mkavl_rc_e_is_ok ( mkavl_rc_e  rc)

Indicates whether the return code is in error.

Parameters:
rcThe return code to check
Returns:
true if the return code is not in error.

Definition at line 189 of file mkavl.c.

bool mkavl_rc_e_is_valid ( mkavl_rc_e  rc)

Indicates whether the return code is valid.

Parameters:
rcThe return code to check
Returns:
true if the return code is valid.

Definition at line 201 of file mkavl.c.

mkavl_rc_e mkavl_remove ( mkavl_tree_handle  tree_h,
const void *  item_to_remove,
void **  found_item 
)

Remove an item from mkavl tree.

Parameters:
tree_hThe tree from which to remove.
item_to_removeThe item being removed.
found_itemIf the item existed, the item that was found and removed.
Returns:
The return code

Definition at line 1352 of file mkavl.c.

mkavl_rc_e mkavl_remove_key_idx ( mkavl_tree_handle  tree_h,
size_t  key_idx,
const void *  item_to_remove,
void **  found_item 
)

Remove an item only from a specific AVL tree within the mkavl tree. Note that this must be used very carefully in conjunction with mkavl_add_key_idx to make sure the mkavl does not become out of sync. In steady state, the mkavl should always have an equal number of data items in each AVL tree. However, if a field changes in an item that affects some keys but not other, these APIs may be used to remove the item with the old values from the affected AVLs, update the values, and then re-add to each AVL tree from which the old item was removed.

See also:
mkavl_add_key_idx
Parameters:
tree_hThe mkavl tree.
key_idxThe index of the AVL tree to which the item is added.
item_to_removeThe item being removed.
found_itemIf the item existed, the item that was found and removed.
Returns:
The return code

Definition at line 1464 of file mkavl.c.

mkavl_rc_e mkavl_walk ( mkavl_tree_handle  tree_h,
mkavl_walk_cb_fn  cb_fn,
void *  walk_context 
)

Walk every node in the tree, calling the given function for each item. There is no guarantee on the order of the walk.

Parameters:
tree_hThe tree to walk.
cb_fnThe callback function to apply to each item.
walk_contextThe opaque walk context passed to the callback.
Returns:
The return code.

Definition at line 1521 of file mkavl.c.

 All Classes Files Functions Variables Typedefs Enumerations Enumerator Defines