]> git.sur5r.net Git - openldap/blob - servers/slapd/back-ldbm/proto-back-ldbm.h
Fix typo ldap_pvt_thread_mutex_lock -> ldap_pvt_thread_mutex_unlock
[openldap] / servers / slapd / back-ldbm / proto-back-ldbm.h
1 #ifndef _PROTO_BACK_LDBM
2 #define _PROTO_BACK_LDBM
3
4 #include <ldap_cdefs.h>
5
6 #include "external.h"
7
8 LDAP_BEGIN_DECL
9
10 /*
11  * alias.c
12  */
13 Entry *derefAlias_r LDAP_P((
14         Backend     *be,
15         Connection      *conn,
16         Operation       *op,
17         Entry       *e ));
18 char *derefDN LDAP_P((
19         Backend     *be,
20         Connection  *conn,
21         Operation   *op,
22         char        *dn ));
23
24 /*
25  * attr.c
26  */
27
28 void attr_masks LDAP_P(( struct ldbminfo *li, char *type, int *indexmask,
29  int *syntaxmask ));
30 void attr_index_config LDAP_P(( struct ldbminfo *li, char *fname, int lineno,
31  int argc, char **argv, int init ));
32 #ifdef SLAP_CLEANUP
33 void attr_index_destroy LDAP_P(( Avlnode *tree ));
34 #endif
35
36 /*
37  * cache.c
38  */
39
40 int cache_add_entry_rw LDAP_P(( struct cache *cache, Entry *e, int rw ));
41 int cache_update_entry LDAP_P(( struct cache *cache, Entry *e ));
42 void cache_return_entry_rw LDAP_P(( struct cache *cache, Entry *e, int rw ));
43 #define cache_return_entry_r(c, e) cache_return_entry_rw((c), (e), 0)
44 #define cache_return_entry_w(c, e) cache_return_entry_rw((c), (e), 1)
45
46 ID cache_find_entry_dn2id LDAP_P(( Backend *be, struct cache *cache, char *dn ));
47 Entry * cache_find_entry_id LDAP_P(( struct cache *cache, ID id, int rw ));
48 int cache_delete_entry LDAP_P(( struct cache *cache, Entry *e ));
49 #ifdef SLAP_CLEANUP
50 void cache_release_all LDAP_P(( struct cache *cache ));
51 #endif
52
53 /*
54  * dbcache.c
55  */
56
57 struct dbcache * ldbm_cache_open LDAP_P(( Backend *be, char *name, char *suffix,
58  int flags ));
59 void ldbm_cache_close LDAP_P(( Backend *be, struct dbcache *db ));
60 void ldbm_cache_really_close LDAP_P(( Backend *be, struct dbcache *db ));
61 void ldbm_cache_flush_all LDAP_P(( Backend *be ));
62 Datum ldbm_cache_fetch LDAP_P(( struct dbcache *db, Datum key ));
63 int ldbm_cache_store LDAP_P(( struct dbcache *db, Datum key, Datum data, int flags ));
64 int ldbm_cache_delete LDAP_P(( struct dbcache *db, Datum key ));
65
66 /*
67  * dn2id.c
68  */
69
70 int dn2id_add LDAP_P(( Backend *be, char *dn, ID id ));
71 ID dn2id LDAP_P(( Backend *be, char *dn ));
72 int dn2id_delete LDAP_P(( Backend *be, char *dn ));
73
74 Entry * dn2entry_rw LDAP_P(( Backend *be, char *dn, char **matched, int rw ));
75 #define dn2entry_r(be, dn, m) dn2entry_rw((be), (dn), (m), 0)
76 #define dn2entry_w(be, dn, m) dn2entry_rw((be), (dn), (m), 1)
77
78 /*
79  * filterindex.c
80  */
81
82 ID_BLOCK * filter_candidates LDAP_P(( Backend *be, Filter *f ));
83
84 /*
85  * id2children.c
86  */
87
88 int id2children_add LDAP_P(( Backend *be, Entry *p, Entry *e ));
89 int id2children_remove LDAP_P(( Backend *be, Entry *p, Entry *e ));
90 int has_children LDAP_P(( Backend *be, Entry *p ));
91
92 /*
93  * id2entry.c
94  */
95
96 int id2entry_add LDAP_P(( Backend *be, Entry *e ));
97 int id2entry_delete LDAP_P(( Backend *be, Entry *e ));
98
99 Entry * id2entry_rw LDAP_P(( Backend *be, ID id, int rw )); 
100 #define id2entry_r(be, id)      id2entry_rw((be), (id), 0)
101 #define id2entry_w(be, id)      id2entry_rw((be), (id), 1)
102
103 /*
104  * idl.c
105  */
106
107 ID_BLOCK * idl_alloc LDAP_P(( unsigned int nids ));
108 ID_BLOCK * idl_allids LDAP_P(( Backend *be ));
109 void idl_free LDAP_P(( ID_BLOCK *idl ));
110 ID_BLOCK * idl_fetch LDAP_P(( Backend *be, struct dbcache *db, Datum key ));
111 int idl_insert_key LDAP_P(( Backend *be, struct dbcache *db, Datum key, ID id ));
112 int idl_insert LDAP_P(( ID_BLOCK **idl, ID id, unsigned int maxids ));
113 int idl_delete_key LDAP_P(( Backend *be, struct dbcache *db, Datum key, ID id ));
114 ID_BLOCK * idl_intersection LDAP_P(( Backend *be, ID_BLOCK *a, ID_BLOCK *b ));
115 ID_BLOCK * idl_union LDAP_P(( Backend *be, ID_BLOCK *a, ID_BLOCK *b ));
116 ID_BLOCK * idl_notin LDAP_P(( Backend *be, ID_BLOCK *a, ID_BLOCK *b ));
117 ID idl_firstid LDAP_P(( ID_BLOCK *idl ));
118 ID idl_nextid LDAP_P(( ID_BLOCK *idl, ID id ));
119
120 /*
121  * index.c
122  */
123
124 int index_add_entry LDAP_P(( Backend *be, Entry *e ));
125 int index_add_mods LDAP_P(( Backend *be, LDAPModList *ml, ID id ));
126 ID_BLOCK * index_read LDAP_P(( Backend *be, char *type, int indextype, char *val ));
127 int index_add_values LDAP_P(( Backend *be, char *type, struct berval **vals, ID  id ));
128
129 /*
130  * kerberos.c
131  */
132
133 #ifdef HAVE_KERBEROS
134 /* krbv4_ldap_auth LDAP_P(( Backend *be, struct berval *cred, AUTH_DAT *ad )); */
135 #endif
136  
137 /*
138  * modify.c
139  * These prototypes are placed here because they are used by modify and
140  * modify rdn which are implemented in different files. 
141  */
142
143 int add_values LDAP_P(( Entry *e, LDAPMod *mod, char *dn ));
144 int delete_values LDAP_P(( Entry *e, LDAPMod *mod, char *dn ));
145 int replace_values LDAP_P(( Entry *e, LDAPMod *mod, char *dn ));
146
147 /*
148  * nextid.c
149  */
150
151 ID next_id LDAP_P(( Backend *be ));
152 void next_id_return LDAP_P(( Backend *be, ID id ));
153 ID next_id_get LDAP_P(( Backend *be ));
154 int next_id_save LDAP_P(( Backend *be ));
155
156 LDAP_END_DECL
157 #endif