19f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson/*
29f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * Licensed to the Apache Software Foundation (ASF) under one
39f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * or more contributor license agreements. See the NOTICE file
49f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * distributed with this work for additional information
59f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * regarding copyright ownership. The ASF licenses this file
69f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * to you under the Apache License, Version 2.0 (the  "License");
79f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * you may not use this file except in compliance with the License.
89f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * You may obtain a copy of the License at
99f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson *
109f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson *     http://www.apache.org/licenses/LICENSE-2.0
119f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson *
129f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * Unless required by applicable law or agreed to in writing, software
139f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * distributed under the License is distributed on an "AS IS" BASIS,
149f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
159f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * See the License for the specific language governing permissions and
169f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * limitations under the License.
179f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson */
189f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson/*
199f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * $Id: Function3Args.java 468655 2006-10-28 07:12:06Z minchau $
209f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson */
219f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilsonpackage org.apache.xpath.functions;
229f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
239f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilsonimport org.apache.xalan.res.XSLMessages;
249f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilsonimport org.apache.xpath.Expression;
259f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilsonimport org.apache.xpath.ExpressionOwner;
269f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilsonimport org.apache.xpath.XPathVisitor;
279f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
289f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson/**
299f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * Base class for functions that accept three arguments.
309f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson * @xsl.usage advanced
319f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson */
329f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilsonpublic class Function3Args extends Function2Args
339f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson{
349f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    static final long serialVersionUID = 7915240747161506646L;
359f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
369f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  /** The third argument passed to the function (at index 2).
379f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   *  @serial  */
389f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  Expression m_arg2;
399f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
409f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  /**
419f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * Return the third argument passed to the function (at index 2).
429f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   *
439f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @return An expression that represents the third argument passed to the
449f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   *         function.
459f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   */
469f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  public Expression getArg2()
479f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  {
489f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    return m_arg2;
499f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  }
509f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
519f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  /**
529f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * This function is used to fixup variables from QNames to stack frame
539f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * indexes at stylesheet build time.
549f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @param vars List of QNames that correspond to variables.  This list
559f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * should be searched backwards for the first qualified name that
569f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * corresponds to the variable reference qname.  The position of the
579f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * QName in the vector from the start of the vector will be its position
589f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * in the stack frame (but variables above the globalsTop value will need
599f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * to be offset to the current stack frame).
609f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   */
619f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  public void fixupVariables(java.util.Vector vars, int globalsSize)
629f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  {
639f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    super.fixupVariables(vars, globalsSize);
649f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    if(null != m_arg2)
659f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      m_arg2.fixupVariables(vars, globalsSize);
669f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  }
679f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
689f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  /**
699f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * Set an argument expression for a function.  This method is called by the
709f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * XPath compiler.
719f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   *
729f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @param arg non-null expression that represents the argument.
739f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @param argNum The argument number index.
749f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   *
759f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @throws WrongNumberArgsException If the argNum parameter is greater than 2.
769f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   */
779f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  public void setArg(Expression arg, int argNum)
789f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson          throws WrongNumberArgsException
799f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  {
809f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
819f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    if (argNum < 2)
829f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      super.setArg(arg, argNum);
839f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    else if (2 == argNum)
849f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    {
859f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      m_arg2 = arg;
869f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      arg.exprSetParent(this);
879f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    }
889f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    else
899f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson		  reportWrongNumberArgs();
909f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  }
919f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
929f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  /**
939f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * Check that the number of arguments passed to this function is correct.
949f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   *
959f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   *
969f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @param argNum The number of arguments that is being passed to the function.
979f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   *
989f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @throws WrongNumberArgsException
999f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   */
1009f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  public void checkNumberArgs(int argNum) throws WrongNumberArgsException
1019f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  {
1029f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    if (argNum != 3)
1039f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      reportWrongNumberArgs();
1049f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  }
1059f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
1069f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  /**
1079f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * Constructs and throws a WrongNumberArgException with the appropriate
1089f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * message for this function object.
1099f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   *
1109f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @throws WrongNumberArgsException
1119f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   */
1129f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  protected void reportWrongNumberArgs() throws WrongNumberArgsException {
1139f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      throw new WrongNumberArgsException(XSLMessages.createXPATHMessage("three", null));
1149f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  }
1159f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
1169f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  /**
1179f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * Tell if this expression or it's subexpressions can traverse outside
1189f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * the current subtree.
1199f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   *
1209f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @return true if traversal outside the context node's subtree can occur.
1219f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   */
1229f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   public boolean canTraverseOutsideSubtree()
1239f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   {
1249f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    return super.canTraverseOutsideSubtree()
1259f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    ? true : m_arg2.canTraverseOutsideSubtree();
1269f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   }
1279f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
1289f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  class Arg2Owner implements ExpressionOwner
1299f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  {
1309f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    /**
1319f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson     * @see ExpressionOwner#getExpression()
1329f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson     */
1339f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    public Expression getExpression()
1349f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    {
1359f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson      return m_arg2;
1369f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    }
1379f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
1389f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
1399f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    /**
1409f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson     * @see ExpressionOwner#setExpression(Expression)
1419f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson     */
1429f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    public void setExpression(Expression exp)
1439f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    {
1449f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    	exp.exprSetParent(Function3Args.this);
1459f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    	m_arg2 = exp;
1469f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson    }
1479f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  }
1489f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
1499f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
1509f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  /**
1519f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @see org.apache.xpath.XPathVisitable#callVisitors(ExpressionOwner, XPathVisitor)
1529f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   */
1539f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  public void callArgVisitors(XPathVisitor visitor)
1549f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  {
1559f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  	super.callArgVisitors(visitor);
1569f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  	if(null != m_arg2)
1579f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  		m_arg2.callVisitors(new Arg2Owner(), visitor);
1589f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  }
1599f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
1609f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  /**
1619f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   * @see Expression#deepEquals(Expression)
1629f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson   */
1639f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  public boolean deepEquals(Expression expr)
1649f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  {
1659f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  	if(!super.deepEquals(expr))
1669f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  		return false;
1679f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
1689f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  	if(null != m_arg2)
1699f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  	{
1709f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  		if(null == ((Function3Args)expr).m_arg2)
1719f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  			return false;
1729f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
1739f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  		if(!m_arg2.deepEquals(((Function3Args)expr).m_arg2))
1749f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  			return false;
1759f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  	}
1769f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  	else if (null != ((Function3Args)expr).m_arg2)
1779f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  		return false;
1789f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
1799f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  	return true;
1809f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson  }
1819f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
1829f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson
1839f8118474e9513f7a5b7d2a05e4a0fb15d1a6569Jesse Wilson}
184