⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 queuethreadingtest.java

📁 java开源的企业总线.xmlBlaster
💻 JAVA
字号:
package org.xmlBlaster.test.classtest.queue;import java.util.logging.Logger;import java.util.logging.Level;import org.xmlBlaster.util.StopWatch;import org.xmlBlaster.util.Global;import org.xmlBlaster.util.XmlBlasterException;import org.xmlBlaster.util.SessionName;// import org.xmlBlaster.util.queue.ram.RamQueuePlugin;import org.xmlBlaster.util.def.PriorityEnum;import org.xmlBlaster.util.queue.jdbc.JdbcConnectionPool;// import org.xmlBlaster.util.queue.I_Queue;import org.xmlBlaster.util.queue.StorageId;import org.xmlBlaster.util.queue.I_QueueEntry;import org.xmlBlaster.util.queuemsg.MsgQueueEntry;import org.xmlBlaster.util.def.Constants;import org.xmlBlaster.util.MsgUnit;import org.xmlBlaster.util.qos.storage.CbQueueProperty;import org.xmlBlaster.util.qos.storage.QueuePropertyBase;import org.xmlBlaster.engine.MsgUnitWrapper;import org.xmlBlaster.engine.xml2java.XmlKey;import org.xmlBlaster.engine.qos.PublishQosServer;import org.xmlBlaster.client.qos.PublishQos;import org.xmlBlaster.client.key.PublishKey;import org.xmlBlaster.util.queuemsg.DummyEntry;import java.util.ArrayList;import java.util.StringTokenizer;import junit.framework.*;import org.xmlBlaster.util.qos.MsgQosData;import org.xmlBlaster.engine.queuemsg.MsgQueueUpdateEntry;import org.xmlBlaster.util.queue.I_Queue;import java.lang.reflect.Constructor;import org.xmlBlaster.util.queue.ram.RamQueuePlugin;import org.xmlBlaster.util.queue.cache.CacheQueueInterceptorPlugin;import org.xmlBlaster.util.queue.QueuePluginManager;import org.xmlBlaster.util.plugin.PluginInfo;/** * Test RamQueuePlugin. * <p> * The sorting order is priority,timestamp: * </p> * <pre> *   ->    5,100 - 5,98 - 5,50 - 9,3000 - 9,2500   -> * </pre> * <p> * As 9 is highest priority it is the first to be taken out.<br /> * As we need to maintain the timely sequence and * id is a timestamp in (more or less) nano seconds elapsed since 1970) * the id 2500 (it is older) has precedence to the id 3000 * </p> * <p> * Invoke: java -Djava.compiler= org.xmlBlaster.test.classtest.queue.QueueThreadingTest * </p> * <p> * Configuration example: * </p> * <pre> * JdbcDriver.drivers=org.postgresql.Driver * JdbcDriver.postgresql.mapping=string=text,longint=bigint,int=integer,boolean=boolean * queue.callback.url=jdbc:postgresql://localhost/test * queue.callback.user=postgres * queue.callback.password= * </pre> * <p> * Test database with PostgreSQL: * </p> * <pre> * initdb /tmp/postgres * cp /var/lib/pgsql/data/pg_hba.conf /tmp/postgres    (edit host access) * createdb test * postmaster -i -D /tmp/postgres * </pre> * @see org.xmlBlaster.util.queuemsg.MsgQueueEntry#compare(I_QueueEntry) * @see org.xmlBlaster.util.queue.I_Queue * @see org.xmlBlaster.util.queue.ram.RamQueuePlugin * @see org.xmlBlaster.util.queue.jdbc.JdbcQueuePlugin */public class QueueThreadingTest extends TestCase {   private String ME = "QueueThreadingTest";   protected Global glob;   private static Logger log = Logger.getLogger(QueueThreadingTest.class.getName());   private StopWatch stopWatch = new StopWatch();   private int numOfQueues = 10;   private int numOfMsg = 10000;   private int sizeOfMsg = 100;   private I_Queue[] queues = null;   public ArrayList queueList = null;   public static String[] PLUGIN_TYPES = { new String("RAM"), new String("JDBC"), new String("CACHE") };   public int count = 0;   /** Constructor for junit    public QueueThreadingTest(String name) {      this(new Global(), name);   }   */   public QueueThreadingTest(Global glob, String name, int currImpl) {      super(name);      this.glob        = glob;      this.numOfQueues = glob.getProperty().get("queues", 2);      this.numOfMsg    = glob.getProperty().get("entries", 100);      this.sizeOfMsg   = glob.getProperty().get("sizes", 10);      this.count       = currImpl;   }   protected void setUp() {      try {         glob.getProperty().set("cb.queue.persistent.tableNamePrefix", "TEST");         ME = "QueueThreadingTest with class: " + PLUGIN_TYPES[this.count];      }      catch (Exception ex) {         log.severe("setUp: error when setting the property 'cb.queue.persistent.tableNamePrefix' to 'TEST'" + ex.getMessage());      }      // cleaning up the database from previous runs ...      QueuePropertyBase prop = null;      try {         // test initialize()//         prop = new CbQueueProperty(glob, Constants.RELATING_CALLBACK, "/node/test");//         StorageId queueId = new StorageId(Constants.RELATING_CALLBACK, "SetupQueue");         QueuePluginManager pluginManager = new QueuePluginManager(glob);         PluginInfo pluginInfo = new PluginInfo(glob, pluginManager, "JDBC", "1.0");         java.util.Properties pluginProp = (java.util.Properties)pluginInfo.getParameters();         pluginProp.put("tableNamePrefix", "TEST");         pluginProp.put("entriesTableName", "_entries");         this.glob.getProperty().set("QueuePlugin[JDBC][1.0]", pluginInfo.dumpPluginParameters());/*         I_Queue jdbcQueue = (I_Queue)this.constructor[this.count].newInstance(null);         jdbcQueue.initialize(queueId, prop);         jdbcQueue.clear();         jdbcQueue.destroy();*/      }      catch (Exception ex) {         log.severe("could not propertly set up the database: " + ex.getMessage());      }   }   public void tearDown() {      for (int i=0; i < this.queues.length; i++) {         try {            this.queues[i].clear();            this.queues[i].shutdown();         }         catch (Exception ex) {            log.warning("error when tearing down " + ex.getMessage() + " this normally happens when invoquing multiple times cleanUp " + ex.getMessage());         }      }   }// -----------------------------------------------------------------------------  public void testPerfomancePutMultiThread() {      String queueType = "unknown";      try {         performancePutMultiThread(this.numOfQueues, this.numOfMsg, this.sizeOfMsg);      }      catch (XmlBlasterException ex) {         fail("Exception when testing performancePutMultiThread probably due to failed initialization of the queue of type " + queueType + " " + ex.getMessage());         ex.printStackTrace();      }   }   public void performancePutMultiThread(int numOfQueues, int numOfMsg, int sizeOfMsg)      throws XmlBlasterException {      // set up the queue ....      this.queues = new I_Queue[numOfQueues];      int threadsPerQueue = 5;      QueueThread[] queueThreads = new QueueThread[numOfQueues*threadsPerQueue];      QueuePropertyBase prop = new CbQueueProperty(glob, Constants.RELATING_CALLBACK, "/node/test");      prop.setMaxEntries(numOfMsg*threadsPerQueue + 1);      log.info("starting setting up " + numOfQueues + " queues");      long t0 = System.currentTimeMillis();      for (int i=0; i < numOfQueues; i++) {         try {            StorageId queueId = new StorageId(Constants.RELATING_CALLBACK, "perfomance/Put_" + i);            this.queues[i] = this.glob.getQueuePluginManager().getPlugin(PLUGIN_TYPES[i], "1.0", queueId, prop);            queues[i].clear();         }         catch (Exception ex) {            fail(ME + " exception when constructing the queue object. " + ex.getMessage());         }         try {            for (int j=0; j < threadsPerQueue; j++)                queueThreads[i*threadsPerQueue+j] = new QueueThread(glob, "queue"+i, queues[i], log, numOfMsg, sizeOfMsg);         }         catch (Exception ex) {            log.severe("Exception when instantiating the thread " + i + " " + ex.getMessage());         }      }      long t1 = System.currentTimeMillis() - t0;      log.info("setting up " + numOfQueues + " queues took " + (1.0*t1/1000) + " seconds");      t0 = System.currentTimeMillis();      for (int i=0; i < numOfQueues*threadsPerQueue; i++) queueThreads[i].start();      try {         while (QueueThread.counter > 0) {            Thread.sleep(100L);         }      }      catch (Exception ex) {      }      t1 = System.currentTimeMillis() - t0;      log.info("performacePutMultiThread putting " + numOfMsg + " messages in " + numOfQueues + " queues with " + threadsPerQueue + " threads per queue took " + (1.0*t1/1000) + " seconds");   }   /**    * Method is used by TestRunner to load these tests    */   public static Test suite() {      TestSuite suite= new TestSuite();      Global glob = new Global();      for (int i=0; i < PLUGIN_TYPES.length; i++) {         suite.addTest(new QueueThreadingTest(glob, "testPerfomancePutMultiThread", i));      }      return suite;   }    /**    * <pre>    *  java org.xmlBlaster.test.classtest.queue.QueueThreadingTest    * </pre>    */   public static void main(String args[]) {      Global glob = new Global(args);      for (int i=0; i < PLUGIN_TYPES.length; i++) {         QueueThreadingTest testSub = new QueueThreadingTest(glob, "QueueThreadingTest", i);         long startTime = System.currentTimeMillis();         testSub.setUp();         testSub.testPerfomancePutMultiThread();         testSub.tearDown();         long usedTime = System.currentTimeMillis() - startTime;         testSub.log.info("time used for tests: " + usedTime/1000 + " seconds");      }   }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -