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

📄 createaliasnode.java

📁 derby database source code.good for you.
💻 JAVA
字号:
/*   Derby - Class org.apache.derby.impl.sql.compile.CreateAliasNode   Copyright 1999, 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.services.loader.ClassInspector;import org.apache.derby.iapi.services.context.ContextManager;import org.apache.derby.iapi.sql.compile.CompilerContext;import org.apache.derby.iapi.sql.compile.C_NodeTypes;import org.apache.derby.iapi.reference.SQLState;import org.apache.derby.iapi.reference.Limits;import org.apache.derby.iapi.sql.ResultSet;import org.apache.derby.iapi.sql.execute.ConstantAction;import org.apache.derby.iapi.types.TypeId;import org.apache.derby.iapi.sql.dictionary.DataDictionary;import org.apache.derby.iapi.sql.dictionary.TableDescriptor;import org.apache.derby.iapi.sql.dictionary.SchemaDescriptor;import org.apache.derby.iapi.error.StandardException;import org.apache.derby.iapi.services.monitor.Monitor;import org.apache.derby.iapi.services.sanity.SanityManager;import org.apache.derby.impl.sql.compile.ActivationClassBuilder;import org.apache.derby.impl.sql.execute.BaseActivation;import org.apache.derby.catalog.AliasInfo;import org.apache.derby.catalog.TypeDescriptor;import org.apache.derby.catalog.types.RoutineAliasInfo;import org.apache.derby.catalog.types.SynonymAliasInfo;import java.lang.reflect.Member;import java.util.Vector;/** * A CreateAliasNode represents a CREATE ALIAS statement. * * @author Jerry Brenner */public class CreateAliasNode extends CreateStatementNode{	private String				javaClassName;	private String				methodName;	private char				aliasType; 	private boolean				delimitedIdentifier;	private AliasInfo aliasInfo;	/**	 * Initializer for a CreateAliasNode	 *	 * @param aliasName				The name of the alias	 * @param targetObject			Target name	 * @param methodName		    The method name	 * @param aliasType				The alias type	 * @param delimitedIdentifier	Whether or not to treat the class name	 *								as a delimited identifier if trying to	 *								resolve it as a class alias	 *	 * @exception StandardException		Thrown on error	 */	public void init(						Object aliasName,						Object targetObject,						Object methodName,						Object aliasSpecificInfo,						Object aliasType,						Object delimitedIdentifier)		throws StandardException	{				TableName qn = (TableName) aliasName;		this.aliasType = ((Character) aliasType).charValue();		initAndCheck(qn);		switch (this.aliasType)		{			case AliasInfo.ALIAS_TYPE_PROCEDURE_AS_CHAR:			case AliasInfo.ALIAS_TYPE_FUNCTION_AS_CHAR:			{				this.javaClassName = (String) targetObject;				this.methodName = (String) methodName;				this.delimitedIdentifier =								((Boolean) delimitedIdentifier).booleanValue();				//routineElements contains the description of the procedure.				// 				// 0 - Object[] 3 element array for parameters				// 1 - TableName - specific name				// 2 - Integer - dynamic result set count				// 3 - String language (always java) - ignore				// 4 - String external name (also passed directly to create alias node - ignore				// 5 - Integer parameter style 				// 6 - Short - SQL control				// 7 - Boolean - CALLED ON NULL INPUT (always TRUE for procedures)				// 8 - TypeDescriptor - return type (always NULL for procedures)				Object[] routineElements = (Object[]) aliasSpecificInfo;				Object[] parameters = (Object[]) routineElements[0];				int paramCount = ((Vector) parameters[0]).size();								// Support for Java signatures in Derby was added in 10.1				// Check to see the catalogs have been upgraded to 10.1 before				// accepting such a method name for a routine. Otherwise				// a routine that works in 10.1 soft upgrade mode would				// exist when running 10.0 but not resolve to anything.				if (this.methodName.indexOf('(') != -1)				{					getDataDictionary().checkVersion(							DataDictionary.DD_VERSION_DERBY_10_1,                            "EXTERNAL NAME 'class.method(<signature>)'");									}				String[] names = null;				TypeDescriptor[] types = null;				int[] modes = null;								if (paramCount > Limits.DB2_MAX_PARAMS_IN_STORED_PROCEDURE)					throw StandardException.newException(SQLState.LANG_TOO_MANY_PARAMETERS_FOR_STORED_PROC,							String.valueOf(Limits.DB2_MAX_PARAMS_IN_STORED_PROCEDURE), aliasName, String.valueOf(paramCount));				if (paramCount != 0) {					names = new String[paramCount];					((Vector) parameters[0]).copyInto(names);					types = new TypeDescriptor[paramCount];					((Vector) parameters[1]).copyInto(types);					modes = new int[paramCount];					for (int i = 0; i < paramCount; i++) {						modes[i] = ((Integer) (((Vector) parameters[2]).elementAt(i))).intValue();						if (TypeId.getBuiltInTypeId(types[i].getJDBCTypeId()).isLongConcatableTypeId())							throw StandardException.newException(SQLState.LANG_LONG_DATA_TYPE_NOT_ALLOWED, names[i]);					}					if (paramCount > 1) {						String[] dupNameCheck = new String[paramCount];						System.arraycopy(names, 0, dupNameCheck, 0, paramCount);						java.util.Arrays.sort(dupNameCheck);						for (int dnc = 1; dnc < dupNameCheck.length; dnc++) {							if (dupNameCheck[dnc].equals(dupNameCheck[dnc - 1]))								throw StandardException.newException(SQLState.LANG_DB2_DUPLICATE_NAMES, dupNameCheck[dnc], getFullName());						}					}				}				Integer drso = (Integer) routineElements[2];				int drs = drso == null ? 0 : drso.intValue();				short sqlAllowed;				Short sqlAllowedObject = (Short) routineElements[6];				if (sqlAllowedObject != null)					sqlAllowed = sqlAllowedObject.shortValue();				else					sqlAllowed = (this.aliasType == AliasInfo.ALIAS_TYPE_PROCEDURE_AS_CHAR ?					RoutineAliasInfo.MODIFIES_SQL_DATA : RoutineAliasInfo.READS_SQL_DATA);				Boolean calledOnNullInputO = (Boolean) routineElements[7];				boolean calledOnNullInput;				if (calledOnNullInputO == null)					calledOnNullInput = true;				else					calledOnNullInput = calledOnNullInputO.booleanValue();				aliasInfo = new RoutineAliasInfo(this.methodName, paramCount, names, types, modes, drs,						((Short) routineElements[5]).shortValue(),	// parameter style						sqlAllowed, calledOnNullInput, (TypeDescriptor) routineElements[8]);				implicitCreateSchema = true;				}				break;			case AliasInfo.ALIAS_TYPE_SYNONYM_AS_CHAR:				String targetSchema;				implicitCreateSchema = true;				TableName t = (TableName) targetObject;				if (t.getSchemaName() != null)					targetSchema = t.getSchemaName();				else targetSchema = getSchemaDescriptor().getSchemaName();				aliasInfo = new SynonymAliasInfo(targetSchema, t.getTableName());				break;			default:				if (SanityManager.DEBUG)				{					SanityManager.THROWASSERT(						"Unexpected value for aliasType (" + aliasType + ")");				}		}	}	public String statementToString()	{		switch (this.aliasType)		{		case AliasInfo.ALIAS_TYPE_PROCEDURE_AS_CHAR:			return "CREATE PROCEDURE";		case AliasInfo.ALIAS_TYPE_SYNONYM_AS_CHAR:			return "CREATE SYNONYM";		default:			return "CREATE FUNCTION";		}	}	// We inherit the generate() method from DDLStatementNode.	/**	 * Bind this CreateAliasNode.  This means doing any static error	 * checking that can be done before actually creating the table.	 * For example, verifying that the column name list does not	 * contain any duplicate column names.	 *	 * @return	The bound query tree	 *	 * @exception StandardException		Thrown on error	 */	public QueryTreeNode bind() throws StandardException	{		// Procedures and functions do not check class or method validity until		// runtime execution. Synonyms do need some validity checks.		if (aliasType != AliasInfo.ALIAS_TYPE_SYNONYM_AS_CHAR)			return this;		// Don't allow creating synonyms in SESSION schema. Causes confusion if		// a temporary table is created later with same name.		if (isSessionSchema(getSchemaDescriptor().getSchemaName()))			throw StandardException.newException(SQLState.LANG_OPERATION_NOT_ALLOWED_ON_SESSION_SCHEMA_TABLES);		String targetSchema = ((SynonymAliasInfo)aliasInfo).getSynonymSchema();		String targetTable = ((SynonymAliasInfo)aliasInfo).getSynonymTable();		if (this.getObjectName().equals(targetSchema, targetTable))			throw StandardException.newException(SQLState.LANG_SYNONYM_CIRCULAR,						this.getFullName(),						targetSchema+"."+targetTable);		SchemaDescriptor targetSD = getSchemaDescriptor(targetSchema, false);		if ((targetSD != null) && isSessionSchema(targetSD))			throw StandardException.newException(SQLState.LANG_OPERATION_NOT_ALLOWED_ON_SESSION_SCHEMA_TABLES);		return this;	}	/**	 * Create the Constant information that will drive the guts of Execution.	 *	 * @exception StandardException		Thrown on failure	 */	public ConstantAction	makeConstantAction() throws StandardException	{		String schemaName;		switch (aliasType) {		case AliasInfo.ALIAS_TYPE_PROCEDURE_AS_CHAR:		case AliasInfo.ALIAS_TYPE_FUNCTION_AS_CHAR:			schemaName = getSchemaDescriptor().getSchemaName();			break;		case AliasInfo.ALIAS_TYPE_SYNONYM_AS_CHAR:			schemaName = getSchemaDescriptor().getSchemaName();			break;		default:			schemaName = null;		}		return	getGenericConstantActionFactory().getCreateAliasConstantAction(											  getRelativeName(),											  schemaName,											  javaClassName,											  aliasInfo,											  aliasType);	}}

⌨️ 快捷键说明

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