]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldbm/proto-back-ldbm.h
Fix IRIX sc_mask conflict
[openldap] / servers / slapd / back-ldbm / proto-back-ldbm.h
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6
7 #ifndef _PROTO_BACK_LDBM
8 #define _PROTO_BACK_LDBM
9
10 #include <ldap_cdefs.h>
11
12 #include "external.h"
13
14 LDAP_BEGIN_DECL
15
16 /*
17  * alias.c
18  */
19 Entry *deref_internal_r LDAP_P((
20         Backend *be,
21         Entry *e,
22         struct berval *dn,
23         int *err,
24         Entry **matched,
25         const char **text ));
26
27 #define deref_entry_r( be, e, err, matched, text ) \
28         deref_internal_r( be, e, NULL, err, matched, text )
29 #define deref_dn_r( be, dn, err, matched, text ) \
30         deref_internal_r( be, NULL, dn, err, matched, text)
31
32 /*
33  * attr.c
34  */
35
36 void attr_mask LDAP_P(( struct ldbminfo *li,
37         AttributeDescription *desc,
38         slap_mask_t *indexmask ));
39
40 int attr_index_config LDAP_P(( struct ldbminfo *li,
41         const char *fname, int lineno,
42         int argc, char **argv ));
43 void attr_index_destroy LDAP_P(( Avlnode *tree ));
44
45 /*
46  * cache.c
47  */
48
49 int cache_add_entry_rw LDAP_P(( Cache *cache, Entry *e, int rw ));
50 int cache_update_entry LDAP_P(( Cache *cache, Entry *e ));
51 void cache_return_entry_rw LDAP_P(( Cache *cache, Entry *e, int rw ));
52 #define cache_return_entry_r(c, e) cache_return_entry_rw((c), (e), 0)
53 #define cache_return_entry_w(c, e) cache_return_entry_rw((c), (e), 1)
54 void cache_entry_commit LDAP_P(( Entry *e ));
55
56 ID cache_find_entry_ndn2id LDAP_P(( Backend *be, Cache *cache, struct berval *ndn ));
57 Entry * cache_find_entry_id LDAP_P(( Cache *cache, ID id, int rw ));
58 int cache_delete_entry LDAP_P(( Cache *cache, Entry *e ));
59 void cache_release_all LDAP_P(( Cache *cache ));
60
61 /*
62  * dbcache.c
63  */
64
65 DBCache * ldbm_cache_open LDAP_P(( Backend *be,
66         const char *name, const char *suffix, int flags ));
67 void ldbm_cache_close LDAP_P(( Backend *be, DBCache *db ));
68 void ldbm_cache_really_close LDAP_P(( Backend *be, DBCache *db ));
69 void ldbm_cache_flush_all LDAP_P(( Backend *be ));
70 void ldbm_cache_sync LDAP_P(( Backend *be ));
71 Datum ldbm_cache_fetch LDAP_P(( DBCache *db, Datum key ));
72 int ldbm_cache_store LDAP_P(( DBCache *db, Datum key, Datum data, int flags ));
73 int ldbm_cache_delete LDAP_P(( DBCache *db, Datum key ));
74 void *ldbm_cache_sync_daemon LDAP_P(( void *));
75
76 /*
77  * dn2id.c
78  */
79
80 int dn2id_add LDAP_P(( Backend *be, struct berval *dn, ID id ));
81 int dn2id LDAP_P(( Backend *be, struct berval *dn, ID *idp ));
82 int dn2idl LDAP_P(( Backend *be, struct berval *dn, int prefix, ID_BLOCK **idlp ));
83 int dn2id_delete LDAP_P(( Backend *be, struct berval *dn, ID id ));
84
85 Entry * dn2entry_rw LDAP_P(( Backend *be, struct berval *dn, Entry **matched, int rw ));
86 #define dn2entry_r(be, dn, m) dn2entry_rw((be), (dn), (m), 0)
87 #define dn2entry_w(be, dn, m) dn2entry_rw((be), (dn), (m), 1)
88
89 /*
90  * entry.c
91  */
92 int ldbm_back_entry_release_rw LDAP_P(( Backend *be,
93         Connection *conn, Operation *op,
94         Entry *e, int rw ));
95
96 /*
97  * filterindex.c
98  */
99
100 ID_BLOCK * filter_candidates LDAP_P(( Backend *be, Filter *f ));
101
102 /*
103  * id2children.c
104  */
105
106 int id2children_add LDAP_P(( Backend *be, Entry *p, Entry *e ));
107 int id2children_remove LDAP_P(( Backend *be, Entry *p, Entry *e ));
108 int has_children LDAP_P(( Backend *be, Entry *p ));
109
110 /*
111  * id2entry.c
112  */
113
114 int id2entry_add LDAP_P(( Backend *be, Entry *e ));
115 int id2entry_delete LDAP_P(( Backend *be, Entry *e ));
116
117 Entry * id2entry_rw LDAP_P(( Backend *be, ID id, int rw )); 
118 #define id2entry_r(be, id)      id2entry_rw((be), (id), 0)
119 #define id2entry_w(be, id)      id2entry_rw((be), (id), 1)
120
121 /*
122  * idl.c
123  */
124
125 ID_BLOCK * idl_alloc LDAP_P(( unsigned int nids ));
126 ID_BLOCK * idl_allids LDAP_P(( Backend *be ));
127 void idl_free LDAP_P(( ID_BLOCK *idl ));
128 ID_BLOCK * idl_fetch LDAP_P(( Backend *be, DBCache *db, Datum key ));
129 int idl_insert_key LDAP_P(( Backend *be, DBCache *db, Datum key, ID id ));
130 int idl_insert LDAP_P(( ID_BLOCK **idl, ID id, unsigned int maxids ));
131 int idl_delete_key LDAP_P(( Backend *be, DBCache *db, Datum key, ID id ));
132 ID_BLOCK * idl_intersection LDAP_P(( Backend *be, ID_BLOCK *a, ID_BLOCK *b ));
133 ID_BLOCK * idl_union LDAP_P(( Backend *be, ID_BLOCK *a, ID_BLOCK *b ));
134 ID_BLOCK * idl_notin LDAP_P(( Backend *be, ID_BLOCK *a, ID_BLOCK *b ));
135 ID idl_firstid LDAP_P(( ID_BLOCK *idl, ID *cursor ));
136 ID idl_nextid LDAP_P(( ID_BLOCK *idl, ID *cursor ));
137
138 /*
139  * index.c
140  */
141 extern int
142 index_is_indexed LDAP_P((
143         Backend *be,
144         AttributeDescription *desc ));
145
146 extern int
147 index_param LDAP_P((
148         Backend *be,
149         AttributeDescription *desc,
150         int ftype,
151         char **dbname,
152         slap_mask_t *mask,
153         struct berval *prefix ));
154
155 extern int
156 index_values LDAP_P((
157         Backend *be,
158         AttributeDescription *desc,
159         BerVarray vals,
160         ID id,
161         int op ));
162
163 int index_entry LDAP_P(( Backend *be, int r, Entry *e, Attribute *ap ));
164 #define index_entry_add(be,e,ap) index_entry((be),SLAP_INDEX_ADD_OP,(e),(ap))
165 #define index_entry_del(be,e,ap) index_entry((be),SLAP_INDEX_DELETE_OP,(e),(ap))
166
167
168 /*
169  * key.c
170  */
171 extern int
172 key_change LDAP_P((
173     Backend             *be,
174     DBCache     *db,
175     struct berval *k,
176     ID                  id,
177     int                 op ));
178 extern int
179 key_read LDAP_P((
180     Backend     *be,
181         DBCache *db,
182     struct berval *k,
183         ID_BLOCK **idout ));
184
185 /*
186  * passwd.c
187  */
188 extern BI_op_extended ldbm_back_exop_passwd;
189
190 /*
191  * modify.c
192  * These prototypes are placed here because they are used by modify and
193  * modify rdn which are implemented in different files. 
194  *
195  * We need ldbm_internal_modify here because of LDAP modrdn & modify use 
196  * it. If we do not add this, there would be a bunch of code replication 
197  * here and there and of course the likelihood of bugs increases.
198  * Juan C. Gomez (gomez@engr.sgi.com) 05/18/99
199  * 
200  */
201
202 /* returns LDAP error code indicating error OR SLAPD_ABANDON */
203 int ldbm_modify_internal LDAP_P((Backend *be,
204         Connection *conn, Operation *op,
205         const char *dn, Modifications *mods, Entry *e,
206         const char **text, char *textbuf, size_t textlen ));
207
208 /*
209  * nextid.c
210  */
211
212 int next_id LDAP_P(( Backend *be, ID *idp ));
213 int next_id_get LDAP_P(( Backend *be, ID *idp ));
214 int next_id_write LDAP_P(( Backend *be, ID id ));
215
216 LDAP_END_DECL
217 #endif