⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 isnode.java

📁 derby database source code.good for you.
💻 JAVA
字号:
/*   Derby - Class org.apache.derby.impl.sql.compile.IsNode   Copyright 1998, 2004 The Apache Software Foundation or its licensors, as applicable.   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.apache.derby.impl.sql.compile;import org.apache.derby.iapi.sql.dictionary.DataDictionary;import org.apache.derby.iapi.services.sanity.SanityManager;import org.apache.derby.iapi.error.StandardException;import org.apache.derby.iapi.sql.compile.NodeFactory;import org.apache.derby.iapi.types.BooleanDataValue;import org.apache.derby.iapi.services.compiler.MethodBuilder;import org.apache.derby.impl.sql.compile.ExpressionClassBuilder;import org.apache.derby.impl.sql.compile.ActivationClassBuilder;import org.apache.derby.iapi.reference.ClassName;import org.apache.derby.iapi.services.classfile.VMOpcode;import java.lang.reflect.Modifier;import java.util.Vector;public class IsNode extends BinaryLogicalOperatorNode{	boolean		notMe;	// set to true if we're to negate the sense of this node	/**	 * Initializer for an IsNode	 *	 * @param leftOperand	The left operand of the IS	 * @param rightOperand	The right operand of the IS	 * @param notMe			Whether to reverse the sense of this node.	 */	public void init(							Object leftOperand,							Object rightOperand,							Object notMe )	{		super.init(leftOperand, rightOperand, Boolean.FALSE, "is" );		this.notMe = ((Boolean) notMe).booleanValue();	}	/**	 * Bind this logical operator.  All that has to be done for binding	 * a logical operator is to bind the operands, check that both operands	 * are BooleanDataValue, and set the result type to BooleanDataValue.	 *	 * @param fromList			The query's FROM list	 * @param subqueryList		The subquery list being built as we find SubqueryNodes	 * @param aggregateVector	The aggregate vector being built as we find AggregateNodes	 *	 * @return	The new top of the expression tree.	 *	 * @exception StandardException		Thrown on error	 */	public ValueNode bindExpression(		FromList fromList, SubqueryList subqueryList,		Vector aggregateVector)			throws StandardException	{		super.bindExpression(fromList, subqueryList, aggregateVector);		leftOperand.checkIsBoolean();		rightOperand.checkIsBoolean();		setType(leftOperand.getTypeServices());		return this;	}		/**	 * Eliminate NotNodes in the current query block. We just mark whether	 * this IS node is under an eliminated NOT node.	 *	 * @param	underNotNode	Whether or not we are under a NotNode.	 *								 *	 * @return		The modified expression	 *	 * @exception StandardException		Thrown on error	 */	ValueNode eliminateNots(boolean underNotNode) 					throws StandardException	{		if ( underNotNode ) { notMe = !notMe; }		leftOperand = leftOperand.eliminateNots( false);		rightOperand = rightOperand.eliminateNots( false );		return this;	}	/**	 * Do the 1st step in putting child expressions into conjunctive normal	 * form.  This step ensures that the top level of the child expression is	 * a chain of AndNodes terminated by a true BooleanConstantNode.	 *	 * @return		The modified expression	 *	 * @exception StandardException		Thrown on error	 */	public ValueNode putAndsOnTop() 					throws StandardException	{		leftOperand = leftOperand.putAndsOnTop();		rightOperand = rightOperand.putAndsOnTop();		return this;	}	/**	 * Verify that putAndsOnTop() did its job correctly.  Verify that the top level 	 * of the expression is a chain of AndNodes terminated by a true BooleanConstantNode.	 *	 * @return		Boolean which reflects validity of the tree.	 */	public boolean verifyPutAndsOnTop()	{		return ( leftOperand.verifyPutAndsOnTop() && rightOperand.verifyPutAndsOnTop() );	}	/**	 * Finish putting an expression into conjunctive normal	 * form.  An expression tree in conjunctive normal form meets	 * the following criteria:	 *		o  If the expression tree is not null,	 *		   the top level will be a chain of AndNodes terminating	 *		   in a true BooleanConstantNode.	 *		o  The left child of an AndNode will never be an AndNode.	 *		o  Any right-linked chain that includes an AndNode will	 *		   be entirely composed of AndNodes terminated by a true BooleanConstantNode.	 *		o  The left child of an OrNode will never be an OrNode.	 *		o  Any right-linked chain that includes an OrNode will	 *		   be entirely composed of OrNodes terminated by a false BooleanConstantNode.	 *		o  ValueNodes other than AndNodes and OrNodes are considered	 *		   leaf nodes for purposes of expression normalization.	 *		   In other words, we won't do any normalization under	 *		   those nodes.	 *	 * In addition, we track whether or not we are under a top level AndNode.  	 * SubqueryNodes need to know this for subquery flattening.	 *	 * @param	underTopAndNode		Whether or not we are under a top level AndNode.	 *								 *	 * @return		The modified expression	 *	 * @exception StandardException		Thrown on error	 */	public ValueNode changeToCNF(boolean underTopAndNode) 					throws StandardException	{		leftOperand = leftOperand.changeToCNF(false );		rightOperand = rightOperand.changeToCNF(false );		return this;	}	/**	 * Verify that changeToCNF() did its job correctly.  Verify that:	 *		o  AndNode  - rightOperand is not instanceof OrNode	 *				      leftOperand is not instanceof AndNode	 *		o  OrNode	- rightOperand is not instanceof AndNode	 *					  leftOperand is not instanceof OrNode	 *	 * @return		Boolean which reflects validity of the tree.	 */	public boolean verifyChangeToCNF()	{		return	( leftOperand.verifyChangeToCNF() && rightOperand.verifyChangeToCNF() );	}	/**	 * Do code generation for this logical binary operator.	 *	 * @param acb	The ExpressionClassBuilder for the class we're generating	 * @param mb the method  the expression will go into	 *	 * @return	An Expression to evaluate this logical binary operator	 *	 * @exception StandardException		Thrown on error	 */	public void generateExpression(ExpressionClassBuilder acb,											MethodBuilder mb)		throws StandardException	{		String				evaluatorMethodName;		/*		** Generate the return value. Generated code is:		**		**	<fieldLeft>.<evaluatorMethodName>(<fieldRight>)		*/		if ( notMe ) { evaluatorMethodName = "isNot"; }		else { evaluatorMethodName = "is"; }		leftOperand.generateExpression(acb, mb);		rightOperand.generateExpression(acb, mb);		mb.callMethod(VMOpcode.INVOKEINTERFACE, ClassName.BooleanDataValue, evaluatorMethodName,							ClassName.BooleanDataValue, 1);	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -