2001-07-15 01:34:24 +08:00
|
|
|
/* thread.c - deal with thread subsystem */
|
2003-11-27 10:35:20 +08:00
|
|
|
/* $OpenLDAP$ */
|
|
|
|
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
*
|
2004-01-02 03:15:16 +08:00
|
|
|
* Copyright 2001-2004 The OpenLDAP Foundation.
|
2003-12-09 01:41:40 +08:00
|
|
|
* Portions Copyright 2001-2003 Pierangelo Masarati.
|
2003-11-27 10:35:20 +08:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
* Public License.
|
|
|
|
*
|
|
|
|
* A copy of this license is available in file LICENSE in the
|
|
|
|
* top-level directory of the distribution or, alternatively, at
|
|
|
|
* <http://www.OpenLDAP.org/license.html>.
|
|
|
|
*/
|
|
|
|
/* ACKNOWLEDGEMENTS:
|
|
|
|
* This work was initially developed by Pierangelo Masarati for inclusion
|
|
|
|
* in OpenLDAP Software.
|
2001-07-15 01:34:24 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "portable.h"
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2003-05-15 05:36:34 +08:00
|
|
|
#include <ac/string.h>
|
2001-07-15 01:34:24 +08:00
|
|
|
|
|
|
|
#include "slap.h"
|
|
|
|
#include "back-monitor.h"
|
|
|
|
|
2001-12-10 17:50:06 +08:00
|
|
|
/*
|
|
|
|
* * initializes log subentry
|
|
|
|
* */
|
|
|
|
int
|
|
|
|
monitor_subsys_thread_init(
|
|
|
|
BackendDB *be
|
|
|
|
)
|
|
|
|
{
|
|
|
|
struct monitorinfo *mi;
|
|
|
|
Entry *e;
|
2003-04-19 01:17:18 +08:00
|
|
|
static char buf[ BACKMONITOR_BUFSIZE ];
|
2003-04-08 07:22:27 +08:00
|
|
|
struct berval bv;
|
2001-12-10 17:50:06 +08:00
|
|
|
|
|
|
|
mi = ( struct monitorinfo * )be->be_private;
|
|
|
|
|
|
|
|
if ( monitor_cache_get( mi,
|
2002-01-03 02:14:29 +08:00
|
|
|
&monitor_subsys[SLAPD_MONITOR_THREAD].mss_ndn, &e ) )
|
2001-12-25 10:30:01 +08:00
|
|
|
{
|
2001-12-10 17:50:06 +08:00
|
|
|
Debug( LDAP_DEBUG_ANY,
|
2001-12-25 10:30:01 +08:00
|
|
|
"monitor_subsys_thread_init: unable to get entry '%s'\n",
|
2002-01-03 02:14:29 +08:00
|
|
|
monitor_subsys[SLAPD_MONITOR_THREAD].mss_ndn.bv_val,
|
2001-12-27 23:16:12 +08:00
|
|
|
0, 0 );
|
2001-12-10 17:50:06 +08:00
|
|
|
return( -1 );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* initialize the thread number */
|
|
|
|
snprintf( buf, sizeof( buf ), "max=%d", connection_pool_max );
|
|
|
|
|
2003-04-08 07:22:27 +08:00
|
|
|
bv.bv_val = buf;
|
|
|
|
bv.bv_len = strlen( bv.bv_val );
|
2001-12-10 17:50:06 +08:00
|
|
|
|
2003-05-18 01:19:16 +08:00
|
|
|
attr_merge_normalize_one( e, mi->mi_ad_monitoredInfo, &bv, NULL );
|
2001-12-10 17:50:06 +08:00
|
|
|
|
|
|
|
monitor_cache_release( mi, e );
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
2001-07-15 01:34:24 +08:00
|
|
|
|
|
|
|
int
|
|
|
|
monitor_subsys_thread_update(
|
2003-04-12 07:08:16 +08:00
|
|
|
Operation *op,
|
2001-07-15 01:34:24 +08:00
|
|
|
Entry *e
|
|
|
|
)
|
|
|
|
{
|
2003-04-12 07:08:16 +08:00
|
|
|
struct monitorinfo *mi = (struct monitorinfo *)op->o_bd->be_private;
|
2001-07-15 01:34:24 +08:00
|
|
|
Attribute *a;
|
2003-04-08 07:22:27 +08:00
|
|
|
struct berval *b = NULL;
|
2003-04-19 01:17:18 +08:00
|
|
|
char buf[ BACKMONITOR_BUFSIZE ];
|
2001-07-15 01:34:24 +08:00
|
|
|
|
2003-04-12 07:08:16 +08:00
|
|
|
assert( mi != NULL );
|
|
|
|
|
2001-12-10 17:50:06 +08:00
|
|
|
snprintf( buf, sizeof( buf ), "backload=%d",
|
2001-07-15 01:34:24 +08:00
|
|
|
ldap_pvt_thread_pool_backload( &connection_pool ) );
|
|
|
|
|
2003-05-18 01:19:16 +08:00
|
|
|
a = attr_find( e->e_attrs, mi->mi_ad_monitoredInfo );
|
2003-04-12 08:30:47 +08:00
|
|
|
if ( a != NULL ) {
|
2002-01-02 21:28:10 +08:00
|
|
|
for ( b = a->a_vals; b[0].bv_val != NULL; b++ ) {
|
|
|
|
if ( strncmp( b[0].bv_val, "backload=",
|
2001-12-10 17:50:06 +08:00
|
|
|
sizeof( "backload=" ) - 1 ) == 0 ) {
|
2002-01-02 21:28:10 +08:00
|
|
|
free( b[0].bv_val );
|
|
|
|
ber_str2bv( buf, 0, 1, &b[0] );
|
2001-07-15 01:34:24 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2002-01-02 21:28:10 +08:00
|
|
|
if ( b == NULL || b[0].bv_val == NULL ) {
|
2003-04-08 07:22:27 +08:00
|
|
|
struct berval bv;
|
|
|
|
|
|
|
|
bv.bv_val = buf;
|
|
|
|
bv.bv_len = strlen( buf );
|
2003-05-18 01:19:16 +08:00
|
|
|
attr_merge_normalize_one( e, mi->mi_ad_monitoredInfo,
|
2003-04-12 08:30:47 +08:00
|
|
|
&bv, NULL );
|
2001-07-15 01:34:24 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return( 0 );
|
|
|
|
}
|
|
|
|
|