]> git.sur5r.net Git - openldap/blob - servers/slapd/back-monitor/thread.c
This is the skeleton of back-monitor, the slapd monitoring backend.
[openldap] / servers / slapd / back-monitor / thread.c
1 /* thread.c - deal with thread subsystem */
2 /*
3  * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /*
7  * Copyright 2001 The OpenLDAP Foundation, All Rights Reserved.
8  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
9  * 
10  * Copyright 2001, Pierangelo Masarati, All rights reserved. <ando@sys-net.it>
11  * 
12  * This work has beed deveolped for the OpenLDAP Foundation 
13  * in the hope that it may be useful to the Open Source community, 
14  * but WITHOUT ANY WARRANTY.
15  * 
16  * Permission is granted to anyone to use this software for any purpose
17  * on any computer system, and to alter it and redistribute it, subject
18  * to the following restrictions:
19  * 
20  * 1. The author and SysNet s.n.c. are not responsible for the consequences
21  *    of use of this software, no matter how awful, even if they arise from
22  *    flaws in it.
23  * 
24  * 2. The origin of this software must not be misrepresented, either by
25  *    explicit claim or by omission.  Since few users ever read sources,
26  *    credits should appear in the documentation.
27  * 
28  * 3. Altered versions must be plainly marked as such, and must not be
29  *    misrepresented as being the original software.  Since few users
30  *    ever read sources, credits should appear in the documentation.
31  *    SysNet s.n.c. cannot be responsible for the consequences of the
32  *    alterations.
33  * 
34  * 4. This notice may not be removed or altered.
35  */
36
37 #include "portable.h"
38
39 #include <stdio.h>
40
41 #include "slap.h"
42 #include "back-monitor.h"
43
44
45 int 
46 monitor_subsys_thread_update( 
47         struct monitorinfo      *mi,
48         Entry                   *e
49 )
50 {
51         Attribute               *a;
52         struct berval           *bv[2], val, **b = NULL;
53         char                    buf[1024];
54
55         bv[0] = &val;
56         bv[1] = NULL;
57
58         snprintf( buf, sizeof( buf ), "threads=%d", 
59                         ldap_pvt_thread_pool_backload( &connection_pool ) );
60
61         if ( ( a = attr_find( e->e_attrs, monitor_ad_desc ) ) != NULL ) {
62
63                 for ( b = a->a_vals; b[0] != NULL; b++ ) {
64                         if ( strncmp( b[0]->bv_val, "threads=", 
65                                         sizeof( "threads=" ) - 1 ) == 0 ) {
66                                 free( b[0]->bv_val );
67                                 b[0] = ber_bvstrdup( buf );
68                                 break;
69                         }
70                 }
71         }
72
73         if ( b == NULL || b[0] == NULL ) {
74                 val.bv_val = buf;
75                 val.bv_len = strlen( buf );
76                 attr_merge( e, monitor_ad_desc, bv );
77         }
78
79         return( 0 );
80 }
81