]> git.sur5r.net Git - openldap/blob - servers/slapd/back-bdb2/proto-back-bdb2.h
Introduction of a new Berkeley DB version 2 (!) specific backend.
[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 "external.h"
7
8 LDAP_BEGIN_DECL
9
10 /*
11  * alias.c
12  */
13 Entry *bdb2i_derefAlias_r LDAP_P((
14         Backend     *be,
15         Connection      *conn,
16         Operation       *op,
17         Entry       *e ));
18 char *bdb2i_derefDN LDAP_P((
19         Backend     *be,
20         Connection  *conn,
21         Operation   *op,
22         char        *dn ));
23
24 /*
25  * attr.c
26  */
27
28 void bdb2i_attr_masks LDAP_P(( struct ldbminfo *li, char *type, int *indexmask,
29  int *syntaxmask ));
30 void bdb2i_attr_index_config LDAP_P(( struct ldbminfo *li, char *fname,
31  int lineno, int argc, char **argv, int init ));
32
33 /*
34  * cache.c
35  */
36
37 void bdb2i_cache_set_state LDAP_P(( struct cache *cache, Entry *e, int state ));
38 void bdb2i_cache_return_entry_r LDAP_P(( struct cache *cache, Entry *e ));
39 void bdb2i_cache_return_entry_w LDAP_P(( struct cache *cache, Entry *e ));
40 int bdb2i_cache_add_entry_lock LDAP_P(( struct cache *cache, Entry *e,
41  int state ));
42 ID bdb2i_cache_find_entry_dn2id LDAP_P(( Backend *be, struct cache *cache,
43  char *dn ));
44 Entry * bdb2i_cache_find_entry_id LDAP_P(( struct cache *cache, ID id, int rw ));
45 int bdb2i_cache_delete_entry LDAP_P(( struct cache *cache, Entry *e ));
46
47 /*
48  * dbcache.c
49  */
50
51 struct dbcache * bdb2i_cache_open LDAP_P(( Backend *be, char *name, char *suffix,
52  int flags ));
53 void bdb2i_cache_close LDAP_P(( Backend *be, struct dbcache *db ));
54 void bdb2i_cache_really_close LDAP_P(( Backend *be, struct dbcache *db ));
55 void bdb2i_cache_flush_all LDAP_P(( Backend *be ));
56 Datum bdb2i_cache_fetch LDAP_P(( struct dbcache *db, Datum key ));
57 int bdb2i_cache_store LDAP_P(( struct dbcache *db, Datum key, Datum data, int flags ));
58 int bdb2i_cache_delete LDAP_P(( struct dbcache *db, Datum key ));
59
60 /*
61  * dn2id.c
62  */
63
64 int bdb2i_dn2id_add LDAP_P(( Backend *be, char *dn, ID id ));
65 ID bdb2i_dn2id LDAP_P(( Backend *be, char *dn ));
66 int bdb2i_dn2id_delete LDAP_P(( Backend *be, char *dn ));
67 Entry * bdb2i_dn2entry_r LDAP_P(( Backend *be, char *dn, char **matched ));
68 Entry * bdb2i_dn2entry_w LDAP_P(( Backend *be, char *dn, char **matched ));
69
70 /*
71  * filterindex.c
72  */
73
74 ID_BLOCK * bdb2i_filter_candidates LDAP_P(( Backend *be, Filter *f ));
75
76 /*
77  * id2children.c
78  */
79
80 int bdb2i_id2children_add LDAP_P(( Backend *be, Entry *p, Entry *e ));
81 int bdb2i_id2children_remove LDAP_P(( Backend *be, Entry *p, Entry *e ));
82 int bdb2i_has_children LDAP_P(( Backend *be, Entry *p ));
83
84 /*
85  * id2entry.c
86  */
87
88 int bdb2i_id2entry_add LDAP_P(( Backend *be, Entry *e ));
89 int bdb2i_id2entry_delete LDAP_P(( Backend *be, Entry *e ));
90 Entry * bdb2i_id2entry LDAP_P(( Backend *be, ID id, int rw )); 
91 Entry * bdb2i_id2entry_r LDAP_P(( Backend *be, ID id ));
92 Entry * bdb2i_id2entry_w LDAP_P(( Backend *be, ID id ));
93
94 /*
95  * idl.c
96  */
97
98 ID_BLOCK * bdb2i_idl_alloc LDAP_P(( int nids ));
99 ID_BLOCK * bdb2i_idl_allids LDAP_P(( Backend *be ));
100 void bdb2i_idl_free LDAP_P(( ID_BLOCK *idl ));
101 ID_BLOCK * bdb2i_idl_fetch LDAP_P(( Backend *be, struct dbcache *db, Datum key ));
102 int bdb2i_idl_insert_key LDAP_P(( Backend *be, struct dbcache *db, Datum key, ID id ));
103 int bdb2i_idl_insert LDAP_P(( ID_BLOCK **idl, ID id, int maxids ));
104 int bdb2i_idl_delete_key LDAP_P(( Backend *be, struct dbcache *db, Datum key, ID id ));
105 ID_BLOCK * bdb2i_idl_intersection LDAP_P(( Backend *be, ID_BLOCK *a, ID_BLOCK *b ));
106 ID_BLOCK * bdb2i_idl_union LDAP_P(( Backend *be, ID_BLOCK *a, ID_BLOCK *b ));
107 ID_BLOCK * bdb2i_idl_notin LDAP_P(( Backend *be, ID_BLOCK *a, ID_BLOCK *b ));
108 ID bdb2i_idl_firstid LDAP_P(( ID_BLOCK *idl ));
109 ID bdb2i_idl_nextid LDAP_P(( ID_BLOCK *idl, ID id ));
110
111 /*
112  * index.c
113  */
114
115 int bdb2i_index_add_entry LDAP_P(( Backend *be, Entry *e ));
116 int bdb2i_index_add_mods LDAP_P(( Backend *be, LDAPModList *ml, ID id ));
117 ID_BLOCK * bdb2i_index_read LDAP_P(( Backend *be, char *type, int indextype, char *val ));
118 int bdb2i_index_add_values LDAP_P(( Backend *be, char *type, struct berval **vals, ID  id ));
119
120 /*
121  * kerberos.c
122  */
123
124 #ifdef HAVE_KERBEROS
125 /* bdb2i_krbv4_ldap_auth LDAP_P(( Backend *be, struct berval *cred, AUTH_DAT *ad )); */
126 #endif
127
128 /*
129  * nextid.c
130  */
131
132 ID bdb2i_next_id LDAP_P(( Backend *be ));
133 void bdb2i_next_id_return LDAP_P(( Backend *be, ID id ));
134 ID bdb2i_next_id_get LDAP_P(( Backend *be ));
135 int bdb2i_next_id_save LDAP_P(( Backend *be ));
136
137 /*
138  *  timing.c
139  */
140
141 char *bdb2i_elapsed LDAP_P(( struct timeval firsttime,
142  struct timeval secondtime ));
143
144 /*
145  * porter.c
146  */
147
148 int bdb2i_enter_backend_r  LDAP_P(( DB_ENV *dbEnv, DB_LOCK *lock ));
149 int bdb2i_enter_backend_w  LDAP_P(( DB_ENV *dbEnv, DB_LOCK *lock ));
150 int bdb2i_leave_backend    LDAP_P(( DB_ENV *dbEnv, DB_LOCK lock ));
151
152 /*
153  *  txn.c
154  */
155
156 void bdb2i_txn_head_init  LDAP_P(( BDB2_TXN_HEAD *head ));
157 void bdb2i_txn_attr_config LDAP_P((
158  struct ldbminfo  *li,
159  char *attr,
160  int open ));
161 void bdb2i_txn_open_files LDAP_P(( struct ldbminfo *li ));
162 void bdb2i_txn_close_files LDAP_P(( BDB2_TXN_HEAD *head ));
163 BDB2_TXN_FILES *bdb2i_get_db_file_cache LDAP_P((
164  struct ldbminfo *li,
165  char *name ));
166 void bdb2i_check_additional_attr_index LDAP_P(( struct ldbminfo *li ));
167 void bdb2i_check_default_attr_index_add LDAP_P((
168  struct ldbminfo *li,
169  Entry *e ));
170 void bdb2i_check_default_attr_index_mod LDAP_P((
171  struct ldbminfo *li,
172  LDAPModList *modlist ));
173
174
175
176 LDAP_END_DECL
177 #endif