]> git.sur5r.net Git - openldap/blob - servers/slapd/back-mdb/proto-mdb.h
8662b11e4227d5fd0652c7d167b9ee6cf3c5a9be
[openldap] / servers / slapd / back-mdb / proto-mdb.h
1 /* $OpenLDAP$ */
2 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
3  *
4  * Copyright 2000-2011 The OpenLDAP Foundation.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted only as authorized by the OpenLDAP
9  * Public License.
10  *
11  * A copy of this license is available in the file LICENSE in the
12  * top-level directory of the distribution or, alternatively, at
13  * <http://www.OpenLDAP.org/license.html>.
14  */
15
16 #ifndef _PROTO_MDB_H
17 #define _PROTO_MDB_H
18
19 LDAP_BEGIN_DECL
20
21 #define MDB_UCTYPE      "MDB"
22
23 /*
24  * attr.c
25  */
26
27 AttrInfo *mdb_attr_mask( struct mdb_info *mdb,
28         AttributeDescription *desc );
29
30 void mdb_attr_flush( struct mdb_info *mdb );
31
32 int mdb_attr_slot( struct mdb_info *mdb,
33         AttributeDescription *desc, int *insert );
34
35 int mdb_attr_dbs_open( BackendDB *be, MDB_txn *txn, struct config_reply_s *cr );
36 void mdb_attr_dbs_close( struct mdb_info *mdb, MDB_txn *txn );
37
38 int mdb_attr_index_config LDAP_P(( struct mdb_info *mdb,
39         const char *fname, int lineno,
40         int argc, char **argv, struct config_reply_s *cr ));
41
42 void mdb_attr_index_unparse LDAP_P(( struct mdb_info *mdb, BerVarray *bva ));
43 void mdb_attr_index_destroy LDAP_P(( struct mdb_info *mdb ));
44 void mdb_attr_index_free LDAP_P(( struct mdb_info *mdb,
45         AttributeDescription *ad ));
46
47 void mdb_attr_info_free( AttrInfo *ai );
48
49 int mdb_ad_read( struct mdb_info *mdb, MDB_txn *txn );
50 int mdb_ad_get( struct mdb_info *mdb, MDB_txn *txn, AttributeDescription *ad );
51
52 /*
53  * config.c
54  */
55
56 int mdb_back_init_cf( BackendInfo *bi );
57
58 /*
59  * dn2entry.c
60  */
61
62 int mdb_dn2entry LDAP_P(( Operation *op, MDB_txn *tid,
63         struct berval *dn, Entry **e, int matched ));
64
65 /*
66  * dn2id.c
67  */
68
69 int mdb_dn2id(
70         Operation *op,
71         MDB_txn *txn,
72         struct berval *ndn,
73         ID *id,
74         struct berval *matched,
75         struct berval *nmatched );
76
77 int mdb_dn2id_add(
78         Operation *op,
79         MDB_txn *tid,
80         ID pid,
81         Entry *e );
82
83 int mdb_dn2id_delete(
84         Operation *op,
85         MDB_txn *tid,
86         ID pid,
87         Entry *e );
88
89 int mdb_dn2id_children(
90         Operation *op,
91         MDB_txn *tid,
92         Entry *e );
93
94 int mdb_dn2sups (
95         Operation *op,
96         MDB_txn *tid,
97         struct berval *dn,
98         ID *sups
99         );
100
101 int mdb_dn2idl(
102         Operation *op,
103         MDB_txn *txn,
104         struct berval *ndn,
105         ID eid,
106         ID *ids,
107         ID *stack );
108
109 int mdb_dn2id_parent(
110         Operation *op,
111         MDB_txn *txn,
112         ID eid,
113         ID *idp );
114
115 int mdb_id2name(
116         Operation *op,
117         MDB_txn *txn,
118         MDB_cursor **cursp,
119         ID eid,
120         struct berval *name,
121         struct berval *nname);
122
123 int mdb_idscope(
124         Operation *op,
125         MDB_txn *txn,
126         ID base,
127         ID *ids,
128         ID *res );
129
130 int mdb_idscopes(
131         Operation *op,
132         IdScopes *isc );
133
134 MDB_cmp_func mdb_dup_compare;
135
136 /*
137  * filterentry.c
138  */
139
140 int mdb_filter_candidates(
141         Operation *op,
142         MDB_txn *txn,
143         Filter  *f,
144         ID *ids,
145         ID *tmp,
146         ID *stack );
147
148 /*
149  * id2entry.c
150  */
151
152 int mdb_id2entry_add(
153         Operation *op,
154         MDB_txn *tid,
155         Entry *e );
156
157 int mdb_id2entry_update(
158         Operation *op,
159         MDB_txn *tid,
160         Entry *e );
161
162 int mdb_id2entry_delete(
163         BackendDB *be,
164         MDB_txn *tid,
165         Entry *e);
166
167 int mdb_id2entry(
168         Operation *op,
169         MDB_cursor *mc,
170         ID id,
171         Entry **e);
172
173 int mdb_entry_return( Operation *op, Entry *e );
174 BI_entry_release_rw mdb_entry_release;
175 BI_entry_get_rw mdb_entry_get;
176
177 int mdb_entry_decode( Operation *op, MDB_val *data, Entry **e );
178
179 void mdb_reader_flush( MDB_env *env );
180 int mdb_opinfo_get( Operation *op, struct mdb_info *mdb, int rdonly, mdb_op_info **moi );
181
182 /*
183  * idl.c
184  */
185
186 unsigned mdb_idl_search( ID *ids, ID id );
187
188 int mdb_idl_fetch_key(
189         BackendDB       *be,
190         MDB_txn         *txn,
191         MDB_dbi         dbi,
192         MDB_val         *key,
193         ID                      *ids,
194         MDB_cursor      **saved_cursor,
195         int                     get_flag );
196
197 int mdb_idl_insert( ID *ids, ID id );
198
199 typedef int (mdb_idl_keyfunc)(
200         MDB_cursor *mc,
201         MDB_val *key,
202         ID id );
203
204 mdb_idl_keyfunc mdb_idl_insert_keys;
205 mdb_idl_keyfunc mdb_idl_delete_keys;
206
207 int
208 mdb_idl_intersection(
209         ID *a,
210         ID *b );
211
212 int
213 mdb_idl_union(
214         ID *a,
215         ID *b );
216
217 ID mdb_idl_first( ID *ids, ID *cursor );
218 ID mdb_idl_next( ID *ids, ID *cursor );
219
220 void mdb_idl_sort( ID *ids, ID *tmp );
221 int mdb_idl_append( ID *a, ID *b );
222 int mdb_idl_append_one( ID *ids, ID id );
223
224
225 /*
226  * index.c
227  */
228
229 extern AttrInfo *
230 mdb_index_mask LDAP_P((
231         Backend *be,
232         AttributeDescription *desc,
233         struct berval *name ));
234
235 extern int
236 mdb_index_param LDAP_P((
237         Backend *be,
238         AttributeDescription *desc,
239         int ftype,
240         MDB_dbi *dbi,
241         slap_mask_t *mask,
242         struct berval *prefix ));
243
244 extern int
245 mdb_index_values LDAP_P((
246         Operation *op,
247         MDB_txn *txn,
248         AttributeDescription *desc,
249         BerVarray vals,
250         ID id,
251         int opid ));
252
253 extern int
254 mdb_index_recset LDAP_P((
255         struct mdb_info *mdb,
256         Attribute *a,
257         AttributeType *type,
258         struct berval *tags,
259         IndexRec *ir ));
260
261 extern int
262 mdb_index_recrun LDAP_P((
263         Operation *op,
264         struct mdb_info *mdb,
265         IndexRec *ir,
266         ID id,
267         int base ));
268
269 int mdb_index_entry LDAP_P(( Operation *op, MDB_txn *t, int r, Entry *e ));
270
271 #define mdb_index_entry_add(op,t,e) \
272         mdb_index_entry((op),(t),SLAP_INDEX_ADD_OP,(e))
273 #define mdb_index_entry_del(op,t,e) \
274         mdb_index_entry((op),(t),SLAP_INDEX_DELETE_OP,(e))
275
276 /*
277  * key.c
278  */
279
280 extern int
281 mdb_key_read(
282     Backend     *be,
283         MDB_txn *txn,
284         MDB_dbi dbi,
285     struct berval *k,
286         ID *ids,
287     MDB_cursor **saved_cursor,
288         int get_flags );
289
290 /*
291  * nextid.c
292  */
293
294 int mdb_next_id( BackendDB *be, MDB_txn *tid, ID *id );
295
296 /*
297  * modify.c
298  */
299
300 int mdb_modify_internal(
301         Operation *op,
302         MDB_txn *tid,
303         Modifications *modlist,
304         Entry *e,
305         const char **text,
306         char *textbuf,
307         size_t textlen );
308
309 /*
310  * monitor.c
311  */
312
313 int mdb_monitor_db_init( BackendDB *be );
314 int mdb_monitor_db_open( BackendDB *be );
315 int mdb_monitor_db_close( BackendDB *be );
316 int mdb_monitor_db_destroy( BackendDB *be );
317
318 #ifdef MDB_MONITOR_IDX
319 int
320 mdb_monitor_idx_add(
321         struct mdb_info         *mdb,
322         AttributeDescription    *desc,
323         slap_mask_t             type );
324 #endif /* MDB_MONITOR_IDX */
325
326 /*
327  * former external.h
328  */
329
330 extern BI_init                          mdb_back_initialize;
331
332 extern BI_db_config                     mdb_db_config;
333
334 extern BI_op_add                        mdb_add;
335 extern BI_op_bind                       mdb_bind;
336 extern BI_op_compare                    mdb_compare;
337 extern BI_op_delete                     mdb_delete;
338 extern BI_op_modify                     mdb_modify;
339 extern BI_op_modrdn                     mdb_modrdn;
340 extern BI_op_search                     mdb_search;
341 extern BI_op_extended                   mdb_extended;
342
343 extern BI_chk_referrals                 mdb_referrals;
344
345 extern BI_operational                   mdb_operational;
346
347 extern BI_has_subordinates              mdb_hasSubordinates;
348
349 /* tools.c */
350 extern BI_tool_entry_open               mdb_tool_entry_open;
351 extern BI_tool_entry_close              mdb_tool_entry_close;
352 extern BI_tool_entry_first_x            mdb_tool_entry_first_x;
353 extern BI_tool_entry_next               mdb_tool_entry_next;
354 extern BI_tool_entry_get                mdb_tool_entry_get;
355 extern BI_tool_entry_put                mdb_tool_entry_put;
356 extern BI_tool_entry_reindex            mdb_tool_entry_reindex;
357 extern BI_tool_dn2id_get                mdb_tool_dn2id_get;
358 extern BI_tool_entry_modify             mdb_tool_entry_modify;
359
360 LDAP_END_DECL
361
362 #endif /* _PROTO_MDB_H */