]> git.sur5r.net Git - openldap/blob - servers/slapd/back-monitor/entry.c
626d6280ab505dd17cfacedf2da20e68ec3bd9ec
[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         Modifications           *modlist
92 )
93 {
94         struct monitorinfo *mi = (struct monitorinfo *)op->o_bd->be_private;
95         struct monitorentrypriv *mp;
96
97         assert( mi != NULL );
98         assert( e != NULL );
99         assert( e->e_private != NULL );
100
101         mp = ( struct monitorentrypriv * )e->e_private;
102
103         if ( mp->mp_info && mp->mp_info->mss_modify ) {
104                 return ( *mp->mp_info->mss_modify )( op, e, modlist );
105         }
106
107         return( 0 );
108 }
109
110 int
111 monitor_entry_test_flags(
112         struct monitorentrypriv *mp,
113         int                     cond
114 )
115 {
116         assert( mp != NULL );
117
118         return( ( mp->mp_flags & cond ) || ( mp->mp_info->mss_flags & cond ) );
119 }
120