/*
* JBoss, the OpenSource J2EE webOS
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package test.performance.modelmbean;
import junit.framework.TestCase;
import test.performance.PerformanceSUITE;
import test.performance.modelmbean.support.Resource;
import javax.management.*;
import javax.management.modelmbean.*;
public class ThroughputTEST extends TestCase
{
public ThroughputTEST(String s)
{
super(s);
}
public void testThroughput() throws Exception
{
MyThread myThread = new MyThread();
Thread t = new Thread(myThread);
String method = "invokeMixedArgs";
String[] signature = new String[] {
Integer.class.getName(),
String.class.getName(),
Object[][][].class.getName(),
Attribute.class.getName()
};
Object[] args = new Object[] {
new Integer(1234),
"Hello",
new Object[][][] {
{
{ "1x1x1", "1x1x2", "1x1x3" },
{ "1x2x1", "1x2x2", "1x2x3" },
{ "1x3x1", "1x3x2", "1x3x3" }
},
{
{ "2x1x1", "2x1x2", "2x1x3" },
{ "2x2x1", "2x2x2", "2x2x3" },
{ "2x3x1", "2x3x2", "2x3x3" }
},
{
{ "3x1x1", "3x1x2", "3x1x3" },
{ "3x2x1", "3x2x2", "3x2x3" },
{ "3x3x1", "3x3x2", "3x3x3" }
}
},
new Attribute("attribute", "value")
};
MBeanServer server = MBeanServerFactory.createMBeanServer();
ObjectName name = new ObjectName("test:test=test");
Resource res = new Resource();
RequiredModelMBean rmm = new RequiredModelMBean();
rmm.setModelMBeanInfo(getManagementInterface());
rmm.setManagedResource(res, "ObjectReference");
server.registerMBean(rmm, name);
t.start();
while(myThread.isKeepRunning())
{
server.invoke(name, method, args, signature);
}
System.out.println("\nModel MBean Throughput: " +
res.getCount() / (PerformanceSUITE.THROUGHPUT_TIME / PerformanceSUITE.SECOND) +
" invocations per second.");
System.out.println("(Total: " + res.getCount() + ")\n");
}
class MyThread implements Runnable
{
private boolean keepRunning = true;
public void run()
{
try
{
Thread.sleep(PerformanceSUITE.THROUGHPUT_TIME);
}
catch (InterruptedException e)
{
}
keepRunning = false;
}
public boolean isKeepRunning()
{
return keepRunning;
}
}
private ModelMBeanInfo getManagementInterface()
{
final boolean READABLE = true;
final boolean WRITABLE = true;
final boolean BOOLEAN = true;
// registerMBean operation
DescriptorSupport descMixedArgs = new DescriptorSupport();
descMixedArgs.setField("name", "invokeMixedArgs");
descMixedArgs.setField("descriptorType", "operation");
descMixedArgs.setField("role", "operation");
MBeanParameterInfo[] mixedArgsParms =
new MBeanParameterInfo[]
{
new MBeanParameterInfo
(
"Arg1",
Integer.class.getName(),
"Desc"
),
new MBeanParameterInfo
(
"Arg2",
String.class.getName(),
"Desc"
),
new MBeanParameterInfo
(
"Arg3",
Object[][][].class.getName(),
"Desc"
),
new MBeanParameterInfo
(
"Arg3",
Attribute.class.getName(),
"Desc"
)
};
ModelMBeanOperationInfo invokeMixedArgs =
new ModelMBeanOperationInfo
(
"invokeMixedArgs",
"Desc",
mixedArgsParms,
void.class.getName(),
ModelMBeanOperationInfo.ACTION_INFO,
descMixedArgs
);
// Construct the modelmbean
DescriptorSupport descMBean = new DescriptorSupport();
descMBean.setField("name", "Resource");
descMBean.setField("descriptorType", "MBean");
ModelMBeanInfoSupport info = new ModelMBeanInfoSupport
(
RequiredModelMBean.class.getName(),
"Resource",
new ModelMBeanAttributeInfo[0],
(ModelMBeanConstructorInfo[]) null,
new ModelMBeanOperationInfo[]
{
invokeMixedArgs
},
(ModelMBeanNotificationInfo[]) null,
descMBean
);
return info;
}
}