/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.catalina.tribes.demos; import java.io.Serializable; import java.util.Random; import org.apache.catalina.tribes.ByteMessage; import org.apache.catalina.tribes.Channel; import org.apache.catalina.tribes.ChannelException; import org.apache.catalina.tribes.ChannelListener; import org.apache.catalina.tribes.ManagedChannel; import org.apache.catalina.tribes.Member; import org.apache.catalina.tribes.MembershipListener; import org.apache.juli.logging.Log; import org.apache.juli.logging.LogFactory; public class LoadTest implements MembershipListener,ChannelListener, Runnable { private static final Log log = LogFactory.getLog(LoadTest.class); public static int size = 24000; public static final Object mutex = new Object(); public boolean doRun = true; public long bytesReceived = 0; public float mBytesReceived = 0; public int messagesReceived = 0; public boolean send = true; public boolean debug = false; public int msgCount = 100; ManagedChannel channel=null; public int statsInterval = 10000; public long pause = 0; public boolean breakonChannelException = false; public boolean async = false; public long receiveStart = 0; public int channelOptions = Channel.SEND_OPTIONS_DEFAULT; static int messageSize = 0; public static long messagesSent = 0; public static long messageStartSendTime = 0; public static long messageEndSendTime = 0; public static int threadCount = 0; public static synchronized void startTest() { threadCount++; if ( messageStartSendTime == 0 ) messageStartSendTime = System.currentTimeMillis(); } public static synchronized void endTest() { threadCount--; if ( messageEndSendTime == 0 && threadCount==0 ) messageEndSendTime = System.currentTimeMillis(); } public static synchronized long addSendStats(long count) { messagesSent+=count; return 0l; } private static void printSendStats(long counter, int messageSize) { float cnt = counter; float size = messageSize; float time = (System.currentTimeMillis()-messageStartSendTime) / 1000f; log.info("****SEND STATS-"+Thread.currentThread().getName()+"*****"+ "\n\tMessage count:"+counter+ "\n\tTotal bytes :"+(long)(size*cnt)+ "\n\tTotal seconds:"+(time)+ "\n\tBytes/second :"+(size*cnt/time)+ "\n\tMBytes/second:"+(size*cnt/time/1024f/1024f)); } public LoadTest(ManagedChannel channel, boolean send, int msgCount, boolean debug, long pause, int stats, boolean breakOnEx) { this.channel = channel; this.send = send; this.msgCount = msgCount; this.debug = debug; this.pause = pause; this.statsInterval = stats; this.breakonChannelException = breakOnEx; } @Override public void run() { long counter = 0; long total = 0; LoadMessage msg = new LoadMessage(); try { startTest(); while (total < msgCount) { if (channel.getMembers().length == 0 || (!send)) { synchronized (mutex) { try { mutex.wait(); } catch (InterruptedException x) { log.info("Thread interrupted from wait"); } } } else { try { //msg.setMsgNr((int)++total); counter++; if (debug) { printArray(msg.getMessage()); } channel.send(channel.getMembers(), msg, channelOptions); if ( pause > 0 ) { if ( debug) System.out.println("Pausing sender for "+pause+" ms."); Thread.sleep(pause); } } catch (ChannelException x) { if ( debug ) log.error("Unable to send message:"+x.getMessage(),x); log.error("Unable to send message:"+x.getMessage()); ChannelException.FaultyMember[] faulty = x.getFaultyMembers(); for (int i=0; i 0)) { //add to the global counter counter = addSendStats(counter); //print from the global counter //printSendStats(LoadTest.messagesSent, LoadTest.messageSize, LoadTest.messageSendTime); printSendStats(LoadTest.messagesSent, LoadTest.messageSize); } } }catch ( Exception x ) { log.error("Captured error while sending:"+x.getMessage()); if ( debug ) log.error("",x); printSendStats(LoadTest.messagesSent, LoadTest.messageSize); } endTest(); } /** * memberAdded * * @param member Member * TODO Implement this org.apache.catalina.tribes.MembershipListener * method */ @Override public void memberAdded(Member member) { log.info("Member added:"+member); synchronized (mutex) { mutex.notifyAll(); } } /** * memberDisappeared * * @param member Member * TODO Implement this org.apache.catalina.tribes.MembershipListener * method */ @Override public void memberDisappeared(Member member) { log.info("Member disappeared:"+member); } @Override public boolean accept(Serializable msg, Member mbr){ return (msg instanceof LoadMessage) || (msg instanceof ByteMessage); } @Override public void messageReceived(Serializable msg, Member mbr){ if ( receiveStart == 0 ) receiveStart = System.currentTimeMillis(); if ( debug ) { if ( msg instanceof LoadMessage ) { printArray(((LoadMessage)msg).getMessage()); } } if ( msg instanceof ByteMessage && !(msg instanceof LoadMessage)) { LoadMessage tmp = new LoadMessage(); tmp.setMessage(((ByteMessage)msg).getMessage()); msg = tmp; tmp = null; } bytesReceived+=((LoadMessage)msg).getMessage().length; mBytesReceived+=(((LoadMessage)msg).getMessage().length)/1024f/1024f; messagesReceived++; if ( (messagesReceived%statsInterval)==0 || (messagesReceived==msgCount)) { float bytes = (((LoadMessage)msg).getMessage().length*messagesReceived); float seconds = (System.currentTimeMillis()-receiveStart) / 1000f; log.info("****RECEIVE STATS-"+Thread.currentThread().getName()+"*****"+ "\n\tMessage count :"+(long)messagesReceived+ "\n\tMessage/sec :"+messagesReceived/seconds+ "\n\tTotal bytes :"+(long)bytes+ "\n\tTotal mbytes :"+(long)mBytesReceived+ "\n\tTime since 1st:"+seconds+" seconds"+ "\n\tBytes/second :"+(bytes/seconds)+ "\n\tMBytes/second :"+(mBytesReceived/seconds)+"\n"); } } public static void printArray(byte[] data) { System.out.print("{"); for (int i=0; i 1 ) { Thread t = new Thread(test); t.setDaemon(true); t.start(); threads--; test = new LoadTest(channel,send,count,debug,pause,stats,breakOnEx); test.channelOptions = channelOptions; } test.run(); if ( shutdown && send ) channel.stop(Channel.DEFAULT); System.out.println("System test complete, sleeping to let threads finish."); Thread.sleep(60*1000*60); } public static class Shutdown extends Thread { ManagedChannel channel = null; public Shutdown(ManagedChannel channel) { this.channel = channel; } @Override public void run() { System.out.println("Shutting down..."); SystemExit exit = new SystemExit(5000); exit.setDaemon(true); exit.start(); try { channel.stop(Channel.DEFAULT); }catch ( Exception x ) { x.printStackTrace(); } System.out.println("Channel stopped."); } } public static class SystemExit extends Thread { private long delay; public SystemExit(long delay) { this.delay = delay; } @Override public void run () { try { Thread.sleep(delay); }catch ( Exception x ) { x.printStackTrace(); } System.exit(0); } } }