]> git.sur5r.net Git - openldap/blob - libraries/libmdb/midl.h
71d006216f09c66e9594c3b3ba37007708296c18
[openldap] / libraries / libmdb / midl.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-2011 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 _MDB_MIDL_H_
18 #define _MDB_MIDL_H_
19
20 #define AC_MEMCPY(dst,src,size) memmove(dst,src,size)
21
22 #define ID      unsigned long
23 #define NOID    ((ID)~0)
24
25 /* IDL sizes - likely should be even bigger
26  *   limiting factors: sizeof(ID), thread stack size
27  */
28 #define MDB_IDL_LOGN    16      /* DB_SIZE is 2^16, UM_SIZE is 2^17 */
29 #define MDB_IDL_DB_SIZE         (1<<MDB_IDL_LOGN)
30 #define MDB_IDL_UM_SIZE         (1<<(MDB_IDL_LOGN+1))
31 #define MDB_IDL_UM_SIZEOF       (MDB_IDL_UM_SIZE * sizeof(ID))
32
33 #define MDB_IDL_DB_MAX          (MDB_IDL_DB_SIZE-1)
34
35 #define MDB_IDL_UM_MAX          (MDB_IDL_UM_SIZE-1)
36
37 #define MDB_IDL_IS_RANGE(ids)   ((ids)[0] == NOID)
38 #define MDB_IDL_RANGE_SIZE              (3)
39 #define MDB_IDL_RANGE_SIZEOF    (MDB_IDL_RANGE_SIZE * sizeof(ID))
40 #define MDB_IDL_SIZEOF(ids)             ((MDB_IDL_IS_RANGE(ids) \
41         ? MDB_IDL_RANGE_SIZE : ((ids)[0]+1)) * sizeof(ID))
42
43 #define MDB_IDL_RANGE_FIRST(ids)        ((ids)[1])
44 #define MDB_IDL_RANGE_LAST(ids)         ((ids)[2])
45
46 #define MDB_IDL_RANGE( ids, f, l ) \
47         do { \
48                 (ids)[0] = NOID; \
49                 (ids)[1] = (f);  \
50                 (ids)[2] = (l);  \
51         } while(0)
52
53 #define MDB_IDL_ZERO(ids) \
54         do { \
55                 (ids)[0] = 0; \
56                 (ids)[1] = 0; \
57                 (ids)[2] = 0; \
58         } while(0)
59
60 #define MDB_IDL_IS_ZERO(ids) ( (ids)[0] == 0 )
61 #define MDB_IDL_IS_ALL( range, ids ) ( (ids)[0] == NOID \
62         && (ids)[1] <= (range)[1] && (range)[2] <= (ids)[2] )
63
64 #define MDB_IDL_CPY( dst, src ) (AC_MEMCPY( dst, src, MDB_IDL_SIZEOF( src ) ))
65
66 #define MDB_IDL_ID( bdb, ids, id ) MDB_IDL_RANGE( ids, id, ((bdb)->bi_lastid) )
67 #define MDB_IDL_ALL( bdb, ids ) MDB_IDL_RANGE( ids, 1, ((bdb)->bi_lastid) )
68
69 #define MDB_IDL_FIRST( ids )    ( ids[1] )
70 #define MDB_IDL_LAST( ids )             ( MDB_IDL_IS_RANGE(ids) \
71         ? ids[2] : ids[ids[0]] )
72
73 #define MDB_IDL_N( ids )                ( MDB_IDL_IS_RANGE(ids) \
74         ? (ids[2]-ids[1])+1 : ids[0] )
75
76 int mdb_midl_insert( ID *ids, ID id );
77
78 #endif  /* _MDB_MIDL_H_ */