]> git.sur5r.net Git - openldap/blob - servers/slapd/back-monitor/entry.c
f257597b8554c3fa5b2fbcbb7e29fbc5479d3b8b
[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 #include "portable.h"
50
51 #include <slap.h>
52 #include "back-monitor.h"
53
54 int
55 monitor_entry_update(
56         Operation               *op,
57         Entry                   *e
58 )
59 {
60         struct monitorinfo *mi = (struct monitorinfo *)op->o_bd->be_private;
61         struct monitorentrypriv *mp;
62
63         assert( mi != NULL );
64         assert( e != NULL );
65         assert( e->e_private != NULL );
66
67         mp = ( struct monitorentrypriv * )e->e_private;
68
69
70         if ( mp->mp_info && mp->mp_info->mss_update ) {
71                 return ( *mp->mp_info->mss_update )( op, e );
72         }
73
74         return( 0 );
75 }
76
77 int
78 monitor_entry_create(
79         Operation               *op,
80         struct berval           *ndn,
81         Entry                   *e_parent,
82         Entry                   **ep
83 )
84 {
85         struct monitorinfo *mi = (struct monitorinfo *)op->o_bd->be_private;
86         struct monitorentrypriv *mp;
87
88         assert( mi != NULL );
89         assert( e_parent != NULL );
90         assert( e_parent->e_private != NULL );
91         assert( ep != NULL );
92
93         mp = ( struct monitorentrypriv * )e_parent->e_private;
94
95         if ( mp->mp_info && mp->mp_info->mss_create ) {
96                 return ( *mp->mp_info->mss_create )( op, ndn, e_parent, ep );
97         }
98         
99         return( 0 );
100 }
101
102 int
103 monitor_entry_modify(
104         Operation               *op,
105         Entry                   *e
106 )
107 {
108         struct monitorinfo *mi = (struct monitorinfo *)op->o_bd->be_private;
109         struct monitorentrypriv *mp;
110
111         assert( mi != NULL );
112         assert( e != NULL );
113         assert( e->e_private != NULL );
114
115         mp = ( struct monitorentrypriv * )e->e_private;
116
117         if ( mp->mp_info && mp->mp_info->mss_modify ) {
118                 return ( *mp->mp_info->mss_modify )( op, e );
119         }
120
121         return( 0 );
122 }
123
124 int
125 monitor_entry_test_flags(
126         struct monitorentrypriv *mp,
127         int                     cond
128 )
129 {
130         assert( mp != NULL );
131
132         return( ( mp->mp_flags & cond ) || ( mp->mp_info->mss_flags & cond ) );
133 }
134