]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/idl.h
bf302679b4b06e22da915fdf8b9f90f92c5185a1
[openldap] / servers / slapd / back-bdb / idl.h
1 /* back-bdb.h - ldap ldbm back-end header file */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 2000-2002 The OpenLDAP Foundation, All Rights Reserved.
5  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
6  */
7
8 #ifndef _BDB_IDL_H_
9 #define _BDB_IDL_H_
10
11 #include <portable.h>
12
13 #include "slap.h"
14
15 /* IDL sizes - likely should be even bigger
16  *   limiting factors: sizeof(ID), thread stack size
17  *
18  * Note: the -2 stuff is intended to reduce the size
19  * just enough to avoiding internal (to malloc) allocation
20  * of overly large blocks to provide the requested size. 
21  * The stuff needs to be thought out better, doesn't deal
22  * well with mixed stack/malloc allocation of IDLs.
23  */
24 #define BDB_IDL_DB_SIZE         ((1<<16)-2) /* 32K IDL on disk */
25 #define BDB_IDL_UM_SIZE         ((1<<17)-2) /* 64K IDL in memory */
26 #define BDB_IDL_UM_SIZEOF       (BDB_IDL_UM_SIZE * sizeof(ID))
27
28 #define BDB_IDL_DB_MAX          (BDB_IDL_DB_SIZE-2)
29 /* #define BDB_IDL_DB_ALLOC     (BDB_IDL_DB_SIZE * sizeof(ID)) */
30
31 #define BDB_IDL_UM_MAX                  (BDB_IDL_UM_SIZE-2)
32 /* #define BDB_IDL_UM_ALLOC     (BDB_IDL_UM_SIZE * sizeof(ID)) */
33
34 #define BDB_IDL_IS_RANGE(ids)   ((ids)[0] == NOID)
35 #define BDB_IDL_RANGE_SIZE              (3)
36 #define BDB_IDL_RANGE_SIZEOF    (BDB_IDL_RANGE_SIZE * sizeof(ID))
37 #define BDB_IDL_SIZEOF(ids)             ((BDB_IDL_IS_RANGE(ids) \
38         ? BDB_IDL_RANGE_SIZE : ((ids)[0]+1)) * sizeof(ID))
39
40 #define BDB_IDL_RANGE_FIRST(ids)        ((ids)[1])
41 #define BDB_IDL_RANGE_LAST(ids)         ((ids)[2])
42
43 #define BDB_IDL_RANGE( ids, f, l ) \
44         do { \
45                 (ids)[0] = NOID; \
46                 (ids)[1] = (f);  \
47                 (ids)[2] = (l);  \
48         } while(0)
49
50 #define BDB_IDL_ZERO(ids) \
51         do { \
52                 (ids)[0] = 0; \
53                 (ids)[1] = 0; \
54                 (ids)[2] = 0; \
55         } while(0)
56
57 #define BDB_IDL_IS_ZERO(ids) ( (ids)[0] == 0 )
58 #define BDB_IDL_IS_ALL( range, ids ) ( (ids)[0] == NOID \
59         && (ids)[1] <= (range)[1] && (range)[2] <= (ids)[2] )
60
61 #define BDB_IDL_CPY( dst, src ) (AC_MEMCPY( dst, src, BDB_IDL_SIZEOF( src ) ))
62
63 #define BDB_IDL_ID( bdb, ids, id ) BDB_IDL_RANGE( ids, id, ((bdb)->bi_lastid) )
64 #define BDB_IDL_ALL( bdb, ids ) BDB_IDL_RANGE( ids, 1, ((bdb)->bi_lastid) )
65
66 #define BDB_IDL_FIRST( ids )    ( ids[1] )
67 #define BDB_IDL_LAST( ids )             ( BDB_IDL_IS_RANGE(ids) \
68         ? ids[2] : ids[ids[0]] )
69
70 #define BDB_IDL_N( ids )                ( BDB_IDL_IS_RANGE(ids) \
71         ? (ids[2]-ids[1])+1 : ids[0] )
72
73 LDAP_BEGIN_DECL
74 LDAP_END_DECL
75
76 #endif