C Container Collection (CCC)
|
The Ordered Map Interface. More...
Go to the source code of this file.
Initialization Interface | |
Initialize the container with memory, callbacks, and permissions. | |
#define | ccc_om_init(om_name, struct_name, om_elem_field, key_elem_field, alloc_fn, key_cmp, aux) |
Initializes the ordered map at runtime or compile time. | |
Entry Interface | |
Obtain and operate on container entries for efficient queries when non-trivial control flow is needed. | |
#define | ccc_om_insert_r(ordered_map_ptr, key_val_handle_ptr, tmp_ptr) |
Invariantly inserts the key value wrapping key_val_handle_ptr. | |
#define | ccc_om_try_insert_r(ordered_map_ptr, key_val_handle_ptr) |
Attempts to insert the key value wrapping key_val_handle. | |
#define | ccc_om_try_insert_w(ordered_map_ptr, key, lazy_value...) |
lazily insert lazy_value into the map at key if key is absent. | |
#define | ccc_om_insert_or_assign_w(ordered_map_ptr, key, lazy_value...) |
Inserts a new key value pair or overwrites the existing entry. | |
#define | ccc_om_remove_r(ordered_map_ptr, out_handle_ptr) |
Removes the key value in the map storing the old value, if present, in the struct containing out_handle provided by the user. | |
#define | ccc_om_entry_r(ordered_map_ptr, key_ptr) |
Obtains an entry for the provided key in the map for future use. | |
#define | ccc_om_and_modify_w(ordered_map_entry_ptr, type_name, closure_over_T...) |
Modify an Occupied entry with a closure over user type T. | |
#define | ccc_om_or_insert_w(ordered_map_entry_ptr, lazy_key_value...) ccc_impl_om_or_insert_w(ordered_map_entry_ptr, lazy_key_value) |
Lazily insert the desired key value into the entry if it is Vacant. | |
#define | ccc_om_insert_entry_w(ordered_map_entry_ptr, lazy_key_value...) ccc_impl_om_insert_entry_w(ordered_map_entry_ptr, lazy_key_value) |
Write the contents of the compound literal lazy_key_value to a node. | |
#define | ccc_om_remove_entry_r(ordered_map_entry_ptr) |
Remove the entry from the map if Occupied. | |
ccc_entry | ccc_om_insert (ccc_ordered_map *om, ccc_omap_elem *key_val_handle, ccc_omap_elem *tmp) |
Invariantly inserts the key value wrapping key_val_handle. | |
ccc_entry | ccc_om_try_insert (ccc_ordered_map *om, ccc_omap_elem *key_val_handle) |
Attempts to insert the key value wrapping key_val_handle. | |
ccc_entry | ccc_om_insert_or_assign (ccc_ordered_map *om, ccc_omap_elem *key_val_handle) |
Invariantly inserts or overwrites a user struct into the map. | |
ccc_entry | ccc_om_remove (ccc_ordered_map *om, ccc_omap_elem *out_handle) |
Removes the key value in the map storing the old value, if present, in the struct containing out_handle provided by the user. | |
ccc_omap_entry | ccc_om_entry (ccc_ordered_map *om, void const *key) |
Obtains an entry for the provided key in the map for future use. | |
ccc_omap_entry * | ccc_om_and_modify (ccc_omap_entry *e, ccc_update_fn *fn) |
Modifies the provided entry if it is Occupied. | |
ccc_omap_entry * | ccc_om_and_modify_aux (ccc_omap_entry *e, ccc_update_fn *fn, void *aux) |
Modifies the provided entry if it is Occupied. | |
void * | ccc_om_or_insert (ccc_omap_entry const *e, ccc_omap_elem *elem) |
Inserts the struct with handle elem if the entry is Vacant. | |
void * | ccc_om_insert_entry (ccc_omap_entry const *e, ccc_omap_elem *elem) |
Inserts the provided entry invariantly. | |
ccc_entry | ccc_om_remove_entry (ccc_omap_entry *e) |
Remove the entry from the map if Occupied. | |
void * | ccc_om_unwrap (ccc_omap_entry const *e) |
Unwraps the provided entry to obtain a view into the map element. | |
bool | ccc_om_occupied (ccc_omap_entry const *e) |
Returns the Vacant or Occupied status of the entry. | |
bool | ccc_om_insert_error (ccc_omap_entry const *e) |
Provides the status of the entry should an insertion follow. | |
ccc_entry_status | ccc_om_entry_status (ccc_omap_entry const *e) |
Obtain the entry status from a container entry. | |
Iterator Interface | |
Obtain and manage iterators over the container. | |
#define | ccc_om_equal_range_r(ordered_map_ptr, begin_and_end_key_ptrs...) |
Returns a compound literal reference to the desired range. Amortized O(lg N). | |
#define | ccc_om_equal_rrange_r(ordered_map_ptr, rbegin_and_rend_key_ptrs...) |
Returns a compound literal reference to the desired rrange. Amortized O(lg N). | |
ccc_range | ccc_om_equal_range (ccc_ordered_map *om, void const *begin_key, void const *end_key) |
Return an iterable range of values from [begin_key, end_key). Amortized O(lg N). | |
ccc_rrange | ccc_om_equal_rrange (ccc_ordered_map *om, void const *rbegin_key, void const *rend_key) |
Return an iterable rrange of values from [begin_key, end_key). Amortized O(lg N). | |
void * | ccc_om_begin (ccc_ordered_map const *om) |
Return the start of an inorder traversal of the map. Amortized O(lg N). | |
void * | ccc_om_rbegin (ccc_ordered_map const *om) |
Return the start of a reverse inorder traversal of the map. Amortized O(lg N). | |
void * | ccc_om_next (ccc_ordered_map const *om, ccc_omap_elem const *iter_handle) |
Return the next element in an inorder traversal of the map. O(1). | |
void * | ccc_om_rnext (ccc_ordered_map const *om, ccc_omap_elem const *iter_handle) |
Return the rnext element in a reverse inorder traversal of the map. O(1). | |
void * | ccc_om_end (ccc_ordered_map const *om) |
Return the end of an inorder traversal of the map. O(1). | |
void * | ccc_om_rend (ccc_ordered_map const *om) |
Return the rend of a reverse inorder traversal of the map. O(1). | |
Container Types | |
Types available in the container interface. | |
typedef union ccc_ordered_map_ | ccc_ordered_map |
A self-optimizing data structure offering amortized O(lg N) search, insert, and erase and pointer stability. | |
typedef union ccc_omap_elem_ | ccc_omap_elem |
The intrusive element for the user defined struct being stored in the map. | |
typedef union ccc_omap_entry_ | ccc_omap_entry |
A container specific entry used to implement the Entry Interface. | |
Membership Interface | |
Test membership or obtain references to stored user types directly. | |
bool | ccc_om_contains (ccc_ordered_map *om, void const *key) |
Searches the map for the presence of key. | |
void * | ccc_om_get_key_val (ccc_ordered_map *om, void const *key) |
Returns a reference into the map at entry key. | |
Deallocation Interface | |
Destroy the container. | |
ccc_result | ccc_om_clear (ccc_ordered_map *om, ccc_destructor_fn *destructor) |
Pops every element from the map calling destructor if destructor is non-NULL. O(N). | |
State Interface | |
Obtain the container state. | |
bool | ccc_om_is_empty (ccc_ordered_map const *om) |
Returns the size status of the map. | |
size_t | ccc_om_size (ccc_ordered_map const *om) |
Returns the size of the map. | |
bool | ccc_om_validate (ccc_ordered_map const *om) |
Validation of invariants for the map. | |
The Ordered Map Interface.
An ordered map offers storage and retrieval elements by key. Because the data structure is self-optimizing it is not suitable map in a realtime environment where strict runtime bounds are needed. Also, searching the map is not a const thread-safe operation as indicated by the function signatures. The map is optimized upon every new search. However, in many cases the self-optimizing structure of the map can be beneficial when considering non-uniform access patterns. In the best case, repeated searches of the same value yield an O(1) access and many other frequently searched values will remain close to the root
To shorten names in the interface, define the following preprocessor directive at the top of your file.
All types and functions can then be written without the ccc_
prefix.
#define ccc_om_and_modify_w | ( | ordered_map_entry_ptr, | |
type_name, | |||
closure_over_T... | |||
) |
Modify an Occupied entry with a closure over user type T.
[in] | ordered_map_entry_ptr | a pointer to the obtained entry. |
[in] | type_name | the name of the user type stored in the container. |
[in] | closure_over_T | the code to be run on the reference to user type T, if Occupied. This may be a semicolon separated list of statements to execute on T or a section of code wrapped in braces {code here} which may be preferred for formatting. |
Note that any code written is only evaluated if the entry is Occupied and the container can deliver the user type T. This means any function calls are lazily evaluated in the closure scope.
#define ccc_om_entry_r | ( | ordered_map_ptr, | |
key_ptr | |||
) |
Obtains an entry for the provided key in the map for future use.
[in] | ordered_map_ptr | the map to be searched. |
[in] | key_ptr | the key used to search the map matching the stored key type. |
An entry is a search result that provides either an Occupied or Vacant entry in the map. An occupied entry signifies that the search was successful. A Vacant entry means the search was not successful but a handle is gained to where in the map such an element should be inserted.
An entry is rarely useful on its own. It should be passed in a functional style to subsequent calls in the Entry Interface.
#define ccc_om_equal_range_r | ( | ordered_map_ptr, | |
begin_and_end_key_ptrs... | |||
) |
Returns a compound literal reference to the desired range. Amortized O(lg N).
[in] | ordered_map_ptr | a pointer to the map. |
[in] | begin_and_end_key_ptrs | two pointers, one to the start of the range and a second to the end of the range. |
#define ccc_om_equal_rrange_r | ( | ordered_map_ptr, | |
rbegin_and_rend_key_ptrs... | |||
) |
Returns a compound literal reference to the desired rrange. Amortized O(lg N).
[in] | ordered_map_ptr | a pointer to the map. |
[in] | rbegin_and_rend_key_ptrs | two pointers, one to the start of the rrange and a second to the end of the rrange. |
#define ccc_om_init | ( | om_name, | |
struct_name, | |||
om_elem_field, | |||
key_elem_field, | |||
alloc_fn, | |||
key_cmp, | |||
aux | |||
) |
Initializes the ordered map at runtime or compile time.
[in] | om_name | the name of the ordered map being initialized. |
[in] | struct_name | the user type wrapping the intrusive element. |
[in] | om_elem_field | the name of the intrusive map elem field. |
[in] | key_elem_field | the name of the field in user type used as key. |
[in] | alloc_fn | the allocation function or NULL if allocation is banned. |
[in] | key_cmp | the key comparison function (see types.h). |
[in] | aux | a pointer to any auxiliary data for comparison or destruction. |
#define ccc_om_insert_entry_w | ( | ordered_map_entry_ptr, | |
lazy_key_value... | |||
) | ccc_impl_om_insert_entry_w(ordered_map_entry_ptr, lazy_key_value) |
Write the contents of the compound literal lazy_key_value to a node.
[in] | ordered_map_entry_ptr | a pointer to the obtained entry. |
[in] | lazy_key_value | the compound literal to write to a new slot. |
#define ccc_om_insert_or_assign_w | ( | ordered_map_ptr, | |
key, | |||
lazy_value... | |||
) |
Inserts a new key value pair or overwrites the existing entry.
[in] | ordered_map_ptr | the pointer to the flat hash map. |
[in] | key | the key to be searched in the map. |
[in] | lazy_value | the compound literal to insert or use for overwrite. |
Note that for brevity and convenience the user need not write the key to the lazy value compound literal as well. This function ensures the key in the compound literal matches the searched key.
#define ccc_om_insert_r | ( | ordered_map_ptr, | |
key_val_handle_ptr, | |||
tmp_ptr | |||
) |
Invariantly inserts the key value wrapping key_val_handle_ptr.
[in] | ordered_map_ptr | the pointer to the ordered map. |
[in] | key_val_handle_ptr | the handle to the user type wrapping map elem. |
[in] | tmp_ptr | handle to space for swapping in the old value, if present. The same user type stored in the map should wrap tmp_ptr. |
Note that this function may write to the struct containing tmp_ptr and wraps it in an entry to provide information about the old value.
#define ccc_om_or_insert_w | ( | ordered_map_entry_ptr, | |
lazy_key_value... | |||
) | ccc_impl_om_or_insert_w(ordered_map_entry_ptr, lazy_key_value) |
Lazily insert the desired key value into the entry if it is Vacant.
[in] | ordered_map_entry_ptr | a pointer to the obtained entry. |
[in] | lazy_key_value | the compound literal to construct in place if the entry is Vacant. |
Note that if the compound literal uses any function calls to generate values or other data, such functions will not be called if the entry is Occupied.
#define ccc_om_remove_entry_r | ( | ordered_map_entry_ptr | ) |
Remove the entry from the map if Occupied.
[in] | ordered_map_entry_ptr | a pointer to the map entry. |
Note that if allocation is permitted the old element is freed and the entry will contain a NULL reference. If allocation is prohibited the entry can be unwrapped to obtain the old user struct stored in the map and the user may free or use as needed.
#define ccc_om_remove_r | ( | ordered_map_ptr, | |
out_handle_ptr | |||
) |
Removes the key value in the map storing the old value, if present, in the struct containing out_handle provided by the user.
[in] | ordered_map_ptr | the pointer to the ordered map. |
[out] | out_handle_ptr | the handle to the user type wrapping map elem. |
Note that this function may write to the struct containing the second parameter and wraps it in an entry to provide information about the old value.
If allocation has been prohibited upon initialization then the entry returned contains the previously stored user type, if any, and nothing is written to the out_handle. It is then the user's responsibility to manage their previously stored memory as they see fit.
#define ccc_om_try_insert_r | ( | ordered_map_ptr, | |
key_val_handle_ptr | |||
) |
Attempts to insert the key value wrapping key_val_handle.
[in] | ordered_map_ptr | the pointer to the map. |
[in] | key_val_handle_ptr | the handle to the user type wrapping map elem. |
#define ccc_om_try_insert_w | ( | ordered_map_ptr, | |
key, | |||
lazy_value... | |||
) |
lazily insert lazy_value into the map at key if key is absent.
[in] | ordered_map_ptr | a pointer to the map. |
[in] | key | the direct key r-value. |
[in] | lazy_value | the compound literal specifying the value. |
Note that for brevity and convenience the user need not write the key to the lazy value compound literal as well. This function ensures the key in the compound literal matches the searched key.
typedef union ccc_omap_elem_ ccc_omap_elem |
The intrusive element for the user defined struct being stored in the map.
Note that if allocation is not permitted, insertions functions accepting this type as an argument assume it to exist in pre-allocated memory that will exist with the appropriate lifetime and scope for the user's needs; the container does not allocate or free in this case.
typedef union ccc_omap_entry_ ccc_omap_entry |
A container specific entry used to implement the Entry Interface.
The Entry Interface offers efficient search and subsequent insertion, deletion, or value update based on the needs of the user.
typedef union ccc_ordered_map_ ccc_ordered_map |
A self-optimizing data structure offering amortized O(lg N) search, insert, and erase and pointer stability.
An ordered map can be initialized on the stack, heap, or data segment at runtime or compile time.
ccc_omap_entry * ccc_om_and_modify | ( | ccc_omap_entry * | e, |
ccc_update_fn * | fn | ||
) |
Modifies the provided entry if it is Occupied.
[in] | e | the entry obtained from an entry function or macro. |
[in] | fn | an update function in which the auxiliary argument is unused. |
This function is intended to make the function chaining in the Entry Interface more succinct if the entry will be modified in place based on its own value without the need of the auxiliary argument a ccc_update_fn can provide.
ccc_omap_entry * ccc_om_and_modify_aux | ( | ccc_omap_entry * | e, |
ccc_update_fn * | fn, | ||
void * | aux | ||
) |
Modifies the provided entry if it is Occupied.
[in] | e | the entry obtained from an entry function or macro. |
[in] | fn | an update function that requires auxiliary data. |
[in] | aux | auxiliary data required for the update. |
This function makes full use of a ccc_update_fn capability, meaning a complete ccc_update object will be passed to the update function callback.
void * ccc_om_begin | ( | ccc_ordered_map const * | om | ) |
Return the start of an inorder traversal of the map. Amortized O(lg N).
[in] | om | a pointer to the map. |
ccc_result ccc_om_clear | ( | ccc_ordered_map * | om, |
ccc_destructor_fn * | destructor | ||
) |
Pops every element from the map calling destructor if destructor is non-NULL. O(N).
[in] | om | a pointer to the map. |
[in] | destructor | a destructor function if required. NULL if unneeded. |
Note that if the map has been given permission to allocate, the destructor will be called on each element before it uses the provided allocator to free the element. Therefore, the destructor should not free the element or a double free will occur.
If the container has not been given allocation permission, then the destructor may free elements or not depending on how and when the user wishes to free elements of the map according to their own memory management schemes.
bool ccc_om_contains | ( | ccc_ordered_map * | om, |
void const * | key | ||
) |
Searches the map for the presence of key.
[in] | om | the map to be searched. |
[in] | key | pointer to the key matching the key type of the user struct. |
void * ccc_om_end | ( | ccc_ordered_map const * | om | ) |
Return the end of an inorder traversal of the map. O(1).
[in] | om | a pointer to the map. |
ccc_omap_entry ccc_om_entry | ( | ccc_ordered_map * | om, |
void const * | key | ||
) |
Obtains an entry for the provided key in the map for future use.
[in] | om | the map to be searched. |
[in] | key | the key used to search the map matching the stored key type. |
An entry is a search result that provides either an Occupied or Vacant entry in the map. An occupied entry signifies that the search was successful. A Vacant entry means the search was not successful but a handle is gained to where in the map such an element should be inserted.
An entry is rarely useful on its own. It should be passed in a functional style to subsequent calls in the Entry Interface.
ccc_entry_status ccc_om_entry_status | ( | ccc_omap_entry const * | e | ) |
Obtain the entry status from a container entry.
[in] | e | a pointer to the entry. |
Note that this function can be useful for debugging or if more detailed messages are needed for logging purposes. See ccc_entry_status_msg() in ccc/types.h for more information on detailed entry statuses.
ccc_range ccc_om_equal_range | ( | ccc_ordered_map * | om, |
void const * | begin_key, | ||
void const * | end_key | ||
) |
Return an iterable range of values from [begin_key, end_key). Amortized O(lg N).
[in] | om | a pointer to the map. |
[in] | begin_key | a pointer to the key intended as the start of the range. |
[in] | end_key | a pointer to the key intended as the end of the range. |
Note that due to the variety of values that can be returned in the range, using the provided range iteration functions from types.h is recommended for example:
This avoids any possible errors in handling an end range element that is in the map versus the end map sentinel.
ccc_rrange ccc_om_equal_rrange | ( | ccc_ordered_map * | om, |
void const * | rbegin_key, | ||
void const * | rend_key | ||
) |
Return an iterable rrange of values from [begin_key, end_key). Amortized O(lg N).
[in] | om | a pointer to the map. |
[in] | rbegin_key | a pointer to the key intended as the start of the rrange. |
[in] | rend_key | a pointer to the key intended as the end of the rrange. |
Note that due to the variety of values that can be returned in the rrange, using the provided rrange iteration functions from types.h is recommended for example:
This avoids any possible errors in handling an rend rrange element that is in the map versus the end map sentinel.
void * ccc_om_get_key_val | ( | ccc_ordered_map * | om, |
void const * | key | ||
) |
Returns a reference into the map at entry key.
[in] | om | the ordered map to search. |
[in] | key | the key to search matching stored key type. |
ccc_entry ccc_om_insert | ( | ccc_ordered_map * | om, |
ccc_omap_elem * | key_val_handle, | ||
ccc_omap_elem * | tmp | ||
) |
Invariantly inserts the key value wrapping key_val_handle.
[in] | om | the pointer to the ordered map. |
[in] | key_val_handle | the handle to the user type wrapping map elem. |
[in] | tmp | handle to space for swapping in the old value, if present. The same user type stored in the map should wrap tmp. |
Note that this function may write to the struct containing tmp and wraps it in an entry to provide information about the old value.
void * ccc_om_insert_entry | ( | ccc_omap_entry const * | e, |
ccc_omap_elem * | elem | ||
) |
Inserts the provided entry invariantly.
[in] | e | the entry returned from a call obtaining an entry. |
[in] | elem | a handle to the struct the user intends to insert. |
This method can be used when the old value in the map does not need to be preserved. See the regular insert method if the old value is of interest.
bool ccc_om_insert_error | ( | ccc_omap_entry const * | e | ) |
Provides the status of the entry should an insertion follow.
[in] | e | the entry from a query to the table via function or macro. |
ccc_entry ccc_om_insert_or_assign | ( | ccc_ordered_map * | om, |
ccc_omap_elem * | key_val_handle | ||
) |
Invariantly inserts or overwrites a user struct into the map.
[in] | om | a pointer to the flat hash map. |
[in] | key_val_handle | the handle to the wrapping user struct key value. |
Note that this function can be used when the old user type is not needed but the information regarding its presence is helpful.
bool ccc_om_is_empty | ( | ccc_ordered_map const * | om | ) |
Returns the size status of the map.
[in] | om | the map. |
void * ccc_om_next | ( | ccc_ordered_map const * | om, |
ccc_omap_elem const * | iter_handle | ||
) |
Return the next element in an inorder traversal of the map. O(1).
[in] | om | a pointer to the map. |
[in] | iter_handle | a pointer to the intrusive map element of the current iterator. |
bool ccc_om_occupied | ( | ccc_omap_entry const * | e | ) |
Returns the Vacant or Occupied status of the entry.
[in] | e | the entry from a query to the map via function or macro. |
void * ccc_om_or_insert | ( | ccc_omap_entry const * | e, |
ccc_omap_elem * | elem | ||
) |
Inserts the struct with handle elem if the entry is Vacant.
[in] | e | the entry obtained via function or macro call. |
[in] | elem | the handle to the struct to be inserted to a Vacant entry. |
Because this functions takes an entry and inserts if it is Vacant, the only reason NULL shall be returned is when an insertion error occurs, usually due to a user struct allocation failure.
If no allocation is permitted, this function assumes the user struct wrapping elem has been allocated with the appropriate lifetime and scope by the user.
void * ccc_om_rbegin | ( | ccc_ordered_map const * | om | ) |
Return the start of a reverse inorder traversal of the map. Amortized O(lg N).
[in] | om | a pointer to the map. |
ccc_entry ccc_om_remove | ( | ccc_ordered_map * | om, |
ccc_omap_elem * | out_handle | ||
) |
Removes the key value in the map storing the old value, if present, in the struct containing out_handle provided by the user.
[in] | om | the pointer to the ordered map. |
[out] | out_handle | the handle to the user type wrapping map elem. |
Note that this function may write to the struct containing the second parameter and wraps it in an entry to provide information about the old value.
If allocation has been prohibited upon initialization then the entry returned contains the previously stored user type, if any, and nothing is written to the out_handle. It is then the user's responsibility to manage their previously stored memory as they see fit.
ccc_entry ccc_om_remove_entry | ( | ccc_omap_entry * | e | ) |
Remove the entry from the map if Occupied.
[in] | e | a pointer to the map entry. |
Note that if allocation is permitted the old element is freed and the entry will contain a NULL reference. If allocation is prohibited the entry can be unwrapped to obtain the old user struct stored in the map and the user may free or use as needed.
void * ccc_om_rend | ( | ccc_ordered_map const * | om | ) |
Return the rend of a reverse inorder traversal of the map. O(1).
[in] | om | a pointer to the map. |
void * ccc_om_rnext | ( | ccc_ordered_map const * | om, |
ccc_omap_elem const * | iter_handle | ||
) |
Return the rnext element in a reverse inorder traversal of the map. O(1).
[in] | om | a pointer to the map. |
[in] | iter_handle | a pointer to the intrusive map element of the current iterator. |
size_t ccc_om_size | ( | ccc_ordered_map const * | om | ) |
Returns the size of the map.
[in] | om | the map. |
ccc_entry ccc_om_try_insert | ( | ccc_ordered_map * | om, |
ccc_omap_elem * | key_val_handle | ||
) |
Attempts to insert the key value wrapping key_val_handle.
[in] | om | the pointer to the map. |
[in] | key_val_handle | the handle to the user type wrapping map elem. |
void * ccc_om_unwrap | ( | ccc_omap_entry const * | e | ) |
Unwraps the provided entry to obtain a view into the map element.
[in] | e | the entry from a query to the map via function or macro. |
bool ccc_om_validate | ( | ccc_ordered_map const * | om | ) |
Validation of invariants for the map.
[in] | om | the map to validate. |