#!/bin/sh # if [ $# -lt 3 ]; then echo "Usage: $0 [DEST] [USER] [OPTIMIZED]" exit 0 fi DEST=$1 US=$2 OPT=$3 DATE=`date +%Y/%m/%d-%H:%M` cd $ACE_ROOT LD_LIBRARY_PATH=$ACE_ROOT/ace export LD_LIBRARY_PATH PATH=/usr/bin:/bin:$PATH export PATH cd $TAO_ROOT/performance-tests/Memory/IORsize # start the server. If OPT == 1 then start the optimized version, else # the non-optimized version if test $OPT == 1 then ./server -ORBSvcConf server.conf & else ./server & fi s_id=$!; server_start_size=`cat /proc/$s_id/status | grep VmRSS | awk '{print $2}'`; # Just sleep for 2 seconds. sleep 2; # Check whether the server has started file="test.ior" if test -f $file then # start the client ./client & c_id=$!; # Wait till all the invocations are done sleep 30; # Get the size once the client has made sufficient invocations. s_invocations=`cat /proc/$s_id/status | grep VmRSS | awk '{print $2}'`; let "actual_server_growth=${s_invocations}-${server_start_size}"; if test $OPT == 1 then echo $DATE $s_invocations >> $DEST/source/server_opt_ior_size.txt echo $DATE $actual_server_growth >> $DEST/source/opt_ior_size.txt else echo $DATE $s_invocations >> $DEST/source/server_ior_size.txt echo $DATE $actual_server_growth >> $DEST/source/actual_ior_size.txt fi # Kill the server and client. We will look at better ways of doing # this later. kill -9 $c_id; kill -9 $s_id; rm -f $file else echo $file doesnt exist fi cd $DEST/source STRING="for 50000 IORs" FILES="server_opt opt server actual" for i in $FILES ; do /usr/bin/tac ${i}_ior_size.txt > $DEST/data/${i}_ior_size.txt /usr/bin/tail -5 ${i}_ior_size.txt > $DEST/data/LAST_${i}_ior_size.txt $ACE_ROOT/bin/generate_topinfo_charts.sh ${i}_ior_size.txt $DEST/images/${i}_ior_size.png ${i}_ior_size.txt done