]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-monitor/entry.c
should we touch timestamps when internally updating?
[openldap] / servers / slapd / back-monitor / entry.c
index d7224ea9a180027e5ac107a31a75d48eeb2f5199..3c2b4ebf1c793b217cffae1f9c5d4cc4d253dbb3 100644 (file)
@@ -2,7 +2,8 @@
 /* $OpenLDAP$ */
 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
  *
- * Copyright 1998-2003 The OpenLDAP Foundation.
+ * Copyright 2001-2005 The OpenLDAP Foundation.
+ * Portions Copyright 2001-2003 Pierangelo Masarati.
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * This work was initially developed by Pierangelo Masarati for inclusion
  * in OpenLDAP Software.
  */
-/* This is an altered version */
-/*
- * Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
- * 
- * This work has beed deveolped for the OpenLDAP Foundation 
- * in the hope that it may be useful to the Open Source community, 
- * but WITHOUT ANY WARRANTY.
- * 
- * Permission is granted to anyone to use this software for any purpose
- * on any computer system, and to alter it and redistribute it, subject
- * to the following restrictions:
- * 
- * 1. The author and SysNet s.n.c. are not responsible for the consequences
- *    of use of this software, no matter how awful, even if they arise from
- *    flaws in it.
- * 
- * 2. The origin of this software must not be misrepresented, either by
- *    explicit claim or by omission.  Since few users ever read sources,
- *    credits should appear in the documentation.
- * 
- * 3. Altered versions must be plainly marked as such, and must not be
- *    misrepresented as being the original software.  Since few users
- *    ever read sources, credits should appear in the documentation.
- *    SysNet s.n.c. cannot be responsible for the consequences of the
- *    alterations.
- * 
- * 4. This notice may not be removed or altered.
- */
-
-#ifndef _BACK_MONITOR_H_
-#define _BACK_MONITOR_H_
-
-#include <ldap_pvt.h>
-#include <ldap_pvt_thread.h>
-#include <avl.h>
-#include <slap.h>
-
-LDAP_BEGIN_DECL
-
-/*
- * The cache maps DNs to Entries.
-/*
- * Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
- * 
- * This work has beed deveolped for the OpenLDAP Foundation 
- * in the hope that it may be useful to the Open Source community, 
- * but WITHOUT ANY WARRANTY.
- * 
- * Permission is granted to anyone to use this software for any purpose
- * on any computer system, and to alter it and redistribute it, subject
- * to the following restrictions:
- * 
- * 1. The author and SysNet s.n.c. are not responsible for the consequences
- *    of use of this software, no matter how awful, even if they arise from
- *    flaws in it.
- * 
- * 2. The origin of this software must not be misrepresented, either by
- *    explicit claim or by omission.  Since few users ever read sources,
- *    credits should appear in the documentation.
- * 
- * 3. Altered versions must be plainly marked as such, and must not be
- *    misrepresented as being the original software.  Since few users
- *    ever read sources, credits should appear in the documentation.
- *    SysNet s.n.c. cannot be responsible for the consequences of the
- *    alterations.
- * 
- * 4. This notice may not be removed or altered.
- */
 
 #include "portable.h"
 
@@ -97,21 +30,32 @@ monitor_entry_update(
        Entry                   *e
 )
 {
-       struct monitorinfo *mi = (struct monitorinfo *)op->o_bd->be_private;
-       struct monitorentrypriv *mp;
+       monitor_info_t  *mi = ( monitor_info_t * )op->o_bd->be_private;
+       monitor_entry_t *mp;
+       int                     rc = 0;
 
        assert( mi != NULL );
        assert( e != NULL );
        assert( e->e_private != NULL );
 
-       mp = ( struct monitorentrypriv * )e->e_private;
-
+       mp = ( monitor_entry_t * )e->e_private;
 
        if ( mp->mp_info && mp->mp_info->mss_update ) {
-               return ( *mp->mp_info->mss_update )( op, e );
+               rc = ( *mp->mp_info->mss_update )( op, e );
        }
 
-       return( 0 );
+       if ( rc == 0 && mp->mp_cb ) {
+               struct monitor_callback_t       *mc;
+
+               for ( mc = mp->mp_cb; mc; mc = mc->mc_next ) {
+                       rc = ( *mc->mc_update )( op, e, mc->mc_private );
+                       if ( rc != 0 ) {
+                               break;
+                       }
+               }
+       }
+
+       return rc;
 }
 
 int
@@ -122,15 +66,15 @@ monitor_entry_create(
        Entry                   **ep
 )
 {
-       struct monitorinfo *mi = (struct monitorinfo *)op->o_bd->be_private;
-       struct monitorentrypriv *mp;
+       monitor_info_t  *mi = ( monitor_info_t * )op->o_bd->be_private;
+       monitor_entry_t *mp;
 
        assert( mi != NULL );
        assert( e_parent != NULL );
        assert( e_parent->e_private != NULL );
        assert( ep != NULL );
 
-       mp = ( struct monitorentrypriv * )e_parent->e_private;
+       mp = ( monitor_entry_t * )e_parent->e_private;
 
        if ( mp->mp_info && mp->mp_info->mss_create ) {
                return ( *mp->mp_info->mss_create )( op, ndn, e_parent, ep );
@@ -145,14 +89,14 @@ monitor_entry_modify(
        Entry                   *e
 )
 {
-       struct monitorinfo *mi = (struct monitorinfo *)op->o_bd->be_private;
-       struct monitorentrypriv *mp;
+       monitor_info_t  *mi = ( monitor_info_t * )op->o_bd->be_private;
+       monitor_entry_t *mp;
 
        assert( mi != NULL );
        assert( e != NULL );
        assert( e->e_private != NULL );
 
-       mp = ( struct monitorentrypriv * )e->e_private;
+       mp = ( monitor_entry_t * )e->e_private;
 
        if ( mp->mp_info && mp->mp_info->mss_modify ) {
                return ( *mp->mp_info->mss_modify )( op, e );
@@ -163,7 +107,7 @@ monitor_entry_modify(
 
 int
 monitor_entry_test_flags(
-       struct monitorentrypriv *mp,
+       monitor_entry_t         *mp,
        int                     cond
 )
 {
@@ -172,3 +116,18 @@ monitor_entry_test_flags(
        return( ( mp->mp_flags & cond ) || ( mp->mp_info->mss_flags & cond ) );
 }
 
+monitor_entry_t *
+monitor_entrypriv_create( void )
+{
+       monitor_entry_t *mp;
+
+       mp = ( monitor_entry_t * )ch_calloc( sizeof( monitor_entry_t ), 1 );
+
+       mp->mp_next = NULL;
+       mp->mp_children = NULL;
+       mp->mp_info = NULL;
+       mp->mp_flags = MONITOR_F_NONE;
+       mp->mp_cb = NULL;
+
+       return mp;
+}