Id list management -
An ID2 is an ID/pointer pair.
Data Fields
MDB_ID mid
void * mptr
The ID
The pointer
Current max length of an mdb_midl_alloc()ed IDL
Value:
do { \ MDB_ID *xidl = (idl), xlen = ++(xidl[0]); xidl[xlen] = (id); } while (0)
Append ID to IDL. The IDL must be big enough.
A generic unsigned ID number. These were entryIDs in back-bdb. Preferably it should have the same size as a pointer.
An IDL is an ID List, a sorted array of IDs. The first element of the array is a counter for how many actual IDs are in the list. In the original back-bdb code, IDLs are sorted in ascending order. For libmdb IDLs are sorted in descending order.
An ID2L is an ID2 List, a sorted array of ID2s. The first element's mid member is a count of how many actual elements are in the array. The mptr member of the first element is unused. The array is sorted in ascending order by mid.
Search for an ID in an IDL.
Parameters:
ids The IDL to search.
id The ID to search for.
Returns:
The index of the first ID greater than or equal to id.
Allocate an IDL. Allocates memory for an IDL of the given size.
Returns:
IDL on success, NULL on failure.
Free an IDL.
Parameters:
ids The IDL to free.
Shrink an IDL. Return the IDL to the default size if it has grown larger.
Parameters:
idp Address of the IDL to shrink.
Returns:
0 on no change, non-zero if shrunk.
Make room for num additional elements in an IDL.
Parameters:
idp Address of the IDL.
num Number of elements to make room for.
Returns:
0 on success, ENOMEM on failure.
Append an ID onto an IDL.
Parameters:
idp Address of the IDL to append to.
id The ID to append.
Returns:
0 on success, ENOMEM if the IDL is too large.
Append an IDL onto an IDL.
Parameters:
idp Address of the IDL to append to.
app The IDL to append.
Returns:
0 on success, ENOMEM if the IDL is too large.
Append an ID range onto an IDL.
Parameters:
idp Address of the IDL to append to.
id The lowest ID to append.
n Number of IDs to append.
Returns:
0 on success, ENOMEM if the IDL is too large.
Merge an IDL onto an IDL. The destination IDL must be big enough.
Parameters:
idl The IDL to merge into.
merge The IDL to merge.
Sort an IDL.
Parameters:
ids The IDL to sort.
Search for an ID in an ID2L.
Parameters:
ids The ID2L to search.
id The ID to search for.
Returns:
The index of the first ID2 whose mid member is greater than or equal to id.
Insert an ID2 into a ID2L.
Parameters:
ids The ID2L to insert into.
id The ID2 to insert.
Returns:
0 on success, -1 if the ID was already present in the ID2L.
Append an ID2 into a ID2L.
Parameters:
ids The ID2L to append into.
id The ID2 to append.
Returns:
0 on success, -2 if the ID2L is too big.
Generated automatically by Doxygen for LMDB from the source code.