[jboss-remoting-commits] JBoss Remoting SVN: r4486 - in remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/dynamic/remote: classloaders and 1 other directory.

jboss-remoting-commits at lists.jboss.org jboss-remoting-commits at lists.jboss.org
Sat Aug 9 04:12:13 EDT 2008


Author: ron.sigal at jboss.com
Date: 2008-08-09 04:12:13 -0400 (Sat, 09 Aug 2008)
New Revision: 4486

Added:
   remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/dynamic/remote/classloaders/
   remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/dynamic/remote/classloaders/InjectedClassloadersTestCase.java
   remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/dynamic/remote/classloaders/Response.java
   remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/dynamic/remote/classloaders/ResponseImpl.java
   remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/dynamic/remote/classloaders/TestClassLoader1.java
   remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/dynamic/remote/classloaders/TestClassLoader2.java
Log:
JBREM-1000: New unit test.

Added: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/dynamic/remote/classloaders/InjectedClassloadersTestCase.java
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/dynamic/remote/classloaders/InjectedClassloadersTestCase.java	                        (rev 0)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/dynamic/remote/classloaders/InjectedClassloadersTestCase.java	2008-08-09 08:12:13 UTC (rev 4486)
@@ -0,0 +1,299 @@
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2005, JBoss Inc., and individual contributors as indicated
+* by the @authors tag. See the copyright.txt 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.remoting.marshall.dynamic.remote.classloaders;
+
+import java.net.InetAddress;
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.Map;
+
+import javax.management.MBeanServer;
+
+import junit.framework.TestCase;
+
+import org.apache.log4j.ConsoleAppender;
+import org.apache.log4j.Level;
+import org.apache.log4j.Logger;
+import org.apache.log4j.PatternLayout;
+import org.jboss.logging.XLevel;
+import org.jboss.remoting.Client;
+import org.jboss.remoting.InvocationRequest;
+import org.jboss.remoting.InvokerLocator;
+import org.jboss.remoting.Remoting;
+import org.jboss.remoting.ServerConfiguration;
+import org.jboss.remoting.ServerInvocationHandler;
+import org.jboss.remoting.ServerInvoker;
+import org.jboss.remoting.callback.InvokerCallbackHandler;
+import org.jboss.remoting.transport.Connector;
+import org.jboss.remoting.transport.PortUtil;
+
+
+public class InjectedClassloadersTestCase extends TestCase
+{
+   private static Logger log = Logger.getLogger(InjectedClassloadersTestCase.class);
+   private static String jarFileName = "C:/cygwin/home/rsigal/workspace/JBossRemoting-2.x/output/lib/jboss-remoting-loading-tests.jar";
+   private static String targetClassName = "org.jboss.test.remoting.marshall.dynamic.remote.classloaders.ResponseImpl";
+   
+   private static final int BY_DIRECT_INJECTION = 1;
+   private static final int BY_SERVER_CONFIGURATION = 2;
+   private static final int BY_CONFIG_MAP = 3;
+   
+   private static Object RESPONSE_VALUE;
+   private static boolean firstTime = true;
+   
+   protected String host;
+   protected int port;
+   protected String locatorURI;
+   protected InvokerLocator serverLocator;
+   protected Connector connector;
+   protected TestClassLoader1 classLoader1;
+   protected TestClassLoader2 classLoader2;
+   protected TestInvocationHandler invocationHandler;
+
+   
+   public static void main(String[] args)
+   {
+      InjectedClassloadersTestCase server = new InjectedClassloadersTestCase();
+      try
+      {
+         server.setUp();
+
+         while(true)
+         {
+            Thread.sleep(5000);
+         }
+      }
+      catch(Exception e)
+      {
+         e.printStackTrace();
+      }
+   }
+   
+   
+   public void setUp() throws Exception
+   {
+      if (firstTime)
+      {
+         firstTime = false;
+         Logger.getLogger("org.jboss.remoting").setLevel(XLevel.INFO);
+         Logger.getLogger("org.jboss.test.remoting").setLevel(Level.INFO);
+         String pattern = "[%d{ABSOLUTE}] [%t] %5p (%F:%L) - %m%n";
+         PatternLayout layout = new PatternLayout(pattern);
+         ConsoleAppender consoleAppender = new ConsoleAppender(layout);
+         Logger.getRootLogger().addAppender(consoleAppender);
+         ClassLoader cl = new TestClassLoader2(getClass().getClassLoader(), jarFileName, targetClassName);
+         Class c = Class.forName(targetClassName, false, cl);
+         RESPONSE_VALUE = c.newInstance();
+      }
+   }
+   
+   
+   public void tearDown() throws Exception
+   {
+      if(connector != null)
+      {
+         connector.stop();
+         connector.destroy();
+      }
+   }
+   
+   
+   public void testByDirectInjection() throws Throwable
+   {
+      log.info("entering " + getName());
+      
+      // Start server.
+      setupServer(BY_DIRECT_INJECTION);
+      
+      // Create client.
+      InvokerLocator clientLocator = new InvokerLocator(locatorURI);
+      HashMap clientConfig = new HashMap();
+      clientConfig.put(InvokerLocator.FORCE_REMOTE, "true");
+      addExtraClientConfig(clientConfig);
+      Client client = new Client(clientLocator, clientConfig);
+      client.connect();
+      log.info("client is connected");
+      
+      // Verify that unmarshaller can get ResponseImpl class.
+      Object response = client.invoke("abc");
+      log.info("response: " + response);
+      assertEquals(targetClassName, response.getClass().getName());
+      
+      // Verify that MarshallerLoaderHandler tried both configured classLoaders.
+      assertTrue(classLoader1.queriedForTarget);
+      assertTrue(classLoader2.queriedForTarget);
+
+      client.disconnect();
+      shutdownServer();
+      log.info(getName() + " PASSES");
+   }
+   
+   
+   public void testByServerConfiguration() throws Throwable
+   {
+      log.info("entering " + getName());
+      
+      // Start server.
+      setupServer(BY_SERVER_CONFIGURATION);
+      
+      // Create client.
+      InvokerLocator clientLocator = new InvokerLocator(locatorURI);
+      HashMap clientConfig = new HashMap();
+      clientConfig.put(InvokerLocator.FORCE_REMOTE, "true");
+      addExtraClientConfig(clientConfig);
+      Client client = new Client(clientLocator, clientConfig);
+      client.connect();
+      log.info("client is connected");
+      
+      // Verify that unmarshaller can get ResponseImpl class.
+      Object response = client.invoke("abc");
+      log.info("response: " + response);
+      assertEquals(targetClassName, response.getClass().getName());
+      
+      // Verify that MarshallerLoaderHandler tried both configured classLoaders.
+      assertTrue(classLoader1.queriedForTarget);
+      assertTrue(classLoader2.queriedForTarget);
+
+      client.disconnect();
+      shutdownServer();
+      log.info(getName() + " PASSES");
+   }
+   
+   
+   public void testByConfigMap() throws Throwable
+   {
+      log.info("entering " + getName());
+      
+      // Start server.
+      setupServer(BY_CONFIG_MAP);
+      
+      // Create client.
+      InvokerLocator clientLocator = new InvokerLocator(locatorURI);
+      HashMap clientConfig = new HashMap();
+      clientConfig.put(InvokerLocator.FORCE_REMOTE, "true");
+      addExtraClientConfig(clientConfig);
+      Client client = new Client(clientLocator, clientConfig);
+      client.connect();
+      log.info("client is connected");
+      
+      // Verify that unmarshaller can get ResponseImpl class.
+      Object response = client.invoke("abc");
+      log.info("response: " + response);
+      assertEquals(targetClassName, response.getClass().getName());
+      
+      // Verify that MarshallerLoaderHandler tried both configured classLoaders.
+      assertTrue(classLoader1.queriedForTarget);
+      assertTrue(classLoader2.queriedForTarget);
+
+      client.disconnect();
+      shutdownServer();
+      log.info(getName() + " PASSES");
+   }
+   
+   
+   protected String getTransport()
+   {
+      return "socket";
+   }
+   
+   
+   protected void addExtraClientConfig(Map config) {}
+   protected void addExtraServerConfig(Map config) {}
+   
+
+   protected void setupServer(int configMethod) throws Exception
+   {
+      host = InetAddress.getLocalHost().getHostAddress();
+      port = PortUtil.findFreePort(host);
+      locatorURI = getTransport() + "://" + host + ":" + port;
+      locatorURI += "/?" + InvokerLocator.LOADER_PORT + "=4444";
+      serverLocator = new InvokerLocator(locatorURI);
+      HashMap config = new HashMap();
+      config.put(InvokerLocator.FORCE_REMOTE, "true");
+      addExtraServerConfig(config);
+      
+      ArrayList classLoaders = new ArrayList();
+      classLoader1 = new TestClassLoader1(targetClassName);
+      classLoader2 = new TestClassLoader2(getClass().getClassLoader(), jarFileName, targetClassName);
+      classLoaders.add(classLoader1);
+      classLoaders.add(classLoader2);
+      
+      switch (configMethod)
+      {
+         case BY_DIRECT_INJECTION:
+            log.info("injecting: BY_DIRECT_INJECTION");
+            connector = new Connector(serverLocator, config);
+            connector.setRemoteClassLoaders(classLoaders);
+            break;
+            
+         case BY_SERVER_CONFIGURATION:
+            log.info("injecting: BY_SERVER_CONFIGURATION");
+            ServerConfiguration serverConfiguration = new ServerConfiguration(getTransport());
+            Map serverParameters = new HashMap();
+            serverParameters.put(Remoting.REMOTE_CLASS_LOADERS, classLoaders);
+            serverConfiguration.setServerParameters(serverParameters);
+            Map invokerLocatorParameters = new HashMap();
+            invokerLocatorParameters.put(InvokerLocator.LOADER_PORT, "4444");
+            serverConfiguration.setInvokerLocatorParameters(invokerLocatorParameters);
+            connector = new Connector(config);
+            connector.setServerConfiguration(serverConfiguration);
+            break;
+            
+         case BY_CONFIG_MAP:
+            log.info("injecting: BY_CONFIG_MAP");
+            config.put(Remoting.REMOTE_CLASS_LOADERS, classLoaders);
+            connector = new Connector(locatorURI, config);
+            break;
+            
+         default:
+            log.error("unrecognized configMethod: " + configMethod);
+            return;
+      }
+
+      connector.create();
+      invocationHandler = new TestInvocationHandler();
+      connector.addInvocationHandler("test", invocationHandler);
+      connector.start();
+      locatorURI = connector.getInvokerLocator();
+      log.info("Started remoting server with locator uri of: " + locatorURI);
+   }
+   
+   
+   protected void shutdownServer() throws Exception
+   {
+      if (connector != null)
+         connector.stop();
+   }
+   
+   
+   static class TestInvocationHandler implements ServerInvocationHandler
+   {
+      public void addListener(InvokerCallbackHandler callbackHandler) {}
+      public Object invoke(final InvocationRequest invocation) throws Throwable
+      {
+         return RESPONSE_VALUE;
+      }
+      public void removeListener(InvokerCallbackHandler callbackHandler) {}
+      public void setMBeanServer(MBeanServer server) {}
+      public void setInvoker(ServerInvoker invoker) {}
+   }
+}
\ No newline at end of file

Added: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/dynamic/remote/classloaders/Response.java
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/dynamic/remote/classloaders/Response.java	                        (rev 0)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/dynamic/remote/classloaders/Response.java	2008-08-09 08:12:13 UTC (rev 4486)
@@ -0,0 +1,36 @@
+
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2005, JBoss Inc., and individual contributors as indicated
+* by the @authors tag. See the copyright.txt 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.remoting.marshall.dynamic.remote.classloaders;
+
+/**
+ * @author <a href="ron.sigal at jboss.com">Ron Sigal</a>
+ * @version $Revision: 1.1 $
+ * <p>
+ * Copyright Aug 8, 2008
+ * </p>
+ */
+public interface Response
+{
+   public Object getResult();
+}
+

Added: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/dynamic/remote/classloaders/ResponseImpl.java
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/dynamic/remote/classloaders/ResponseImpl.java	                        (rev 0)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/dynamic/remote/classloaders/ResponseImpl.java	2008-08-09 08:12:13 UTC (rev 4486)
@@ -0,0 +1,44 @@
+
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2005, JBoss Inc., and individual contributors as indicated
+* by the @authors tag. See the copyright.txt 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.remoting.marshall.dynamic.remote.classloaders;
+
+import java.io.Serializable;
+
+/**
+ * @author <a href="ron.sigal at jboss.com">Ron Sigal</a>
+ * @version $Revision: 1.1 $
+ * <p>
+ * Copyright Aug 8, 2008
+ * </p>
+ */
+public class ResponseImpl implements Response, Serializable
+{
+   /** The serialVersionUID */
+   private static final long serialVersionUID = -1012825226667853526L;
+
+   public Object getResult()
+   {
+      return "result";
+   }
+}
+

Added: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/dynamic/remote/classloaders/TestClassLoader1.java
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/dynamic/remote/classloaders/TestClassLoader1.java	                        (rev 0)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/dynamic/remote/classloaders/TestClassLoader1.java	2008-08-09 08:12:13 UTC (rev 4486)
@@ -0,0 +1,72 @@
+
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2005, JBoss Inc., and individual contributors as indicated
+* by the @authors tag. See the copyright.txt 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.remoting.marshall.dynamic.remote.classloaders;
+
+import java.io.InputStream;
+
+import org.apache.log4j.Logger;
+
+/**
+ * @author <a href="ron.sigal at jboss.com">Ron Sigal</a>
+ * @version $Revision: 1.1 $
+ * <p>
+ * Copyright Aug 8, 2008
+ * </p>
+ */
+public class TestClassLoader1 extends ClassLoader
+{
+   public boolean queriedForTarget;
+
+   private static Logger log = Logger.getLogger(TestClassLoader1.class);
+   
+   private String targetClassName;
+   private String targetClassFileName;
+   
+   public TestClassLoader1(String targetClassName)
+   {
+      this.targetClassName = targetClassName;
+      this.targetClassFileName = targetClassName.replace('.', '/') + ".class";
+   }
+   
+   protected Class loadClass(String name, boolean resolve) throws ClassNotFoundException
+   {
+      log.info(this + " queried for class: " + name);
+      if (targetClassName.equals(name))
+      {
+         queriedForTarget = true;
+      }
+      return null;
+   }
+
+   public InputStream getResourceAsStream(String name) 
+   {
+      log.info(this + " queried for resource InputStream: " + name);
+      if (targetClassFileName.equals(name))
+      {
+         log.info(this + " looking for resource InputStream: " + name);
+         queriedForTarget = true;
+      }
+      return null;
+   }
+}
+

Added: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/dynamic/remote/classloaders/TestClassLoader2.java
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/dynamic/remote/classloaders/TestClassLoader2.java	                        (rev 0)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/marshall/dynamic/remote/classloaders/TestClassLoader2.java	2008-08-09 08:12:13 UTC (rev 4486)
@@ -0,0 +1,178 @@
+
+/*
+* JBoss, Home of Professional Open Source
+* Copyright 2005, JBoss Inc., and individual contributors as indicated
+* by the @authors tag. See the copyright.txt 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.remoting.marshall.dynamic.remote.classloaders;
+
+import java.io.ByteArrayInputStream;
+import java.io.ByteArrayOutputStream;
+import java.io.File;
+import java.io.FileInputStream;
+import java.io.IOException;
+import java.io.InputStream;
+import java.util.jar.JarInputStream;
+import java.util.zip.ZipEntry;
+
+import org.apache.log4j.Logger;
+
+/**
+ * @author <a href="ron.sigal at jboss.com">Ron Sigal</a>
+ * @version $Revision: 1.1 $
+ * <p>
+ * Copyright Aug 8, 2008
+ * </p>
+ */
+public class TestClassLoader2 extends ClassLoader
+{
+   public boolean queriedForTarget;
+   
+   private static Logger log = Logger.getLogger(TestClassLoader2.class);
+   
+   private String jarFileName;
+   private String targetClassName;
+   private String targetClassFileName;
+   
+   
+   public static void main(String[] args)
+   {
+      String jarFileName = "C:/cygwin/home/rsigal/workspace/JBossRemoting-2.x/output/lib/jboss-remoting-loading-tests.jar";
+      String className = "org.jboss.test.remoting.marshall.dynamic.remote.classloaders.ResponseImpl";
+      ClassLoader cl = TestClassLoader2.class.getClassLoader();
+      TestClassLoader2 tcl2 = new TestClassLoader2(cl, jarFileName, className);
+      try
+      {
+         Class c = tcl2.loadClass(className);
+         Object o = c.newInstance();
+         log.info("new object: " + o);
+      }
+      catch (Exception e)
+      {
+         e.printStackTrace();
+      }
+   }
+   
+   
+   public TestClassLoader2(ClassLoader parent, String jarFileName, String targetClassName)
+   {
+      super(parent);
+      this.jarFileName = jarFileName;
+      this.targetClassName = targetClassName;
+      this.targetClassFileName = targetClassName.replace('.', '/') + ".class";
+   }
+   
+   
+   public InputStream getResourceAsStream(String name) 
+   {
+      try
+      {
+         log.info(this + " queried for resource InputStream: " + name);
+         if (targetClassFileName.equals(name))
+         {
+            log.info(this + " looking for resource InputStream: " + name);
+            queriedForTarget = true;
+            byte[] bytecode = loadByteCodeFromClassFileName(name);
+            log.info(this + " returning resource InputStream: " + name);
+            return new ByteArrayInputStream(bytecode);
+         }
+         else
+         {
+            return super.getResourceAsStream(name);
+         }
+      }
+      catch (Exception e)
+      {
+         log.error(this + " unable to find resource: " + name);
+         return null;
+      }
+   }
+   
+   
+   protected Class loadClass(String name, boolean resolve) throws ClassNotFoundException
+   {
+      try
+      {
+         log.info(this + " queried for class: " + name);
+         if (targetClassName.equals(name))
+         {
+            log.info(this + " loading class: " + name);
+            queriedForTarget = true;
+            byte[] bytes = loadByteCodeFromClassName(name);
+            Class c = defineClass(name, bytes, 0, bytes.length);
+            if (resolve)
+            {
+               resolveClass(c);
+            }
+            return c;
+         }
+         else
+         {
+            return super.loadClass(name, resolve);
+         }
+      }
+      catch (IOException e)
+      {
+         throw new ClassNotFoundException(name);
+      }
+   }
+   
+   
+   private byte[] loadByteCodeFromClassName(String classname)
+   throws ClassNotFoundException, IOException
+   {
+      String classFileName = classname.replace('.', '/') + ".class";
+      return loadByteCodeFromClassFileName(classFileName);
+   }
+   
+   
+   private byte[] loadByteCodeFromClassFileName(String classFileName)
+   throws ClassNotFoundException, IOException
+   {
+      File file = new File(jarFileName);
+      JarInputStream jis = new JarInputStream(new FileInputStream(file));
+      ZipEntry entry = jis.getNextEntry();
+      
+      try
+      {
+         while (entry != null)
+         {
+            log.info("name: " + entry.getName());
+            if (classFileName.equals(entry.getName()))
+               break;
+            entry = jis.getNextEntry();
+         }
+         log.info("size: " + entry.getSize());
+         ByteArrayOutputStream baos = new ByteArrayOutputStream();
+         byte[] tmp = new byte[1024];
+         int read = 0;
+         while( (read = jis.read(tmp)) > 0 )
+         {
+            baos.write(tmp, 0, read);
+         }
+         byte[] bytecode = baos.toByteArray();
+         return bytecode;
+      }
+      finally
+      {
+         if( jis != null )
+            jis.close();
+      }
+   }
+}




More information about the jboss-remoting-commits mailing list