Contains struct picotm_treemap
and helpers.
More...
Data Structures | |
struct | picotm_treemap |
Maps keys to values. More... | |
Typedefs | |
typedef void(* | picotm_treemap_value_call_function) (uintptr_t value, unsigned long long key, struct picotm_treemap *treemap, void *data, struct picotm_error *error) |
typedef uintptr_t(* | picotm_treemap_value_create_function) (unsigned long long key, struct picotm_treemap *treemap, struct picotm_error *error) |
typedef void(* | picotm_treemap_value_destroy_function) (uintptr_t value, struct picotm_treemap *treemap) |
Functions | |
PICOTM_NOTHROW uintptr_t | picotm_treemap_find_value (struct picotm_treemap *self, unsigned long long key, picotm_treemap_value_create_function value_create, struct picotm_error *error) |
PICOTM_NOTHROW void | picotm_treemap_for_each_value (struct picotm_treemap *self, void *data, picotm_treemap_value_call_function value_call, struct picotm_error *error) |
PICOTM_NOTHROW void | picotm_treemap_init (struct picotm_treemap *self, unsigned long level_nbits) |
PICOTM_NOTHROW void | picotm_treemap_uninit (struct picotm_treemap *self, picotm_treemap_value_destroy_function value_destroy) |
The data stucture struct picotm_treemap
maps keys to values on single threads. Concurrent look-up by multiple transactions is not supported. Keys can be up to 64 bit in length, values are of type uintptr_t
, so unsigned integers or pointers can be stored.
Initialize a treemap with a call to picotm_treemap_init()
.
The second argument is the number of key bits handled per level of the tree hierarchy. Ideally this number is a remainder-free divider of the maximum key length. The maximum key length itself does not have ot be specified. The treemap's implementation will grow the internal tree to adapt to any key.
Call picotm_treemap_find_value()
to retrieve a key's value from the treemap. If the key/value pair is not in the treemap, a creator function can generate a new value as part of the lookup. If you don't supply a creator function, 0 is returned for non-existing values.
The following example returns the value for the key 0x1234 from the treemap, or inserts a new value if the key/value pair is not present.
You can iterate over all key/value pairs stored in the treemap with picotm_treemap_for_each_value()
. It invokes a call-back function for each value. Values will be sorted by their keys' order. The following example prints all key/value pairs to the terminal.
To uninitialize a treemap, call picotm_treemap_uninit()
. This function requires a destroy function for the values. It walk over all keys in the treemap and invokes the destroy function on each key's value.
typedef void(* picotm_treemap_value_call_function) (uintptr_t value, unsigned long long key, struct picotm_treemap *treemap, void *data, struct picotm_error *error) |
Invoked by picotm's treemap to call a value.
value | The value. | |
key | The value's key. | |
treemap | The value's treemap. | |
data | User data. | |
[out] | error | Returns an error from the creator function. |
typedef uintptr_t(* picotm_treemap_value_create_function) (unsigned long long key, struct picotm_treemap *treemap, struct picotm_error *error) |
Invoked by picotm's treemap to create a new value.
key | The value's key. | |
treemap | The value's treemap. | |
[out] | error | Returns an error from the creator function. |
typedef void(* picotm_treemap_value_destroy_function) (uintptr_t value, struct picotm_treemap *treemap) |
Invoked by picotm's treemap to destroy a value.
value | The value to destroy. |
treemap | The value's treemap. |
PICOTM_NOTHROW uintptr_t picotm_treemap_find_value | ( | struct picotm_treemap * | self, |
unsigned long long | key, | ||
picotm_treemap_value_create_function | value_create, | ||
struct picotm_error * | error | ||
) |
Retrieves the value for a key from a treemap.
self | The treemap. | |
key | The value's key. | |
value_create | The creator function for values. | |
[out] | error | Returns an error from the look-up function. |
PICOTM_NOTHROW void picotm_treemap_for_each_value | ( | struct picotm_treemap * | self, |
void * | data, | ||
picotm_treemap_value_call_function | value_call, | ||
struct picotm_error * | error | ||
) |
Iterates over all values stored in a treemap.
self | The treemap. | |
data | User data. | |
value_call | The call-back function for values. | |
[out] | error | Returns an error from the look-up function. |
PICOTM_NOTHROW void picotm_treemap_init | ( | struct picotm_treemap * | self, |
unsigned long | level_nbits | ||
) |
Initializes a treemap.
self | The treemap to initialize. |
level_nbits | The number of bits per directory level. |
PICOTM_NOTHROW void picotm_treemap_uninit | ( | struct picotm_treemap * | self, |
picotm_treemap_value_destroy_function | value_destroy | ||
) |
Uninitializes a treemap.
self | The treemap to initialize. |
value_destroy | The destroy function for values. |