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