]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-monitor/thread.c
#include <ac/string.h>, to get strlen(), strncmp() and strncasecmp().
[openldap] / servers / slapd / back-monitor / thread.c
index 04b3fb6b6cd1cd74c0ca6b63760751af801513cc..2796ebbf205a937eca33ca4fc5de446718cdc2f1 100644 (file)
@@ -1,12 +1,9 @@
 /* thread.c - deal with thread subsystem */
 /*
- * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
+ * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
  */
 /*
- * Copyright 2001 The OpenLDAP Foundation, All Rights Reserved.
- * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
- * 
  * Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
  * 
  * This work has beed deveolped for the OpenLDAP Foundation 
 #include "portable.h"
 
 #include <stdio.h>
+#include <ac/string.h>
 
 #include "slap.h"
 #include "back-monitor.h"
 
+/*
+*  * initializes log subentry
+*   */
+int
+monitor_subsys_thread_init(
+       BackendDB       *be
+)
+{
+       struct monitorinfo      *mi;
+       Entry                   *e;
+       static char             buf[ BACKMONITOR_BUFSIZE ];
+       struct berval           bv;
+
+       mi = ( struct monitorinfo * )be->be_private;
+
+       if ( monitor_cache_get( mi, 
+               &monitor_subsys[SLAPD_MONITOR_THREAD].mss_ndn, &e ) )
+       {
+#ifdef NEW_LOGGING
+               LDAP_LOG( OPERATION, CRIT,
+                       "monitor_subsys_thread_init: unable to get entry '%s'\n",
+                       monitor_subsys[SLAPD_MONITOR_THREAD].mss_ndn.bv_val, 0, 0 );
+#else
+               Debug( LDAP_DEBUG_ANY,
+                       "monitor_subsys_thread_init: unable to get entry '%s'\n",
+                       monitor_subsys[SLAPD_MONITOR_THREAD].mss_ndn.bv_val, 
+                       0, 0 );
+#endif
+               return( -1 );
+       }
+
+       /* initialize the thread number */
+       snprintf( buf, sizeof( buf ), "max=%d", connection_pool_max );
+
+       bv.bv_val = buf;
+       bv.bv_len = strlen( bv.bv_val );
+
+       attr_merge_normalize_one( e, mi->ad_monitoredInfo, &bv, NULL );
+
+       monitor_cache_release( mi, e );
+
+       return( 0 );
+}
 
 int 
 monitor_subsys_thread_update( 
-       struct monitorinfo      *mi,
+       Operation               *op,
        Entry                   *e
 )
 {
+       struct monitorinfo *mi = (struct monitorinfo *)op->o_bd->be_private;
        Attribute               *a;
-       struct berval           *bv[2], val, **b = NULL;
-       char                    buf[1024];
+       struct berval           *b = NULL;
+       char                    buf[ BACKMONITOR_BUFSIZE ];
 
-       bv[0] = &val;
-       bv[1] = NULL;
+       assert( mi != NULL );
 
-       snprintf( buf, sizeof( buf ), "threads=%d", 
+       snprintf( buf, sizeof( buf ), "backload=%d", 
                        ldap_pvt_thread_pool_backload( &connection_pool ) );
 
-       if ( ( a = attr_find( e->e_attrs, monitor_ad_desc ) ) != NULL ) {
-
-               for ( b = a->a_vals; b[0] != NULL; b++ ) {
-                       if ( strncmp( b[0]->bv_val, "threads=", 
-                                       sizeof( "threads=" ) - 1 ) == 0 ) {
-                               free( b[0]->bv_val );
-                               b[0] = ber_bvstrdup( buf );
+       a = attr_find( e->e_attrs, mi->ad_monitoredInfo );
+       if ( a != NULL ) {
+               for ( b = a->a_vals; b[0].bv_val != NULL; b++ ) {
+                       if ( strncmp( b[0].bv_val, "backload=", 
+                                       sizeof( "backload=" ) - 1 ) == 0 ) {
+                               free( b[0].bv_val );
+                               ber_str2bv( buf, 0, 1, &b[0] );
                                break;
                        }
                }
        }
 
-       if ( b == NULL || b[0] == NULL ) {
-               val.bv_val = buf;
-               val.bv_len = strlen( buf );
-               attr_merge( e, monitor_ad_desc, bv );
+       if ( b == NULL || b[0].bv_val == NULL ) {
+               struct berval   bv;
+
+               bv.bv_val = buf;
+               bv.bv_len = strlen( buf );
+               attr_merge_normalize_one( e, mi->ad_monitoredInfo,
+                               &bv, NULL );
        }
 
        return( 0 );