Package org.knopflerfish.bundle.eventadmin_test.scenario14.impl

Source Code of org.knopflerfish.bundle.eventadmin_test.scenario14.impl.Scenario14TestSuite$Setup

/*
* Copyright (c) 2003-2009, KNOPFLERFISH project
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following
* conditions are met:
*
* - Redistributions of source code must retain the above copyright
*   notice, this list of conditions and the following disclaimer.
*
* - Redistributions in binary form must reproduce the above
*   copyright notice, this list of conditions and the following
*   disclaimer in the documentation and/or other materials
*   provided with the distribution.
*
* - Neither the name of the KNOPFLERFISH project nor the names of its
*   contributors may be used to endorse or promote products derived
*   from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
* OF THE POSSIBILITY OF SUCH DAMAGE.
*/
package org.knopflerfish.bundle.eventadmin_test.scenario14.impl;

import java.util.Dictionary;
import java.util.Hashtable;

import junit.framework.TestCase;
import junit.framework.TestSuite;

import org.osgi.framework.BundleContext;
import org.osgi.framework.ServiceReference;
import org.osgi.framework.ServiceRegistration;
import org.osgi.service.event.Event;
import org.osgi.service.event.EventAdmin;
import org.osgi.service.event.EventConstants;
import org.osgi.service.event.EventHandler;

/**
* This class will stresstest the eventAdmin service and assert that
* it works during intensive conditions and periods.
*
* @author Magnus Klack
*
*/
public class Scenario14TestSuite extends TestSuite {
  /** the bundle context */
  private BundleContext bundleContext;

  /** the display name */
  private String name;

  private Object semaphore= new Object();

  /**
   * Constructor
   *
   * @param context the bundle context of the instance creator
   */
  public Scenario14TestSuite(BundleContext context){
    super("Scenario14 - Stress");

    bundleContext=context;
    addTest(new Setup());

    String[] topic1 = {"com/acme/*"};
    String[] topic2 = {"com/acme/timer/*"};
    String[] topic3 = {"COM/acme/LOCAL"};
    String[] topic4 = {"*"};
    String[] topic5 = {"com/Roland/timer"};
    String[] topic6 = {"/com/acme/timer"};
    String[] topic7 = {"*"};

    EventConsumer[] eventConsumer = new EventConsumer[] {
      new EventConsumer(bundleContext,topic1 ,"EventConsumer", 1),
      new EventConsumer(bundleContext,topic2 ,"EventConsumer", 2),
      new EventConsumer(bundleContext,topic3 ,"EventConsumer", 3),
      new EventConsumer(bundleContext,topic4 ,"EventConsumer", 4),
      new EventConsumer(bundleContext,topic5 ,"EventConsumer", 5),
      new EventConsumer(bundleContext,topic6 ,"EventConsumer", 6),
      new EventConsumer(bundleContext,topic7 ,"EventConsumer", 7) };

    for (int i=0; i<eventConsumer.length; i++) {
      addTest(eventConsumer[i]);
    }

    addTest(new Cleanup(eventConsumer));
  }





  /**
   * Sets up neccessary environment
   *
   * @author Magnus Klack
   */
  class Setup extends TestCase {



    public Setup(){


    }
    public void runTest() throws Throwable {
      EventPublisher p1 = new EventPublisher(bundleContext,
                                             "com/acme/timer", "EventPublisher", 1);

      EventPublisher p2 = new EventPublisher(bundleContext,
                                             "com/acme/timer", "EventPublisher", 2);

      EventPublisher p3 = new EventPublisher(bundleContext,
                                             "com/acme/timer", "EventPublisher", 3);

      EventPublisher p4 = new EventPublisher(bundleContext,
                                             "com/Roland/timer", "EventPublisher", 4);



      p1.start();
      p2.start();
      p3.start();
      p4.start();
    }
    public String getName() {
      String name = getClass().getName();
      int ix = name.lastIndexOf("$");
      if(ix == -1) {
        ix = name.lastIndexOf(".");
      }
      if(ix != -1) {
        name = name.substring(ix + 1);
      }
      return name;
    }
  }
  /**
   * Clean up the test suite
   *
   * @author Magnus Klack
   */
  class Cleanup extends TestCase {
    private EventConsumer[] eventConsumer;

    public Cleanup(EventConsumer[] eventConsumer) {
      this.eventConsumer = eventConsumer;
    }
    public void runTest() throws Throwable {
      Throwable error = null;
      for (int i=0; i<eventConsumer.length; i++) {
        try {
          eventConsumer[i].cleanup();
        } catch (Throwable e) {
          error = e;
        }
      }
      if (error != null) throw error;
    }
    public String getName() {
      String name = getClass().getName();
      int ix = name.lastIndexOf("$");
      if(ix == -1) {
        ix = name.lastIndexOf(".");
      }
      if(ix != -1) {
        name = name.substring(ix + 1);
      }
      return name;
    }
  }



  private class EventPublisher extends Thread  {
    /** A reference to a service */
    private ServiceReference serviceReference;

    /** The admin which delivers the events */
    private EventAdmin eventAdmin;

    /** the private bundle context */
    private BundleContext bundleContext;

    private String topicToPublish;

    /** the running variable */
    private boolean running=true;

    /** the id of the publisher */
    private int publisherId;


    public EventPublisher(BundleContext context,String topic,String name,int id){
      /* call super class */
      super(name + ":" + id);
      /* assign bundleContext */
      bundleContext = context;
      /* assign the topic to publish */
      topicToPublish = topic;
      /* assign the publisherID */
      publisherId = id;

      /* Claims the reference of the EventAdmin Service */
      serviceReference = bundleContext
        .getServiceReference(EventAdmin.class.getName());


      /* get the service  */
      eventAdmin = (EventAdmin) bundleContext
        .getService(serviceReference);


    }


    public void run() {

      int i = 0;
      while (i<2000) {
        /* a Hash table to store message in */
        Dictionary message = new Hashtable();
        /* put some properties into the messages */
        message.put("message", new Integer(i));
        /* put the sender */
        message.put("FROM", this);


        if (publisherId <= 2) {
          /* send the message */
          eventAdmin
            .sendEvent(new Event(topicToPublish, message));
        } else if (publisherId > 2) {
          /* send the message */
          eventAdmin
            .postEvent(new Event(topicToPublish, message));

        }

        i++;

      }// end while..
    }
  }

  /**
   * Class consumes events
   *
   * @author magnus
   */
  class EventConsumer extends TestCase implements EventHandler {
    /** class variable for service registration */
    private ServiceRegistration serviceRegistration;

    /** class variable indicating the topics */
    private String[] topicsToConsume;

    /** class variable keeping number of asynchronus message */
    private int numOfasynchMessages=0;

    /** class variable keeping number of asynchronus message */
    private int numOfsynchMessages=0;

    /** class variable holding the old syncronus message nummber */
    private int synchMessageExpectedNumber=0;

    /** class variable holding the old asyncronus message nummber */
    private int asynchMessageExpectedNumber=0;

    private Throwable error;

    /**
     * Constructor creates a consumer service
     *
     * @param bundleContext
     * @param topics
     */
    public EventConsumer(BundleContext bundleContext, String[] topics,
                         String name, int id) {
      /* call super class */
      super(name + ":" + id);
      /* assign the consume topics */
      topicsToConsume = topics;

    }

    /**
     * run the test
     */
    public void runTest() throws Throwable {
      /* create the hashtable to put properties in */
      Dictionary props = new Hashtable();
      /* put service.pid property in hashtable */
      props.put(EventConstants.EVENT_TOPIC, topicsToConsume);
      /* register the service */
      serviceRegistration = bundleContext.registerService
        (EventHandler.class.getName(), this, props);

      assertNotNull(getName() +" service registration should not be null",
                    serviceRegistration);

      if (serviceRegistration == null) {
        fail("Could not get Service Registration ");
      }

    }

    public void cleanup() throws Throwable {
      try {
        serviceRegistration.unregister();
      } catch (IllegalStateException ignore) {}
      if (error != null) {
        throw error;
      }
    }

    /**
     * This method takes events from the event admin service.
     */
    public void handleEvent(Event event) {
      try {
        //System.out.println("****************************  RECEVIED ***********************************");

        //String from = (String)event.getProperty("FROM");
        System.err.println(getName() +" recived an event  with topic:"
                           +event.getTopic());
      } catch (RuntimeException e) {
        error = e;
        throw e;
      } catch (Throwable e) {
        error = e;
      }
    }
  }
}
TOP

Related Classes of org.knopflerfish.bundle.eventadmin_test.scenario14.impl.Scenario14TestSuite$Setup

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.