Package org.jboss.aop.pointcut

Source Code of org.jboss.aop.pointcut.MatcherHelper

/*
  * 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.aop.pointcut;

import org.jboss.aop.AspectManager;
import org.jboss.aop.pointcut.ast.ASTAll;
import org.jboss.aop.pointcut.ast.ASTAllParameter;
import org.jboss.aop.pointcut.ast.ASTAnd;
import org.jboss.aop.pointcut.ast.ASTAndCFlow;
import org.jboss.aop.pointcut.ast.ASTAttribute;
import org.jboss.aop.pointcut.ast.ASTBoolean;
import org.jboss.aop.pointcut.ast.ASTCFlow;
import org.jboss.aop.pointcut.ast.ASTCFlowBoolean;
import org.jboss.aop.pointcut.ast.ASTCFlowExpression;
import org.jboss.aop.pointcut.ast.ASTCall;
import org.jboss.aop.pointcut.ast.ASTComposite;
import org.jboss.aop.pointcut.ast.ASTCompositeCFlow;
import org.jboss.aop.pointcut.ast.ASTConstructor;
import org.jboss.aop.pointcut.ast.ASTException;
import org.jboss.aop.pointcut.ast.ASTExecution;
import org.jboss.aop.pointcut.ast.ASTExecutionOnly;
import org.jboss.aop.pointcut.ast.ASTField;
import org.jboss.aop.pointcut.ast.ASTFieldExecution;
import org.jboss.aop.pointcut.ast.ASTGet;
import org.jboss.aop.pointcut.ast.ASTHas;
import org.jboss.aop.pointcut.ast.ASTHasField;
import org.jboss.aop.pointcut.ast.ASTMethod;
import org.jboss.aop.pointcut.ast.ASTNot;
import org.jboss.aop.pointcut.ast.ASTNotCFlow;
import org.jboss.aop.pointcut.ast.ASTOr;
import org.jboss.aop.pointcut.ast.ASTOrCFlow;
import org.jboss.aop.pointcut.ast.ASTParameter;
import org.jboss.aop.pointcut.ast.ASTPointcut;
import org.jboss.aop.pointcut.ast.ASTSet;
import org.jboss.aop.pointcut.ast.ASTStart;
import org.jboss.aop.pointcut.ast.ASTSub;
import org.jboss.aop.pointcut.ast.ASTSubCFlow;
import org.jboss.aop.pointcut.ast.ASTWithin;
import org.jboss.aop.pointcut.ast.ASTWithincode;
import org.jboss.aop.pointcut.ast.Node;
import org.jboss.aop.pointcut.ast.PointcutExpressionParserVisitor;
import org.jboss.aop.pointcut.ast.SimpleNode;
import org.jboss.aop.pointcut.ast.ASTConstruction;

/**
* Comment
*
* @author <a href="mailto:bill@jboss.org">Bill Burke</a>
* @version $Revision: 44925 $
*/
public abstract class MatcherHelper implements PointcutExpressionParserVisitor
{
   protected ASTStart start;
   protected AspectManager manager;

   protected MatcherHelper(ASTStart start, AspectManager manager)
   {
      this.start = start;
      this.manager = manager;
   }

   public boolean matches()
   {
      boolean matches = ((Boolean) visit(start, null)).booleanValue();
      return matches;
   }

   public Object visit(ASTStart node, Object data)
   {
      return node.jjtGetChild(0).jjtAccept(this, data);
   }

   public Object visit(ASTExecutionOnly node, Object data)
   {
      throw new RuntimeException("SHOULD NEVER BE CALLED!");
   }

   public Object visit(ASTBoolean node, Object data)
   {
      return node.jjtGetChild(0).jjtAccept(this, data);
   }

   public Object visit(ASTComposite node, Object data)
   {
      return node.jjtGetChild(0).jjtAccept(this, data);
   }

   public Object visit(ASTNot node, Object data)
   {

      Boolean bool = (Boolean) node.jjtGetChild(0).jjtAccept(this, data);
      boolean val = bool.booleanValue();
      return val ? Boolean.FALSE : Boolean.TRUE;
   }

   public Object visit(ASTSub node, Object data)
   {
      for (int i = 0; i < node.jjtGetNumChildren(); i++)
      {
         data = node.jjtGetChild(i).jjtAccept(this, data);
      }
      return data;
   }

   public Object visit(ASTAnd node, Object left)
   {
      Node andChild = node.jjtGetChild(0); // should only have one child
      boolean val = ((Boolean) left).booleanValue();
      return new Boolean(val && ((Boolean) andChild.jjtAccept(this, Boolean.FALSE)).booleanValue());
   }

   public Object visit(ASTOr node, Object left)
   {
      Node orChild = node.jjtGetChild(0); // should only have one child
      boolean val = ((Boolean) left).booleanValue();
      return new Boolean(val || ((Boolean) orChild.jjtAccept(this, Boolean.FALSE)).booleanValue());
   }

   protected abstract Boolean resolvePointcut(Pointcut p);

   public Object visit(ASTPointcut node, Object data)
   {
      Pointcut p = manager.getPointcut(node.getPointcutName());
      if (p == null) throw new RuntimeException("Unable to resolve pointcut reference: " + node.getPointcutName());
      return resolvePointcut(p);
   }

   //--- return false by default
   public Object visit(SimpleNode node, Object data)
   {
      return Boolean.FALSE;
   }

   public Object visit(ASTAll node, Object data)
   {
      return Boolean.FALSE;
   }

   public Object visit(ASTCFlowExpression node, Object data)
   {
      return Boolean.FALSE;
   }

   public Object visit(ASTCFlowBoolean node, Object data)
   {
      return Boolean.FALSE;
   }

   public Object visit(ASTNotCFlow node, Object data)
   {
      return Boolean.FALSE;
   }

   public Object visit(ASTCompositeCFlow node, Object data)
   {
      return Boolean.FALSE;
   }

   public Object visit(ASTSubCFlow node, Object data)
   {
      return Boolean.FALSE;
   }

   public Object visit(ASTAndCFlow node, Object data)
   {
      return Boolean.FALSE;
   }

   public Object visit(ASTOrCFlow node, Object data)
   {
      return Boolean.FALSE;
   }

   public Object visit(ASTCFlow node, Object data)
   {
      return Boolean.FALSE;
   }

   public Object visit(ASTCall node, Object data)
   {
      return Boolean.FALSE;
   }

   public Object visit(ASTWithin node, Object data)
   {
      return Boolean.FALSE;
   }

   public Object visit(ASTWithincode node, Object data)
   {
      return Boolean.FALSE;
   }

   public Object visit(ASTExecution node, Object data)
   {
      return Boolean.FALSE;
   }

   public Object visit(ASTConstruction node, Object data)
   {
      return Boolean.FALSE;
   }

   public Object visit(ASTGet node, Object data)
   {
      return Boolean.FALSE;
   }

   public Object visit(ASTSet node, Object data)
   {
      return Boolean.FALSE;
   }

   public Object visit(ASTMethod node, Object data)
   {
      return Boolean.FALSE;
   }

   public Object visit(ASTAttribute node, Object data)
   {
      return Boolean.FALSE;
   }

   public Object visit(ASTConstructor node, Object data)
   {
      return Boolean.FALSE;
   }

   public Object visit(ASTParameter node, Object data)
   {
      return Boolean.FALSE;
   }

   public Object visit(ASTAllParameter node, Object data)
   {
      return Boolean.FALSE;
   }

   public Object visit(ASTField node, Object data)
   {
      return Boolean.FALSE;
   }

   public Object visit(ASTException node, Object data)
   {
      return Boolean.FALSE;
   }

   public Object visit(ASTFieldExecution node, Object data)
   {
      return Boolean.FALSE;
   }

   public Object visit(ASTHas node, Object data)
   {
      return Boolean.FALSE;
   }

   public Object visit(ASTHasField node, Object data)
   {
      return Boolean.FALSE;
   }


}
TOP

Related Classes of org.jboss.aop.pointcut.MatcherHelper

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.