1 /* idl.h - ldap bdb back-end ID list header file */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 2000-2012 The OpenLDAP Foundation.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted only as authorized by the OpenLDAP
12 * A copy of this license is available in the file LICENSE in the
13 * top-level directory of the distribution or, alternatively, at
14 * <http://www.OpenLDAP.org/license.html>.
20 /* IDL sizes - likely should be even bigger
21 * limiting factors: sizeof(ID), thread stack size
23 #define BDB_IDL_LOGN 16 /* DB_SIZE is 2^16, UM_SIZE is 2^17 */
24 #define BDB_IDL_DB_SIZE (1<<BDB_IDL_LOGN)
25 #define BDB_IDL_UM_SIZE (1<<(BDB_IDL_LOGN+1))
26 #define BDB_IDL_UM_SIZEOF (BDB_IDL_UM_SIZE * sizeof(ID))
28 #define BDB_IDL_DB_MAX (BDB_IDL_DB_SIZE-1)
30 #define BDB_IDL_UM_MAX (BDB_IDL_UM_SIZE-1)
32 #define BDB_IDL_IS_RANGE(ids) ((ids)[0] == NOID)
33 #define BDB_IDL_RANGE_SIZE (3)
34 #define BDB_IDL_RANGE_SIZEOF (BDB_IDL_RANGE_SIZE * sizeof(ID))
35 #define BDB_IDL_SIZEOF(ids) ((BDB_IDL_IS_RANGE(ids) \
36 ? BDB_IDL_RANGE_SIZE : ((ids)[0]+1)) * sizeof(ID))
38 #define BDB_IDL_RANGE_FIRST(ids) ((ids)[1])
39 #define BDB_IDL_RANGE_LAST(ids) ((ids)[2])
41 #define BDB_IDL_RANGE( ids, f, l ) \
48 #define BDB_IDL_ZERO(ids) \
55 #define BDB_IDL_IS_ZERO(ids) ( (ids)[0] == 0 )
56 #define BDB_IDL_IS_ALL( range, ids ) ( (ids)[0] == NOID \
57 && (ids)[1] <= (range)[1] && (range)[2] <= (ids)[2] )
59 #define BDB_IDL_CPY( dst, src ) (AC_MEMCPY( dst, src, BDB_IDL_SIZEOF( src ) ))
61 #define BDB_IDL_ID( bdb, ids, id ) BDB_IDL_RANGE( ids, id, ((bdb)->bi_lastid) )
62 #define BDB_IDL_ALL( bdb, ids ) BDB_IDL_RANGE( ids, 1, ((bdb)->bi_lastid) )
64 #define BDB_IDL_FIRST( ids ) ( (ids)[1] )
65 #define BDB_IDL_LAST( ids ) ( BDB_IDL_IS_RANGE(ids) \
66 ? (ids)[2] : (ids)[(ids)[0]] )
68 #define BDB_IDL_N( ids ) ( BDB_IDL_IS_RANGE(ids) \
69 ? ((ids)[2]-(ids)[1])+1 : (ids)[0] )