Package org.jboss.arquillian.osgi.internal

Source Code of org.jboss.arquillian.osgi.internal.AbstractOSGiContainer

/*
* JBoss, Home of Professional Open Source
* Copyright 2009, Red Hat Middleware LLC, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* Licensed 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.jboss.arquillian.osgi.internal;

import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.URL;
import java.util.zip.ZipInputStream;

import javax.management.MBeanServerConnection;
import javax.management.MBeanServerInvocationHandler;
import javax.management.MalformedObjectNameException;
import javax.management.ObjectName;

import org.jboss.arquillian.osgi.OSGiContainer;
import org.jboss.arquillian.spi.TestClass;
import org.jboss.arquillian.spi.util.ArquillianHelper;
import org.jboss.osgi.spi.util.BundleInfo;
import org.jboss.shrinkwrap.api.Archive;
import org.jboss.shrinkwrap.api.ShrinkWrap;
import org.jboss.shrinkwrap.api.exporter.ZipExporter;
import org.jboss.shrinkwrap.api.importer.ZipImporter;
import org.jboss.shrinkwrap.api.spec.JavaArchive;
import org.osgi.framework.Bundle;
import org.osgi.framework.BundleContext;
import org.osgi.framework.BundleException;
import org.osgi.framework.Version;

/**
* An abstract {@link OSGiContainer}
*
* @author thomas.diesler@jboss.com
* @since 07-Sep-2010
*/
public abstract class AbstractOSGiContainer implements OSGiContainer
{
   private BundleContext context;
   private TestClass testClass;

   protected AbstractOSGiContainer(BundleContext context, TestClass testClass)
   {
      this.context = context;
      this.testClass = testClass;
   }

   public static ObjectName getArchiveProviderName(TestClass testClass)
   {
      String name = InternalArchiveProvider.ONAME_PREFIX + testClass.getSimpleName();
      try
      {
         return new ObjectName(name);
      }
      catch (MalformedObjectNameException e)
      {
         throw new IllegalArgumentException("Invalid object name: " + name);
      }
   }

   protected BundleContext getBundleContext()
   {
      return context;
   }

   public Bundle installBundle(Archive<?> archive) throws BundleException
   {
      InputStream inputStream;

      ClassLoader ctxLoader = Thread.currentThread().getContextClassLoader();
      try
      {
         // Read the archive in the context of the arquillian-osgi-bundle
         Thread.currentThread().setContextClassLoader(getClass().getClassLoader());
         ZipExporter exporter = archive.as(ZipExporter.class);
         ByteArrayOutputStream baos = new ByteArrayOutputStream();
         exporter.exportZip(baos);

         inputStream = new ByteArrayInputStream(baos.toByteArray());
      }
      finally
      {
         Thread.currentThread().setContextClassLoader(ctxLoader);
      }

      return context.installBundle(archive.getName(), inputStream);
   }

   public Bundle installBundle(String artifactId) throws BundleException
   {
      return installBundle(null, artifactId, null);
   }

   public Bundle installBundle(String groupId, String artifactId, String version) throws BundleException
   {
      URL artifactURL = ArquillianHelper.getArtifactURL(groupId, artifactId, version);
      if (artifactURL == null)
         return null;

      // Verify that the artifact is a bundle
      BundleInfo info = BundleInfo.createBundleInfo(artifactURL);
      Bundle bundle = getBundle(info.getSymbolicName(), info.getVersion());
      if (bundle != null)
         return bundle;

      bundle = context.installBundle(artifactURL.toExternalForm());
      return bundle;
   }

   public Bundle getBundle(String symbolicName, Version version) throws BundleException
   {
      if (context == null)
         throw new IllegalArgumentException("Null context");
      if (symbolicName == null)
         throw new IllegalArgumentException("Null symbolicName");

      for (Bundle bundle : context.getBundles())
      {
         boolean artefactMatch = symbolicName.equals(bundle.getSymbolicName());
         boolean versionMatch = version == null || version.equals(bundle.getVersion());
         if (artefactMatch && versionMatch)
            return bundle;
      }
      return null;
   }

   public Archive<?> getTestArchive(String name)
   {
      InputStream input = getTestArchiveStream(name);

      ClassLoader ctxLoader = Thread.currentThread().getContextClassLoader();
      try
      {
         // Create the archive in the context of the arquillian-osgi-bundle
         Thread.currentThread().setContextClassLoader(getClass().getClassLoader());
         JavaArchive archive = ShrinkWrap.create(JavaArchive.class, name);
         ZipImporter zipImporter = archive.as(ZipImporter.class);
         zipImporter.importZip(new ZipInputStream(input));
         return archive;
      }
      finally
      {
         Thread.currentThread().setContextClassLoader(ctxLoader);
      }
   }

   public InputStream getTestArchiveStream(String name)
   {
      try
      {
         MBeanServerConnection mbeanServer = getMBeanServerConnection();
         ObjectName providerName = getArchiveProviderName(testClass);
         if (mbeanServer.isRegistered(providerName) == false)
            throw new IllegalStateException("ArchiveProvider not registered: " + providerName);

         InternalArchiveProvider proxy = getMBeanProxy(mbeanServer, providerName, InternalArchiveProvider.class);
         return new ByteArrayInputStream(proxy.getTestArchive(name));
      }
      catch (IOException ex)
      {
         throw new IllegalStateException("Cannot obtain test archive: " + name, ex);
      }
   }

   public abstract MBeanServerConnection getMBeanServerConnection();

   private <T> T getMBeanProxy(MBeanServerConnection mbeanServer, ObjectName name, Class<T> interf)
   {
      return (T)MBeanServerInvocationHandler.newProxyInstance(mbeanServer, name, interf, false);
   }
}
TOP

Related Classes of org.jboss.arquillian.osgi.internal.AbstractOSGiContainer

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.