All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
Data Fields | Related Functions
as_orderedmap Struct Reference

Detailed Description

A sorted array based implementation of as_map.

To use the map, you can either initialize a stack allocated map, using as_orderedmap_init():

Or you can create a new heap allocated map using as_orderedmap_new():

When you are finished using the map, then you should release the map and associated resources, using as_orderedmap_destroy():

The as_orderedmap is a subtype of as_map. This allows you to alternatively use as_map functions, by typecasting as_orderedmap to as_map.

The as_stringmap functions are simplified functions for using string key.

Each of the as_map functions proxy to the as_orderedmap functions. So, calling as_map_destroy() is equivalent to calling as_orderedmap_destroy().

Notes:

This orderedmap implementation is NOT threadsafe.

Internally, the orderedmap stores keys' and values' pointers - it does NOT copy the keys or values, so the caller must ensure these keys and values are not destroyed while the orderedmap is still in use.

Further, the orderedmap does not increment ref-counts of the keys or values. However when an element is removed from the orderedmap, the orderedmap will call as_val_destroy() on both the key and value. And when the orderedmap is cleared or destroyed, as_val_destroy() will be called for all keys and values. Therefore if the caller inserts keys and values in the orderedmap without extra ref-counts, the caller is effectively handing off ownership of these objects to the orderedmap.

Definition at line 106 of file as_orderedmap.h.

#include "as_orderedmap.h"

+ Inheritance diagram for as_orderedmap:
+ Collaboration diagram for as_orderedmap:

Data Fields

uint32_t capacity
 
uint32_t count
 
uint32_t hold_count
 
uint32_t * hold_locations
 
map_entryhold_table
 
map_entrytable
 
- Data Fields inherited from as_map
uint32_t flags
 
const struct as_map_hooks_s * hooks
 
- Data Fields inherited from as_val
uint32_t count
 
bool free
 
as_val_t type
 

Related Functions

(Note that these are not member functions.)

AS_EXTERN int as_orderedmap_clear (as_orderedmap *map)
 
AS_EXTERN void as_orderedmap_destroy (as_orderedmap *map)
 
AS_EXTERN bool as_orderedmap_foreach (const as_orderedmap *map, as_map_foreach_callback callback, void *udata)
 
AS_EXTERN as_valas_orderedmap_get (const as_orderedmap *map, const as_val *key)
 
AS_EXTERN as_orderedmapas_orderedmap_init (as_orderedmap *map, uint32_t capacity)
 
AS_EXTERN as_orderedmapas_orderedmap_new (uint32_t capacity)
 
AS_EXTERN int as_orderedmap_remove (as_orderedmap *map, const as_val *key)
 
AS_EXTERN int as_orderedmap_set (as_orderedmap *map, const as_val *key, const as_val *val)
 
static void as_orderedmap_set_flags (as_orderedmap *map, uint32_t flags)
 
AS_EXTERN uint32_t as_orderedmap_size (const as_orderedmap *map)
 

Friends And Related Function Documentation

AS_EXTERN int as_orderedmap_clear ( as_orderedmap map)
related

Remove all entries from the map.

Parameters
mapThe map.
Returns
0 on success. Otherwise an error occurred.
AS_EXTERN void as_orderedmap_destroy ( as_orderedmap map)
related

Free the map and associated resources.

Parameters
mapThe map to destroy.
AS_EXTERN bool as_orderedmap_foreach ( const as_orderedmap map,
as_map_foreach_callback  callback,
void *  udata 
)
related

Call the callback function for each entry in the map.

Parameters
mapThe map.
callbackThe function to call for each entry.
udataUser-data to be passed to the callback.
Returns
true if iteration completes fully. false if iteration was aborted.
AS_EXTERN as_val * as_orderedmap_get ( const as_orderedmap map,
const as_val key 
)
related

Get the value for specified key.

Parameters
mapThe map.
keyThe key.
Returns
The value for the specified key. Otherwise NULL.
AS_EXTERN as_orderedmap * as_orderedmap_init ( as_orderedmap map,
uint32_t  capacity 
)
related

Initialize a stack allocated orderedmap.

Parameters
mapThe map to initialize.
capacityThe number of entries (keys) to allocate for.
Returns
On success, the initialized map. Otherwise NULL.
AS_EXTERN as_orderedmap * as_orderedmap_new ( uint32_t  capacity)
related

Creates a new map as an orderedmap.

Parameters
capacityThe number of keys to allocate for.
Returns
On success, the new map. Otherwise NULL.
AS_EXTERN int as_orderedmap_remove ( as_orderedmap map,
const as_val key 
)
related

Remove the entry specified by the key.

Parameters
mapThe map to remove the entry from.
keyThe key of the entry to be removed.
Returns
0 on success. Otherwise an error occurred.
AS_EXTERN int as_orderedmap_set ( as_orderedmap map,
const as_val key,
const as_val val 
)
related

Set the value for specified key.

Parameters
mapThe map.
keyThe key.
valThe value for the given key.
Returns
0 on success. Otherwise an error occurred.
static void as_orderedmap_set_flags ( as_orderedmap map,
uint32_t  flags 
)
related

Set map attributes.

Definition at line 291 of file as_orderedmap.h.

AS_EXTERN uint32_t as_orderedmap_size ( const as_orderedmap map)
related

Get the number of entries in the map.

Parameters
mapThe map.
Returns
The number of entries in the map.

Field Documentation

uint32_t as_orderedmap::capacity

Definition at line 110 of file as_orderedmap.h.

uint32_t as_orderedmap::count

Definition at line 109 of file as_orderedmap.h.

uint32_t as_orderedmap::hold_count

Definition at line 113 of file as_orderedmap.h.

uint32_t* as_orderedmap::hold_locations

Definition at line 115 of file as_orderedmap.h.

map_entry* as_orderedmap::hold_table

Definition at line 114 of file as_orderedmap.h.

map_entry* as_orderedmap::table

Definition at line 111 of file as_orderedmap.h.


The documentation for this struct was generated from the following file: