/*
* JBoss, Home of Professional Open Source.
* Copyright 2006, Red Hat Middleware LLC, and individual contributors
* as indicated by the @author tags. See the copyright.txt file in the
* distribution for a full listing of individual contributors.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.jboss.test.classloader.concurrentload;
import java.util.HashSet;
import java.util.Timer;
import java.util.TimerTask;
import java.util.Vector;
import org.jboss.logging.Logger;
import org.jboss.system.Service;
import org.jboss.system.ServiceMBeanSupport;
/** A multi-threaded class loading test service.
*
* @author Sacha Labourey.
* @author Scott.Stark@jboss.org
* @version $Revision: 1.2
*/
public class ConcurrentLoader
extends ServiceMBeanSupport
implements ConcurrentLoaderMBean
{
// Constants -----------------------------------------------------
// Attributes ----------------------------------------------------
public Object lock = new Object ();
public final static int MAX_CLASSES = 10;
public final static int NUMBER_OF_LOADING = 10;
public final static int NUMBER_OF_THREADS = 20;
private HashSet classes = new HashSet();
private Vector ungarbaged = new Vector();
private Timer newInstanceTimer;
private int doneCount;
// Static --------------------------------------------------------
// Constructors --------------------------------------------------
public ConcurrentLoader ()
{
}
// Public --------------------------------------------------------
// Z implementation ----------------------------------------------
// ServiceMBeanSupport overrides ---------------------------------------------------
protected void createService() throws Exception
{
log.debug("Creating "+NUMBER_OF_THREADS+" threads...");
newInstanceTimer = new Timer(true);
newInstanceTimer.scheduleAtFixedRate(new NewInstanceTask(), 0, 100);
doneCount = 0;
for(int t = 0; t < NUMBER_OF_THREADS; t ++)
{
ConcurrentLoader.Loader loader = new ConcurrentLoader.Loader (t);
loader.start ();
ungarbaged.add (loader);
}
log.info("All threads created");
Thread.sleep(2000);
synchronized (lock)
{
lock.notifyAll ();
}
log.info("Unlocked all Loader threads");
synchronized( lock )
{
while( doneCount < NUMBER_OF_THREADS )
{
lock.wait();
}
log.info("Loader doneCount="+doneCount);
}
log.info("All Loaders are done");
newInstanceTimer.cancel();
}
protected void stopService() throws Exception
{
newInstanceTimer.cancel();
classes.clear();
ungarbaged.clear();
}
// Package protected ---------------------------------------------
// Protected -----------------------------------------------------
// Private -------------------------------------------------------
// Inner classes -------------------------------------------------
class NewInstanceTask extends TimerTask
{
Logger theLog;
NewInstanceTask()
{
this.theLog = ConcurrentLoader.this.getLog();
}
/** Create an instance of a class and exit
*/
public void run()
{
int size = classes.size();
Class[] theClasses = new Class[size];
classes.toArray(theClasses);
theLog.info("NewInstanceTask, creating "+size+" instances");
for(int c = 0; c < theClasses.length; c ++)
{
try
{
Class clazz = theClasses[c];
Object obj = clazz.newInstance();
theLog.debug("Created instance="+obj);
}
catch(Throwable t)
{
t.printStackTrace();
}
}
}
}
class Loader extends Thread
{
int classid = 0;
Logger theLog;
public Loader (int classid)
{
super("ConcurrentLoader - Thread #" + classid);
this.classid = classid;
this.theLog = ConcurrentLoader.this.getLog();
}
public void run ()
{
int modId = classid % MAX_CLASSES;
String className = this.getClass ().getPackage ().getName () + ".Anyclass" + modId;
ClassLoader cl = this.getContextClassLoader ();
synchronized (lock)
{
try
{
theLog.debug("Thread ready: " + classid);
lock.wait ();
}
catch (Exception e)
{
theLog.error("Error during wait", e);
}
}
theLog.debug("loading class... " + className);
for (int i=0; i