]> git.sur5r.net Git - openldap/blob - servers/slapd/back-monitor/thread.c
#include <ac/string.h>, to get strlen(), strncmp() and strncasecmp().
[openldap] / servers / slapd / back-monitor / thread.c
1 /* thread.c - deal with thread subsystem */
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 <stdio.h>
37 #include <ac/string.h>
38
39 #include "slap.h"
40 #include "back-monitor.h"
41
42 /*
43 *  * initializes log subentry
44 *   */
45 int
46 monitor_subsys_thread_init(
47         BackendDB       *be
48 )
49 {
50         struct monitorinfo      *mi;
51         Entry                   *e;
52         static char             buf[ BACKMONITOR_BUFSIZE ];
53         struct berval           bv;
54
55         mi = ( struct monitorinfo * )be->be_private;
56
57         if ( monitor_cache_get( mi, 
58                 &monitor_subsys[SLAPD_MONITOR_THREAD].mss_ndn, &e ) )
59         {
60 #ifdef NEW_LOGGING
61                 LDAP_LOG( OPERATION, CRIT,
62                         "monitor_subsys_thread_init: unable to get entry '%s'\n",
63                         monitor_subsys[SLAPD_MONITOR_THREAD].mss_ndn.bv_val, 0, 0 );
64 #else
65                 Debug( LDAP_DEBUG_ANY,
66                         "monitor_subsys_thread_init: unable to get entry '%s'\n",
67                         monitor_subsys[SLAPD_MONITOR_THREAD].mss_ndn.bv_val, 
68                         0, 0 );
69 #endif
70                 return( -1 );
71         }
72
73         /* initialize the thread number */
74         snprintf( buf, sizeof( buf ), "max=%d", connection_pool_max );
75
76         bv.bv_val = buf;
77         bv.bv_len = strlen( bv.bv_val );
78
79         attr_merge_normalize_one( e, mi->ad_monitoredInfo, &bv, NULL );
80
81         monitor_cache_release( mi, e );
82
83         return( 0 );
84 }
85
86 int 
87 monitor_subsys_thread_update( 
88         Operation               *op,
89         Entry                   *e
90 )
91 {
92         struct monitorinfo *mi = (struct monitorinfo *)op->o_bd->be_private;
93         Attribute               *a;
94         struct berval           *b = NULL;
95         char                    buf[ BACKMONITOR_BUFSIZE ];
96
97         assert( mi != NULL );
98
99         snprintf( buf, sizeof( buf ), "backload=%d", 
100                         ldap_pvt_thread_pool_backload( &connection_pool ) );
101
102         a = attr_find( e->e_attrs, mi->ad_monitoredInfo );
103         if ( a != NULL ) {
104                 for ( b = a->a_vals; b[0].bv_val != NULL; b++ ) {
105                         if ( strncmp( b[0].bv_val, "backload=", 
106                                         sizeof( "backload=" ) - 1 ) == 0 ) {
107                                 free( b[0].bv_val );
108                                 ber_str2bv( buf, 0, 1, &b[0] );
109                                 break;
110                         }
111                 }
112         }
113
114         if ( b == NULL || b[0].bv_val == NULL ) {
115                 struct berval   bv;
116
117                 bv.bv_val = buf;
118                 bv.bv_len = strlen( buf );
119                 attr_merge_normalize_one( e, mi->ad_monitoredInfo,
120                                 &bv, NULL );
121         }
122
123         return( 0 );
124 }
125