[jboss-cvs] JBossAS SVN: r69282 - projects/aop/trunk/aop/src/test/org/jboss/test/aop/proxy.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Jan 24 09:14:43 EST 2008


Author: kabir.khan at jboss.com
Date: 2008-01-24 09:14:43 -0500 (Thu, 24 Jan 2008)
New Revision: 69282

Removed:
   projects/aop/trunk/aop/src/test/org/jboss/test/aop/proxy/OutOfProcessProxySerializer.java
Log:
Unused

Deleted: projects/aop/trunk/aop/src/test/org/jboss/test/aop/proxy/OutOfProcessProxySerializer.java
===================================================================
--- projects/aop/trunk/aop/src/test/org/jboss/test/aop/proxy/OutOfProcessProxySerializer.java	2008-01-24 14:11:29 UTC (rev 69281)
+++ projects/aop/trunk/aop/src/test/org/jboss/test/aop/proxy/OutOfProcessProxySerializer.java	2008-01-24 14:14:43 UTC (rev 69282)
@@ -1,156 +0,0 @@
-/*
-* JBoss, Home of Professional Open Source.
-* Copyright 2006, Red Hat Middleware LLC, and individual contributors
-* as indicated by the @author tags. See the copyright.txt file 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.aop.proxy;
-
-import java.io.File;
-import java.io.FileOutputStream;
-import java.io.ObjectOutputStream;
-import java.io.PrintStream;
-
-import junit.framework.Assert;
-
-import org.jboss.aop.AspectManager;
-import org.jboss.aop.advice.AdviceBinding;
-import org.jboss.aop.advice.AdviceFactory;
-import org.jboss.aop.advice.AspectDefinition;
-import org.jboss.aop.advice.GenericAspectFactory;
-import org.jboss.aop.advice.InterceptorFactory;
-import org.jboss.aop.advice.Scope;
-import org.jboss.aop.advice.ScopedInterceptorFactory;
-import org.jboss.aop.pointcut.PointcutExpression;
-import org.jboss.aop.pointcut.ast.ParseException;
-import org.jboss.aop.proxy.container.AOPProxyFactory;
-import org.jboss.aop.proxy.container.AOPProxyFactoryMixin;
-import org.jboss.aop.proxy.container.AOPProxyFactoryParameters;
-import org.jboss.aop.proxy.container.GeneratedAOPProxyFactory;
-
-/**
- * 
- * @author <a href="kabir.khan at jboss.com">Kabir Khan</a>
- * @version $Revision: 1.1 $
- */
-public class OutOfProcessProxySerializer extends ProxyFileCreatorDelegate
-{
-   public static void main (String[] args)
-   {
-      if (args.length == 0)
-      {
-         System.exit(FEW_ARGS);
-      }
-      else if (args.length > 1)
-      {
-         System.exit(MANY_ARGS);
-      }
-      
-      File file = new File(args[0]);
-      if (!file.exists())
-      {
-         System.exit(NO_SUCH_FILE);
-      }
-      
-      try
-      {
-         OutOfProcessProxySerializer serializer = new OutOfProcessProxySerializer();
-         serializer.createAndSerializeProxy(file);
-      }
-      catch (Throwable t)
-      {
-         PrintStream out = null;
-         try
-         {
-            out = new PrintStream(new FileOutputStream(file));
-            t.printStackTrace(out);
-         }
-         catch(Exception e)
-         {
-         }
-         finally
-         {
-            try
-            {
-               out.close();
-            }
-            catch(Exception e)
-            {
-            }
-         }
-         System.exit(GENERAL_ERROR);
-      }
-   }
-   
-   public void createAndSerializeProxy(File file) throws Exception
-   {
-      AspectManager manager = AspectManager.instance();
-      addInterceptorBinding(manager, 
-            1, 
-            Scope.PER_VM, 
-            TestInterceptor.class.getName(), 
-            "execution(* $instanceof{" + SomeInterface.class.getName() + "}->helloWorld(..))");
-
-      
-      addAspectBinding(manager, 
-            2, 
-            Scope.PER_VM, 
-            TestAspect.class.getName(),
-            "advice",
-            "execution(* $instanceof{" + SomeInterface.class.getName() + "}->otherWorld(..))");
-         
-      AOPProxyFactoryParameters params = new AOPProxyFactoryParameters();
-      params.setInterfaces(new Class[] {SomeInterface.class});
-      params.setMixins(new AOPProxyFactoryMixin[] {
-            new AOPProxyFactoryMixin(OtherMixin.class, new Class[] {OtherMixinInterface.class, OtherMixinInterface2.class}, "20")
-      });
-      
-      params.setTarget(new SerializablePOJO());
-      AOPProxyFactory factory = new GeneratedAOPProxyFactory();
-      SomeInterface si = (SomeInterface)factory.createAdvisedProxy(params);
-      
-      TestInterceptor.invoked = false;
-      TestAspect.invoked = false;
-      si.helloWorld();
-      assertTrue(TestInterceptor.invoked);
-      assertFalse(TestAspect.invoked);
-      
-      TestInterceptor.invoked = false;
-      TestAspect.invoked = false;
-      si.otherWorld();
-      assertFalse(TestInterceptor.invoked);
-      assertTrue(TestAspect.invoked);
-      
-      ObjectOutputStream out = null;
-      try
-      {
-         out = new ObjectOutputStream(new FileOutputStream(file));
-         out.writeObject(si);
-      }
-      finally
-      {
-         try
-         {
-            out.close();
-         }
-         catch(Exception e)
-         {
-         }
-      }
-   }
-}




More information about the jboss-cvs-commits mailing list