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

📄 tablenameinfo.java

📁 derby database source code.good for you.
💻 JAVA
字号:
/*   Derby - Class org.apache.derby.impl.services.locks.TableNameInfo   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.services.locks;import org.apache.derby.iapi.services.sanity.SanityManager;import org.apache.derby.iapi.error.StandardException;import org.apache.derby.iapi.sql.conn.LanguageConnectionContext;import org.apache.derby.iapi.sql.dictionary.DataDictionary;import org.apache.derby.iapi.sql.dictionary.ConglomerateDescriptor;import org.apache.derby.iapi.sql.dictionary.TableDescriptor;import org.apache.derby.iapi.store.access.TransactionController;import java.util.Hashtable;public class TableNameInfo {	// things to look up table name etc	private DataDictionary dd;	private Hashtable ddCache;			// conglomId -> conglomerateDescriptor	private Hashtable tdCache;			// tableID UUID -> table descriptor	private Hashtable tableCache;		// conglomId -> table descriptor	private Hashtable indexCache;		// conglomId -> indexname	public TableNameInfo(LanguageConnectionContext lcc, boolean andIndex)		throws StandardException {		tableCache = new Hashtable(31);		if (andIndex)			indexCache = new Hashtable(13);		TransactionController tc = lcc.getTransactionExecute();		dd = lcc.getDataDictionary();		ddCache = dd.hashAllConglomerateDescriptorsByNumber(tc);		tdCache = dd.hashAllTableDescriptorsByTableId(tc);	}	public String getTableName(Long conglomId) {		if (conglomId == null)			return "?";		// see if we have already seen this conglomerate		TableDescriptor td = (TableDescriptor) tableCache.get(conglomId);		if (td == null)		{			// first time we see this conglomerate, get it from the			// ddCache 			ConglomerateDescriptor cd =				(ConglomerateDescriptor)ddCache.get(conglomId);            if (cd != null)            {                // conglomerateDescriptor is not null, this table is known                // to the data dictionary                td = (TableDescriptor) tdCache.get(cd.getTableID());            }			if ((cd == null) || (td == null))			{				String name;				// this table is not know to the data dictionary.  This				// can be caused by one of two reasons:  				// 1. the table has just been dropped				// 2. the table is an internal one that lives below				// 		the data dictionary				if (conglomId.longValue() > 20)				{					// table probably dropped!  					name = "*** TRANSIENT_" + conglomId;				}				else				{					// I am hoping here that we won't create more than					// 20 tables before starting the data dictionary!					// one of the internal tables -- HACK!!					switch (conglomId.intValue())					{					case 0: 						name = "*** INVALID CONGLOMERATE ***";						break;					case 1: 						name = "ConglomerateDirectory";						break;					case 2: 						name = "PropertyConglomerate";						break;					default:						name = "*** INTERNAL TABLE " + conglomId;						break;					}				}				return name;			}            tableCache.put(conglomId, td);			if ((indexCache != null) && cd.isIndex())				indexCache.put(conglomId, cd.getConglomerateName());		}		return td.getName();	}	public String getTableType(Long conglomId) {		if (conglomId == null)			return "?";		String type;		TableDescriptor td = (TableDescriptor) tableCache.get(conglomId);		if (td != null)		{			switch(td.getTableType())			{			case TableDescriptor.BASE_TABLE_TYPE:				type = "T";				break;			case TableDescriptor.SYSTEM_TABLE_TYPE:				type = "S";				break;			default: 				if (SanityManager.DEBUG)					SanityManager.THROWASSERT("Illegal table type " +						  td.getName() + " " + td.getTableType());				type = "?";				break;			}		} else if (conglomId.longValue() > 20)		{			type = "T";		} else {			type = "S";		}		return type;	}	public String getIndexName(Long conglomId) {		if (conglomId == null)			return "?";		return (String) indexCache.get(conglomId);	}}

⌨️ 快捷键说明

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