2000-09-11 11:03:10 +04:00
/*
2002-01-30 09:08:46 +03:00
Unix SMB / CIFS implementation .
2000-09-13 11:07:17 +04:00
Copyright ( C ) Andrew Tridgell 2000
2000-09-11 11:03:10 +04:00
This program is free software ; you can redistribute it and / or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation ; either version 2 of the License , or
( at your option ) any later version .
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU General Public License for more details .
You should have received a copy of the GNU General Public License
along with this program ; if not , write to the Free Software
Foundation , Inc . , 675 Mass Ave , Cambridge , MA 0213 9 , USA .
*/
/*
2000-09-13 11:07:17 +04:00
test code for internal messaging
2000-09-11 11:03:10 +04:00
*/
# include "includes.h"
2000-09-12 10:57:25 +04:00
static int pong_count ;
2006-05-20 06:09:35 +04:00
/* samba4 timeval functions */
double timeval_elapsed2 ( const struct timeval * tv1 , const struct timeval * tv2 )
{
return ( tv2 - > tv_sec - tv1 - > tv_sec ) +
( tv2 - > tv_usec - tv1 - > tv_usec ) * 1.0e-6 ;
}
/**
return the number of seconds elapsed since a given time
*/
double timeval_elapsed ( const struct timeval * tv )
{
struct timeval tv2 = timeval_current ( ) ;
return timeval_elapsed2 ( tv , & tv2 ) ;
}
2000-09-12 10:57:25 +04:00
/****************************************************************************
a useful function for testing the message system
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
2005-09-30 21:13:37 +04:00
void pong_message ( int msg_type , struct process_id src , void * buf , size_t len )
2000-09-12 10:57:25 +04:00
{
pong_count + + ;
}
2000-09-11 11:03:10 +04:00
int main ( int argc , char * argv [ ] )
{
pid_t pid ;
2000-09-12 10:57:25 +04:00
int i , n ;
2000-11-17 00:38:24 +03:00
char buf [ 12 ] ;
2000-09-11 11:03:10 +04:00
2006-05-20 06:04:19 +04:00
load_case_tables ( ) ;
2000-09-11 11:03:10 +04:00
setup_logging ( argv [ 0 ] , True ) ;
2006-01-29 01:53:04 +03:00
lp_load ( dyn_CONFIGFILE , False , False , False , True ) ;
2000-09-11 11:03:10 +04:00
message_init ( ) ;
2000-11-17 00:38:24 +03:00
if ( argc ! = 3 ) {
fprintf ( stderr , " %s: Usage - %s pid count \n " , argv [ 0 ] , argv [ 0 ] ) ;
exit ( 1 ) ;
}
2000-09-11 11:03:10 +04:00
pid = atoi ( argv [ 1 ] ) ;
2000-09-12 10:57:25 +04:00
n = atoi ( argv [ 2 ] ) ;
message_register ( MSG_PONG , pong_message ) ;
for ( i = 0 ; i < n ; i + + ) {
2005-09-30 21:13:37 +04:00
message_send_pid ( pid_to_procid ( pid ) , MSG_PING , NULL , 0 , True ) ;
2000-09-12 10:57:25 +04:00
}
2000-09-11 11:03:10 +04:00
2000-09-13 11:07:17 +04:00
while ( pong_count < i ) {
2000-09-12 10:57:25 +04:00
message_dispatch ( ) ;
2004-02-23 05:54:03 +03:00
smb_msleep ( 1 ) ;
2000-09-12 10:57:25 +04:00
}
2000-09-11 11:03:10 +04:00
2000-11-17 00:38:24 +03:00
/* Now test that the duplicate filtering code works. */
pong_count = 0 ;
safe_strcpy ( buf , " 1234567890 " , sizeof ( buf ) - 1 ) ;
for ( i = 0 ; i < n ; i + + ) {
2005-09-30 21:13:37 +04:00
message_send_pid ( pid_to_procid ( getpid ( ) ) , MSG_PING ,
NULL , 0 , False ) ;
message_send_pid ( pid_to_procid ( getpid ( ) ) , MSG_PING ,
buf , 11 , False ) ;
2000-11-17 00:38:24 +03:00
}
for ( i = 0 ; i < n ; i + + ) {
message_dispatch ( ) ;
2004-02-23 05:54:03 +03:00
smb_msleep ( 1 ) ;
2000-11-17 00:38:24 +03:00
}
if ( pong_count ! = 2 ) {
fprintf ( stderr , " Duplicate filter failed (%d). \n " , pong_count ) ;
2006-05-20 06:09:35 +04:00
}
/* Speed testing */
pong_count = 0 ;
{
struct timeval tv = timeval_current ( ) ;
size_t timelimit = n ;
size_t ping_count = 0 ;
2006-07-12 01:23:44 +04:00
printf ( " Sending pings for %d seconds \n " , ( int ) timelimit ) ;
2006-05-20 06:09:35 +04:00
while ( timeval_elapsed ( & tv ) < timelimit ) {
if ( message_send_pid ( pid_to_procid ( pid ) , MSG_PING ,
buf , 11 , False ) ) ping_count + + ;
if ( message_send_pid ( pid_to_procid ( pid ) , MSG_PING ,
NULL , 0 , False ) ) ping_count + + ;
while ( ping_count > pong_count + 20 ) {
message_dispatch ( ) ;
}
}
printf ( " waiting for %d remaining replies (done %d) \n " ,
2006-07-12 01:23:44 +04:00
( int ) ( ping_count - pong_count ) , pong_count ) ;
2006-05-20 06:09:35 +04:00
while ( timeval_elapsed ( & tv ) < 30 & & pong_count < ping_count ) {
message_dispatch ( ) ;
}
if ( ping_count ! = pong_count ) {
2006-07-12 01:23:44 +04:00
fprintf ( stderr , " ping test failed! received %d, sent "
" %d \n " , pong_count , ( int ) ping_count ) ;
2006-05-20 06:09:35 +04:00
}
printf ( " ping rate of %.0f messages/sec \n " ,
( ping_count + pong_count ) / timeval_elapsed ( & tv ) ) ;
2000-11-17 00:38:24 +03:00
}
2000-09-11 11:03:10 +04:00
return ( 0 ) ;
}