]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/idl.h
Happy New Year
[openldap] / servers / slapd / back-bdb / idl.h
1 /* idl.h - ldap bdb back-end ID list header file */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 2000-2018 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
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>.
15  */
16
17 #ifndef _BDB_IDL_H_
18 #define _BDB_IDL_H_
19
20 /* IDL sizes - likely should be even bigger
21  *   limiting factors: sizeof(ID), thread stack size
22  */
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))
27
28 #define BDB_IDL_DB_MAX          (BDB_IDL_DB_SIZE-1)
29
30 #define BDB_IDL_UM_MAX          (BDB_IDL_UM_SIZE-1)
31
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))
37
38 #define BDB_IDL_RANGE_FIRST(ids)        ((ids)[1])
39 #define BDB_IDL_RANGE_LAST(ids)         ((ids)[2])
40
41 #define BDB_IDL_RANGE( ids, f, l ) \
42         do { \
43                 (ids)[0] = NOID; \
44                 (ids)[1] = (f);  \
45                 (ids)[2] = (l);  \
46         } while(0)
47
48 #define BDB_IDL_ZERO(ids) \
49         do { \
50                 (ids)[0] = 0; \
51                 (ids)[1] = 0; \
52                 (ids)[2] = 0; \
53         } while(0)
54
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] )
58
59 #define BDB_IDL_CPY( dst, src ) (AC_MEMCPY( dst, src, BDB_IDL_SIZEOF( src ) ))
60
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) )
63
64 #define BDB_IDL_FIRST( ids )    ( (ids)[1] )
65 #define BDB_IDL_LLAST( ids )    ( (ids)[(ids)[0]] )
66 #define BDB_IDL_LAST( ids )             ( BDB_IDL_IS_RANGE(ids) \
67         ? (ids)[2] : (ids)[(ids)[0]] )
68
69 #define BDB_IDL_N( ids )                ( BDB_IDL_IS_RANGE(ids) \
70         ? ((ids)[2]-(ids)[1])+1 : (ids)[0] )
71
72 LDAP_BEGIN_DECL
73 LDAP_END_DECL
74
75 #endif