1 /* sent.c - deal with data sent subsystem */
2 /* $OpenLDAP: pkg/ldap/servers/slapd/back-monitor/sent.c,v 1.42.2.4 2008/02/11 23:26:47 kurt Exp $ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
5 * Copyright 2001-2008 The OpenLDAP Foundation.
6 * Portions Copyright 2001-2003 Pierangelo Masarati.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted only as authorized by the OpenLDAP
13 * A copy of this license is available in file LICENSE in the
14 * top-level directory of the distribution or, alternatively, at
15 * <http://www.OpenLDAP.org/license.html>.
18 * This work was initially developed by Pierangelo Masarati for inclusion
19 * in OpenLDAP Software.
25 #include <ac/string.h>
28 #include "back-monitor.h"
31 monitor_subsys_sent_destroy(
33 monitor_subsys_t
*ms
);
36 monitor_subsys_sent_update(
42 MONITOR_SENT_BYTES
= 0,
45 MONITOR_SENT_REFERRALS
,
50 struct monitor_sent_t
{
54 { BER_BVC("cn=Bytes"), BER_BVNULL
},
55 { BER_BVC("cn=PDU"), BER_BVNULL
},
56 { BER_BVC("cn=Entries"), BER_BVNULL
},
57 { BER_BVC("cn=Referrals"), BER_BVNULL
},
58 { BER_BVNULL
, BER_BVNULL
}
62 monitor_subsys_sent_init(
64 monitor_subsys_t
*ms
)
74 ms
->mss_destroy
= monitor_subsys_sent_destroy
;
75 ms
->mss_update
= monitor_subsys_sent_update
;
77 mi
= ( monitor_info_t
* )be
->be_private
;
79 if ( monitor_cache_get( mi
, &ms
->mss_ndn
, &e_sent
) ) {
80 Debug( LDAP_DEBUG_ANY
,
81 "monitor_subsys_sent_init: "
82 "unable to get entry \"%s\"\n",
83 ms
->mss_ndn
.bv_val
, 0, 0 );
87 mp
= ( monitor_entry_t
* )e_sent
->e_private
;
88 mp
->mp_children
= NULL
;
89 ep
= &mp
->mp_children
;
91 for ( i
= 0; i
< MONITOR_SENT_LAST
; i
++ ) {
92 struct berval nrdn
, bv
;
95 e
= monitor_entry_stub( &ms
->mss_dn
, &ms
->mss_ndn
,
96 &monitor_sent
[i
].rdn
, mi
->mi_oc_monitorCounterObject
,
100 Debug( LDAP_DEBUG_ANY
,
101 "monitor_subsys_sent_init: "
102 "unable to create entry \"%s,%s\"\n",
103 monitor_sent
[ i
].rdn
.bv_val
,
104 ms
->mss_ndn
.bv_val
, 0 );
108 /* steal normalized RDN */
109 dnRdn( &e
->e_nname
, &nrdn
);
110 ber_dupbv( &monitor_sent
[ i
].nrdn
, &nrdn
);
112 BER_BVSTR( &bv
, "0" );
113 attr_merge_normalize_one( e
, mi
->mi_ad_monitorCounter
, &bv
, NULL
);
115 mp
= monitor_entrypriv_create();
119 e
->e_private
= ( void * )mp
;
121 mp
->mp_flags
= ms
->mss_flags \
122 | MONITOR_F_SUB
| MONITOR_F_PERSISTENT
;
124 if ( monitor_cache_add( mi
, e
) ) {
125 Debug( LDAP_DEBUG_ANY
,
126 "monitor_subsys_sent_init: "
127 "unable to add entry \"%s,%s\"\n",
128 monitor_sent
[ i
].rdn
.bv_val
,
129 ms
->mss_ndn
.bv_val
, 0 );
137 monitor_cache_release( mi
, e_sent
);
143 monitor_subsys_sent_destroy(
145 monitor_subsys_t
*ms
)
149 for ( i
= 0; i
< MONITOR_SENT_LAST
; i
++ ) {
150 if ( !BER_BVISNULL( &monitor_sent
[ i
].nrdn
) ) {
151 ch_free( monitor_sent
[ i
].nrdn
.bv_val
);
159 monitor_subsys_sent_update(
164 monitor_info_t
*mi
= ( monitor_info_t
*)op
->o_bd
->be_private
;
172 assert( mi
!= NULL
);
175 dnRdn( &e
->e_nname
, &nrdn
);
177 for ( i
= 0; i
< MONITOR_SENT_LAST
; i
++ ) {
178 if ( dn_match( &nrdn
, &monitor_sent
[ i
].nrdn
) ) {
183 if ( i
== MONITOR_SENT_LAST
) {
184 return SLAP_CB_CONTINUE
;
187 ldap_pvt_thread_mutex_lock(&slap_counters
.sc_mutex
);
189 case MONITOR_SENT_ENTRIES
:
190 ldap_pvt_mp_init_set( n
, slap_counters
.sc_entries
);
191 for ( sc
= slap_counters
.sc_next
; sc
; sc
= sc
->sc_next
) {
192 ldap_pvt_thread_mutex_lock( &sc
->sc_mutex
);
193 ldap_pvt_mp_add( n
, sc
->sc_entries
);
194 ldap_pvt_thread_mutex_unlock( &sc
->sc_mutex
);
198 case MONITOR_SENT_REFERRALS
:
199 ldap_pvt_mp_init_set( n
, slap_counters
.sc_refs
);
200 for ( sc
= slap_counters
.sc_next
; sc
; sc
= sc
->sc_next
) {
201 ldap_pvt_thread_mutex_lock( &sc
->sc_mutex
);
202 ldap_pvt_mp_add( n
, sc
->sc_refs
);
203 ldap_pvt_thread_mutex_unlock( &sc
->sc_mutex
);
207 case MONITOR_SENT_PDU
:
208 ldap_pvt_mp_init_set( n
, slap_counters
.sc_pdu
);
209 for ( sc
= slap_counters
.sc_next
; sc
; sc
= sc
->sc_next
) {
210 ldap_pvt_thread_mutex_lock( &sc
->sc_mutex
);
211 ldap_pvt_mp_add( n
, sc
->sc_pdu
);
212 ldap_pvt_thread_mutex_unlock( &sc
->sc_mutex
);
216 case MONITOR_SENT_BYTES
:
217 ldap_pvt_mp_init_set( n
, slap_counters
.sc_bytes
);
218 for ( sc
= slap_counters
.sc_next
; sc
; sc
= sc
->sc_next
) {
219 ldap_pvt_thread_mutex_lock( &sc
->sc_mutex
);
220 ldap_pvt_mp_add( n
, sc
->sc_bytes
);
221 ldap_pvt_thread_mutex_unlock( &sc
->sc_mutex
);
228 ldap_pvt_thread_mutex_unlock(&slap_counters
.sc_mutex
);
230 a
= attr_find( e
->e_attrs
, mi
->mi_ad_monitorCounter
);
233 /* NOTE: no minus sign is allowed in the counters... */
234 UI2BV( &a
->a_vals
[ 0 ], n
);
235 ldap_pvt_mp_clear( n
);
237 /* FIXME: touch modifyTimestamp? */
239 return SLAP_CB_CONTINUE
;