]> git.sur5r.net Git - openldap/blob - servers/slapd/back-monitor/entry.c
d7224ea9a180027e5ac107a31a75d48eeb2f5199
[openldap] / servers / slapd / back-monitor / entry.c
1 /* entry.c - monitor backend entry handling routines */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1998-2003 The OpenLDAP Foundation.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted only as authorized by the OpenLDAP
10  * Public License.
11  *
12  * A copy of this license is available in file LICENSE in the
13  * top-level directory of the distribution or, alternatively, at
14  * <http://www.OpenLDAP.org/license.html>.
15  */
16 /* ACKNOWLEDGEMENTS:
17  * This work was initially developed by Pierangelo Masarati for inclusion
18  * in OpenLDAP Software.
19  */
20 /* This is an altered version */
21 /*
22  * Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
23  * 
24  * This work has beed deveolped for the OpenLDAP Foundation 
25  * in the hope that it may be useful to the Open Source community, 
26  * but WITHOUT ANY WARRANTY.
27  * 
28  * Permission is granted to anyone to use this software for any purpose
29  * on any computer system, and to alter it and redistribute it, subject
30  * to the following restrictions:
31  * 
32  * 1. The author and SysNet s.n.c. are not responsible for the consequences
33  *    of use of this software, no matter how awful, even if they arise from
34  *    flaws in it.
35  * 
36  * 2. The origin of this software must not be misrepresented, either by
37  *    explicit claim or by omission.  Since few users ever read sources,
38  *    credits should appear in the documentation.
39  * 
40  * 3. Altered versions must be plainly marked as such, and must not be
41  *    misrepresented as being the original software.  Since few users
42  *    ever read sources, credits should appear in the documentation.
43  *    SysNet s.n.c. cannot be responsible for the consequences of the
44  *    alterations.
45  * 
46  * 4. This notice may not be removed or altered.
47  */
48
49 #ifndef _BACK_MONITOR_H_
50 #define _BACK_MONITOR_H_
51
52 #include <ldap_pvt.h>
53 #include <ldap_pvt_thread.h>
54 #include <avl.h>
55 #include <slap.h>
56
57 LDAP_BEGIN_DECL
58
59 /*
60  * The cache maps DNs to Entries.
61 /*
62  * Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
63  * 
64  * This work has beed deveolped for the OpenLDAP Foundation 
65  * in the hope that it may be useful to the Open Source community, 
66  * but WITHOUT ANY WARRANTY.
67  * 
68  * Permission is granted to anyone to use this software for any purpose
69  * on any computer system, and to alter it and redistribute it, subject
70  * to the following restrictions:
71  * 
72  * 1. The author and SysNet s.n.c. are not responsible for the consequences
73  *    of use of this software, no matter how awful, even if they arise from
74  *    flaws in it.
75  * 
76  * 2. The origin of this software must not be misrepresented, either by
77  *    explicit claim or by omission.  Since few users ever read sources,
78  *    credits should appear in the documentation.
79  * 
80  * 3. Altered versions must be plainly marked as such, and must not be
81  *    misrepresented as being the original software.  Since few users
82  *    ever read sources, credits should appear in the documentation.
83  *    SysNet s.n.c. cannot be responsible for the consequences of the
84  *    alterations.
85  * 
86  * 4. This notice may not be removed or altered.
87  */
88
89 #include "portable.h"
90
91 #include <slap.h>
92 #include "back-monitor.h"
93
94 int
95 monitor_entry_update(
96         Operation               *op,
97         Entry                   *e
98 )
99 {
100         struct monitorinfo *mi = (struct monitorinfo *)op->o_bd->be_private;
101         struct monitorentrypriv *mp;
102
103         assert( mi != NULL );
104         assert( e != NULL );
105         assert( e->e_private != NULL );
106
107         mp = ( struct monitorentrypriv * )e->e_private;
108
109
110         if ( mp->mp_info && mp->mp_info->mss_update ) {
111                 return ( *mp->mp_info->mss_update )( op, e );
112         }
113
114         return( 0 );
115 }
116
117 int
118 monitor_entry_create(
119         Operation               *op,
120         struct berval           *ndn,
121         Entry                   *e_parent,
122         Entry                   **ep
123 )
124 {
125         struct monitorinfo *mi = (struct monitorinfo *)op->o_bd->be_private;
126         struct monitorentrypriv *mp;
127
128         assert( mi != NULL );
129         assert( e_parent != NULL );
130         assert( e_parent->e_private != NULL );
131         assert( ep != NULL );
132
133         mp = ( struct monitorentrypriv * )e_parent->e_private;
134
135         if ( mp->mp_info && mp->mp_info->mss_create ) {
136                 return ( *mp->mp_info->mss_create )( op, ndn, e_parent, ep );
137         }
138         
139         return( 0 );
140 }
141
142 int
143 monitor_entry_modify(
144         Operation               *op,
145         Entry                   *e
146 )
147 {
148         struct monitorinfo *mi = (struct monitorinfo *)op->o_bd->be_private;
149         struct monitorentrypriv *mp;
150
151         assert( mi != NULL );
152         assert( e != NULL );
153         assert( e->e_private != NULL );
154
155         mp = ( struct monitorentrypriv * )e->e_private;
156
157         if ( mp->mp_info && mp->mp_info->mss_modify ) {
158                 return ( *mp->mp_info->mss_modify )( op, e );
159         }
160
161         return( 0 );
162 }
163
164 int
165 monitor_entry_test_flags(
166         struct monitorentrypriv *mp,
167         int                     cond
168 )
169 {
170         assert( mp != NULL );
171
172         return( ( mp->mp_flags & cond ) || ( mp->mp_info->mss_flags & cond ) );
173 }
174