]> git.sur5r.net Git - openldap/blob - servers/slapd/back-monitor/rww.c
BDB_INDEX code does no harm (but no good yet, not used by filters yet).
[openldap] / servers / slapd / back-monitor / rww.c
1 /* readw.c - deal with read waiters 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 static int monitor_subsys_readw_update_internal( struct monitorinfo *mi, Entry *e, int rw );
45
46 int 
47 monitor_subsys_readw_update( 
48         struct monitorinfo      *mi,
49         Entry                   *e
50 )
51 {
52         return monitor_subsys_readw_update_internal( mi, e, 0 );
53 }
54
55 int 
56 monitor_subsys_writew_update( 
57         struct monitorinfo      *mi,
58         Entry                   *e
59 )
60 {
61         return monitor_subsys_readw_update_internal( mi, e, 1 );
62 }
63
64 static int 
65 monitor_subsys_readw_update_internal( 
66         struct monitorinfo      *mi,
67         Entry                   *e,
68         int                     rw
69 )
70 {
71         Connection              *c;
72         int                     connindex;
73         int                     nconns, nwritewaiters, nreadwaiters;
74         
75         Attribute               *a;
76         struct berval           *bv[2], val, **b = NULL;
77         char                    buf[1024];
78         
79         char                    *str = NULL;
80         int                     num = 0;
81
82         bv[0] = &val;
83         bv[1] = NULL;
84
85         assert( mi != NULL );
86         assert( e != NULL );
87         
88         bv[0] = &val;
89         bv[1] = NULL;
90         
91         nconns = nwritewaiters = nreadwaiters = 0;
92         for ( c = connection_first( &connindex );
93                         c != NULL;
94                         c = connection_next( c, &connindex ), nconns++ ) {
95                 if ( c->c_writewaiter ) {
96                         nwritewaiters++;
97                 }
98                 if ( c->c_currentber != NULL ) {
99                         nreadwaiters++;
100                 }
101         }
102         connection_done(c);
103
104         switch ( rw ) {
105         case 0:
106                 str = "read waiters";
107                 num = nreadwaiters;
108                 break;
109         case 1:
110                 str = "write waiters";
111                 num = nwritewaiters;
112                 break;
113         }
114         snprintf( buf, sizeof( buf ), "%s=%d", str, num );
115
116         if ( ( a = attr_find( e->e_attrs, monitor_ad_desc ) ) != NULL ) {
117                 for ( b = a->a_vals; b[0] != NULL; b++ ) {
118                         if ( strncmp( b[0]->bv_val, str, strlen( str ) ) == 0 ) {
119                                 free( b[0]->bv_val );
120                                 b[0] = ber_bvstrdup( buf );
121                                 break;
122                         }
123                 }
124         }
125
126         if ( b == NULL || b[0] == NULL ) {
127                 val.bv_val = buf;
128                 val.bv_len = strlen( buf );
129                 attr_merge( e, monitor_ad_desc, bv );
130         }
131
132         return( 0 );
133 }
134