]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb2/proto-back-bdb2.h
Back with previous change, use ac/time.h include instead.
[openldap] / servers / slapd / back-bdb2 / proto-back-bdb2.h
1 #ifndef _PROTO_BACK_BDB2
2 #define _PROTO_BACK_BDB2
3
4 #include <ldap_cdefs.h>
5
6 #include <ac/time.h>            /* Needed in add.c compare.c struct timeval */
7
8 #include "external.h"
9
10 LDAP_BEGIN_DECL
11
12 /*
13  * alias.c
14  */
15 Entry *bdb2i_derefAlias_r LDAP_P((
16         BackendDB   *be,
17         Connection      *conn,
18         Operation       *op,
19         Entry       *e ));
20 char *bdb2i_derefDN LDAP_P((
21         BackendDB   *be,
22         Connection  *conn,
23         Operation   *op,
24         char        *dn ));
25
26 /*
27  * attr.c
28  */
29
30 void bdb2i_attr_masks LDAP_P(( struct ldbminfo *li, char *type, int *indexmask,
31  int *syntaxmask ));
32 void bdb2i_attr_index_config LDAP_P(( struct ldbminfo *li, char *fname,
33  int lineno, int argc, char **argv, int init ));
34
35 /*
36  * cache.c
37  */
38
39 int bdb2i_cache_add_entry_rw LDAP_P(( struct cache *cache, Entry *e, int rw ));
40 int bdb2i_cache_update_entry LDAP_P(( struct cache *cache, Entry *e ));
41 void bdb2i_cache_return_entry_rw LDAP_P(( struct cache *cache, Entry *e,
42  int rw ));
43 #define bdb2i_cache_return_entry_r(c, e) bdb2i_cache_return_entry_rw((c), (e), 0)
44 #define bdb2i_cache_return_entry_w(c, e) bdb2i_cache_return_entry_rw((c), (e), 1)
45
46 ID bdb2i_cache_find_entry_dn2id LDAP_P(( BackendDB *be, struct cache *cache,
47  char *dn ));
48 Entry * bdb2i_cache_find_entry_id LDAP_P(( struct cache *cache, ID id, int rw ));
49 int bdb2i_cache_delete_entry LDAP_P(( struct cache *cache, Entry *e ));
50
51 /*
52  * dbcache.c
53  */
54
55 struct dbcache * bdb2i_cache_open LDAP_P(( BackendDB *be, char *name, char *suffix,
56  int flags ));
57 void bdb2i_cache_close LDAP_P(( BackendDB *be, struct dbcache *db ));
58 void bdb2i_cache_really_close LDAP_P(( BackendDB *be, struct dbcache *db ));
59 void bdb2i_cache_flush_all LDAP_P(( BackendDB *be ));
60 Datum bdb2i_cache_fetch LDAP_P(( struct dbcache *db, Datum key ));
61 int bdb2i_cache_store LDAP_P(( struct dbcache *db, Datum key, Datum data, int flags ));
62 int bdb2i_cache_delete LDAP_P(( struct dbcache *db, Datum key ));
63
64 /*
65  * dn2id.c
66  */
67
68 int bdb2i_dn2id_add LDAP_P(( BackendDB *be, char *dn, ID id ));
69 ID bdb2i_dn2id LDAP_P(( BackendDB *be, char *dn ));
70 int bdb2i_dn2id_delete LDAP_P(( BackendDB *be, char *dn ));
71
72 Entry * bdb2i_dn2entry_rw LDAP_P(( BackendDB *be, char *dn, char **matched,
73  int rw ));
74 #define bdb2i_dn2entry_r(be, dn, m) bdb2i_dn2entry_rw((be), (dn), (m), 0)
75 #define bdb2i_dn2entry_w(be, dn, m) bdb2i_dn2entry_rw((be), (dn), (m), 1)
76
77 /*
78  * filterindex.c
79  */
80
81 ID_BLOCK * bdb2i_filter_candidates LDAP_P(( BackendDB *be, Filter *f ));
82
83 /*
84  * id2children.c
85  */
86
87 int bdb2i_id2children_add LDAP_P(( BackendDB *be, Entry *p, Entry *e ));
88 int bdb2i_id2children_remove LDAP_P(( BackendDB *be, Entry *p, Entry *e ));
89 int bdb2i_has_children LDAP_P(( BackendDB *be, Entry *p ));
90
91 /*
92  * id2entry.c
93  */
94
95 int bdb2i_id2entry_add LDAP_P(( BackendDB *be, Entry *e ));
96 int bdb2i_id2entry_delete LDAP_P(( BackendDB *be, Entry *e ));
97
98 Entry * bdb2i_id2entry_rw LDAP_P(( BackendDB *be, ID id, int rw )); 
99 #define bdb2i_id2entry_r(be, id)  bdb2i_id2entry_rw((be), (id), 0)
100 #define bdb2i_id2entry_w(be, id)  bdb2i_id2entry_rw((be), (id), 1)
101
102 /*
103  * idl.c
104  */
105
106 ID_BLOCK * bdb2i_idl_alloc LDAP_P(( unsigned long nids ));
107 ID_BLOCK * bdb2i_idl_allids LDAP_P(( BackendDB *be ));
108 void bdb2i_idl_free LDAP_P(( ID_BLOCK *idl ));
109 ID_BLOCK * bdb2i_idl_fetch LDAP_P(( BackendDB *be, struct dbcache *db, Datum key ));
110 int bdb2i_idl_insert_key LDAP_P(( BackendDB *be, struct dbcache *db, Datum key, ID id ));
111 int bdb2i_idl_insert LDAP_P(( ID_BLOCK **idl, ID id, unsigned long maxids ));
112 int bdb2i_idl_delete_key LDAP_P(( BackendDB *be, struct dbcache *db, Datum key, ID id ));
113 ID_BLOCK * bdb2i_idl_intersection LDAP_P(( BackendDB *be, ID_BLOCK *a, ID_BLOCK *b ));
114 ID_BLOCK * bdb2i_idl_union LDAP_P(( BackendDB *be, ID_BLOCK *a, ID_BLOCK *b ));
115 ID_BLOCK * bdb2i_idl_notin LDAP_P(( BackendDB *be, ID_BLOCK *a, ID_BLOCK *b ));
116 ID bdb2i_idl_firstid LDAP_P(( ID_BLOCK *idl ));
117 ID bdb2i_idl_nextid LDAP_P(( ID_BLOCK *idl, ID id ));
118
119 /*
120  * index.c
121  */
122
123 int bdb2i_index_add_entry LDAP_P(( BackendDB *be, Entry *e ));
124 int bdb2i_index_add_mods LDAP_P(( BackendDB *be, LDAPModList *ml, ID id ));
125 ID_BLOCK * bdb2i_index_read LDAP_P(( BackendDB *be, char *type, int indextype, char *val ));
126 int bdb2i_index_add_values LDAP_P(( BackendDB *be, char *type, struct berval **vals, ID  id ));
127
128 /*
129  * kerberos.c
130  */
131
132 #ifdef HAVE_KERBEROS
133 /* bdb2i_krbv4_ldap_auth LDAP_P(( BackendDB *be, struct berval *cred, AUTH_DAT *ad )); */
134 #endif
135
136 /*
137  * modify.c
138  * These prototypes are placed here because they are used by modify and
139  * modify rdn which are implemented in different files. 
140  */
141
142 int bdb2i_add_values LDAP_P(( Entry *e, LDAPMod *mod, char *dn ));
143 int bdb2i_delete_values LDAP_P(( Entry *e, LDAPMod *mod, char *dn ));
144 int bdb2i_replace_values LDAP_P(( Entry *e, LDAPMod *mod, char *dn ));
145
146 /*
147  * nextid.c
148  */
149
150 ID bdb2i_next_id LDAP_P(( BackendDB *be ));
151 void bdb2i_next_id_return LDAP_P(( BackendDB *be, ID id ));
152 ID bdb2i_next_id_get LDAP_P(( BackendDB *be ));
153 int bdb2i_next_id_save LDAP_P(( BackendDB *be ));
154
155 /*
156  *  startup.c
157  */
158
159 int bdb2i_back_startup     LDAP_P(( BackendInfo *bi ));
160 int bdb2i_back_shutdown    LDAP_P(( BackendInfo *bi ));
161 int bdb2i_back_db_startup  LDAP_P(( BackendDB *be ));
162 int bdb2i_back_db_shutdown LDAP_P(( BackendDB *be ));
163
164 /*
165  *  timing.c
166  */
167
168 void bdb2i_uncond_start_timing LDAP_P(( struct timeval *time1 ));
169 #define bdb2i_start_timing(bi,time1)  if ( with_timing( bi )) bdb2i_uncond_start_timing( (time1) )
170 void bdb2i_uncond_stop_timing LDAP_P(( struct timeval time1,
171   char *func, Connection *conn, Operation *op, int level ));
172 #define bdb2i_stop_timing(bi,time1,func,conn,op)  if ( with_timing( bi )) bdb2i_uncond_stop_timing( (time1), (func), (conn), (op), LDAP_DEBUG_ANY )
173
174 /*
175  * porter.c
176  */
177
178 int bdb2i_enter_backend_rw  LDAP_P(( DB_LOCK *lock, int writer ));
179 #define bdb2i_enter_backend_r(lock)  bdb2i_enter_backend_rw((lock), 0 )
180 #define bdb2i_enter_backend_w(lock)  bdb2i_enter_backend_rw((lock), 1 )
181 int bdb2i_leave_backend_rw LDAP_P(( DB_LOCK lock, int writer ));
182 #define bdb2i_leave_backend_r(lock)  bdb2i_leave_backend_rw((lock), 0 )
183 #define bdb2i_leave_backend_w(lock)  bdb2i_leave_backend_rw((lock), 1 )
184
185 /*
186  *  txn.c
187  */
188
189 int bdb2i_txn_head_init  LDAP_P(( BDB2_TXN_HEAD *head ));
190 void bdb2i_txn_attr_config LDAP_P((
191  struct ldbminfo  *li,
192  char *attr,
193  int open ));
194 int bdb2i_txn_open_files LDAP_P(( BackendDB *be ));
195 void bdb2i_txn_close_files LDAP_P(( BackendDB *be ));
196 BDB2_TXN_FILES *bdb2i_get_db_file_cache LDAP_P((
197  struct ldbminfo *li,
198  char *name ));
199 int bdb2i_check_additional_attr_index LDAP_P(( struct ldbminfo *li ));
200 void bdb2i_check_default_attr_index_add LDAP_P((
201  struct ldbminfo *li,
202  Entry *e ));
203 void bdb2i_check_default_attr_index_mod LDAP_P((
204  struct ldbminfo *li,
205  LDAPModList *modlist ));
206 ID bdb2i_get_nextid  LDAP_P(( BackendDB *be ));
207 int bdb2i_put_nextid LDAP_P(( BackendDB *be, ID id ));
208 LDBM bdb2i_db_open LDAP_P(( char *name, int type, int rw, int mode,
209  int dbcachesize ));
210 int bdb2i_db_store   LDAP_P(( LDBM ldbm, Datum key, Datum data, int flags ));
211 int bdb2i_db_delete  LDAP_P(( LDBM ldbm, Datum key ));
212 Datum bdb2i_db_fetch LDAP_P(( LDBM ldbm, Datum key ));
213 Datum bdb2i_db_firstkey LDAP_P(( LDBM ldbm, DBC **dbch ));
214 Datum bdb2i_db_nextkey  LDAP_P(( LDBM ldbm, Datum key, DBC *dbcp ));
215 int bdb2i_start_transction   LDAP_P(( DB_TXNMGR *txmgr ));
216 int bdb2i_finish_transaction LDAP_P(( ));
217 int bdb2i_set_txn_checkpoint LDAP_P(( DB_TXNMGR *txmgr, int forced ));
218
219
220 LDAP_END_DECL
221 #endif