]> git.sur5r.net Git - openldap/blob - servers/slapd/back-monitor/entry.c
more cleanup and api rewriting (too tired to do anything better)
[openldap] / servers / slapd / back-monitor / entry.c
1 /* entry.c - monitor backend entry handling routines */
2 /*
3  * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /*
7  * Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
8  * 
9  * This work has beed deveolped for the OpenLDAP Foundation 
10  * in the hope that it may be useful to the Open Source community, 
11  * but WITHOUT ANY WARRANTY.
12  * 
13  * Permission is granted to anyone to use this software for any purpose
14  * on any computer system, and to alter it and redistribute it, subject
15  * to the following restrictions:
16  * 
17  * 1. The author and SysNet s.n.c. are not responsible for the consequences
18  *    of use of this software, no matter how awful, even if they arise from
19  *    flaws in it.
20  * 
21  * 2. The origin of this software must not be misrepresented, either by
22  *    explicit claim or by omission.  Since few users ever read sources,
23  *    credits should appear in the documentation.
24  * 
25  * 3. Altered versions must be plainly marked as such, and must not be
26  *    misrepresented as being the original software.  Since few users
27  *    ever read sources, credits should appear in the documentation.
28  *    SysNet s.n.c. cannot be responsible for the consequences of the
29  *    alterations.
30  * 
31  * 4. This notice may not be removed or altered.
32  */
33
34 #include "portable.h"
35
36 #include <slap.h>
37 #include "back-monitor.h"
38
39 int
40 monitor_entry_update(
41         Operation               *op,
42         Entry                   *e
43 )
44 {
45         struct monitorinfo *mi = (struct monitorinfo *)op->o_bd->be_private;
46         struct monitorentrypriv *mp;
47
48         assert( mi != NULL );
49         assert( e != NULL );
50         assert( e->e_private != NULL );
51
52         mp = ( struct monitorentrypriv * )e->e_private;
53
54
55         if ( mp->mp_info && mp->mp_info->mss_update ) {
56                 return ( *mp->mp_info->mss_update )( op, e );
57         }
58
59         return( 0 );
60 }
61
62 int
63 monitor_entry_create(
64         Operation               *op,
65         struct berval           *ndn,
66         Entry                   *e_parent,
67         Entry                   **ep
68 )
69 {
70         struct monitorinfo *mi = (struct monitorinfo *)op->o_bd->be_private;
71         struct monitorentrypriv *mp;
72
73         assert( mi != NULL );
74         assert( e_parent != NULL );
75         assert( e_parent->e_private != NULL );
76         assert( ep != NULL );
77
78         mp = ( struct monitorentrypriv * )e_parent->e_private;
79
80         if ( mp->mp_info && mp->mp_info->mss_create ) {
81                 return ( *mp->mp_info->mss_create )( op, ndn, e_parent, ep );
82         }
83         
84         return( 0 );
85 }
86
87 int
88 monitor_entry_modify(
89         Operation               *op,
90         Entry                   *e
91 )
92 {
93         struct monitorinfo *mi = (struct monitorinfo *)op->o_bd->be_private;
94         struct monitorentrypriv *mp;
95
96         assert( mi != NULL );
97         assert( e != NULL );
98         assert( e->e_private != NULL );
99
100         mp = ( struct monitorentrypriv * )e->e_private;
101
102         if ( mp->mp_info && mp->mp_info->mss_modify ) {
103                 return ( *mp->mp_info->mss_modify )( op, e );
104         }
105
106         return( 0 );
107 }
108
109 int
110 monitor_entry_test_flags(
111         struct monitorentrypriv *mp,
112         int                     cond
113 )
114 {
115         assert( mp != NULL );
116
117         return( ( mp->mp_flags & cond ) || ( mp->mp_info->mss_flags & cond ) );
118 }
119