]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb/idl.h
An incremental step.
[openldap] / servers / slapd / back-bdb / idl.h
1 /* back-bdb.h - ldap ldbm back-end header file */
2 /* $OpenLDAP$ */
3 /*
4  * Copyright 2000 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         /* larger IDL sizes - likely should be even bigger */
16 #define BDB_IDL_DB_SIZE         (1<<16) /* 64K IDL on disk */
17 #define BDB_IDL_SIZE            (1<<17) /* 128K IDL in memory */
18
19 #define BDB_IDL_DB_MAX          (BDB_IDL_DB_SIZE-32)
20 /* #define BDB_IDL_DB_ALLOC     (BDB_IDL_DB_SIZE * sizeof(ID)) */
21
22 #define BDB_IDL_MAX                     (BDB_IDL_DB_SIZE-32)
23 /* #define BDB_IDL_DB_ALLOC     (BDB_IDL_DB_SIZE * sizeof(ID)) */
24
25 #define BDB_IDL_IS_RANGE(ids)   ((ids)[0] == NOID)
26 #define BDB_IDL_RANGE_SIZE      (3 * sizeof(ID))
27 #define BDB_IDL_SIZEOF(ids) ( BDB_IDL_IS_RANGE(ids) \
28         ? BDB_IDL_RANGE_SIZE : ((ids)[0]+1) * sizeof(ID) )
29
30 #define BDB_IDL_RANGE( ids, f, l ) \
31         do { \
32                 (ids)[0] = NOID; \
33                 (ids)[1] = (f);  \
34                 (ids)[2] = (l);  \
35         } while(0)
36
37 #define BDB_IDL_ZERO(ids) \
38         do { \
39                 (ids)[0] = 0; \
40                 (ids)[1] = 0; \
41                 (ids)[2] = 0; \
42         } while(0);
43
44 #define BDB_IDL_IS_ZERO(ids) ( (ids)[0] == 0 )
45 #define BDB_IDL_IS_ALL( range, ids ) ( (ids)[0] == NOID \
46         && (ids)[1] <= (range)[1] && (range)[2] <= (ids)[2] )
47
48 #define BDB_IDL_CPY( dst, src ) (memcpy( dst, src, BDB_IDL_SIZEOF( src ) ))
49
50 #define BDB_IDL_ID( bdb, ids, id ) BDB_IDL_RANGE( ids, id, ((bdb)->bi_lastid) )
51 #define BDB_IDL_ALL( bdb, ids ) BDB_IDL_RANGE( ids, 1, ((bdb)->bi_lastid) )
52
53 #define BDB_IDL_FIRST( ids )    ( ids[1] )
54 #define BDB_IDL_LAST( ids )             ( BDB_IDL_IS_RANGE(ids) \
55         ? ids[2] : ids[ids[0]] )
56
57 #define BDB_IDL_N( ids )                ( BDB_IDL_IS_RANGE(ids) \
58         ? (ids[2]-ids[1])+1 : ids[0] )
59
60 LDAP_BEGIN_DECL
61 LDAP_END_DECL
62
63 #endif