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

📄 vtidefermodpolicy.java

📁 derby database source code.good for you.
💻 JAVA
字号:
/*   Derby - Class org.apache.derby.impl.sql.compile.VTIDeferModPolicy   Copyright 2003, 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.error.StandardException;import org.apache.derby.iapi.sql.dictionary.TableDescriptor;import org.apache.derby.iapi.sql.compile.Visitor;import org.apache.derby.iapi.sql.compile.Visitable;import org.apache.derby.vti.DeferModification;import java.util.Enumeration;import java.util.Hashtable;import java.sql.ResultSet;import java.sql.SQLException;/** * This class applies a VTI modification deferral policy to a statement to * see whether it should be deferred. */class VTIDeferModPolicy implements Visitor{    /**     * See if a VTI modification statement should be deferred.     *     * @param statementType DeferModification.INSERT_STATEMENT, UPDATE_STATEMENT, or DELETE_STATEMENT     * @param targetVTI The target VTI     * @param updateColumnNames The list of columns being updated, null if this is not an update statement     * @param source     */    public static boolean deferIt( int statementType,                                   FromVTI targetVTI,                                   String[] updateColumnNames,                                   QueryTreeNode source)        throws StandardException    {        try        {            DeferModification deferralControl;            int resultSetType = targetVTI.getResultSetType( );            /* Deferred updates and deletes are implemented by scrolling the result set. So, if             * the statement is an update or delete but the result set is not scrollable then do             * not attempt to defer the statement.             */            if( (statementType == DeferModification.UPDATE_STATEMENT ||statementType == DeferModification.DELETE_STATEMENT)                && resultSetType == ResultSet.TYPE_FORWARD_ONLY)                return false;            deferralControl = targetVTI.getDeferralControl();            if( deferralControl == null)            {                String VTIClassName = targetVTI.getNewInvocation().getJavaClassName();                deferralControl = new DefaultVTIModDeferPolicy( VTIClassName,                                                                ResultSet.TYPE_SCROLL_SENSITIVE == resultSetType);            }            if( deferralControl.alwaysDefer( statementType))                return true;            if( source == null && statementType != DeferModification.UPDATE_STATEMENT)                return false;            VTIDeferModPolicy deferralSearch = new VTIDeferModPolicy( targetVTI,                                                                      updateColumnNames,                                                                      deferralControl,                                                                      statementType);            if( source != null)                source.accept( deferralSearch);            if( statementType == DeferModification.UPDATE_STATEMENT)            {                // Apply the columnRequiresDefer method to updated columns not in the where clause.                Enumeration columns = deferralSearch.columns.keys();                while( columns.hasMoreElements())                {                    if( deferralControl.columnRequiresDefer( statementType,                                                             (String) columns.nextElement(),                                                             false))                        return true;                }            }            return deferralSearch.deferred;        }        catch( SQLException sqle)        {            throw StandardException.unexpectedUserException(sqle);        }    } // end of deferIt    // state needed to search the statement parse tree for nodes that require deferred modification    private boolean deferred = false;    private DeferModification deferralControl;    private int statementType;    private int tableNumber;    private Hashtable columns = new Hashtable();    private VTIDeferModPolicy( FromVTI targetVTI,                               String[] columnNames,                               DeferModification deferralControl,                               int statementType)    {        this.deferralControl = deferralControl;        this.statementType = statementType;        tableNumber = targetVTI.getTableNumber();        if( statementType == DeferModification.UPDATE_STATEMENT && columnNames != null)        {            for( int i = 0; i < columnNames.length; i++)                columns.put( columnNames[i], columnNames[i]);        }    }    public Visitable visit(Visitable node)        throws StandardException    {        try        {            if( node instanceof ColumnReference && statementType != DeferModification.INSERT_STATEMENT)            {                ColumnReference cr = (ColumnReference) node;                if( cr.getTableNumber() == tableNumber)                {                    String columnName = cr.getColumnName();                    if( statementType == DeferModification.DELETE_STATEMENT)                    {                        if( columns.get( columnName) == null)                        {                            columns.put( columnName, columnName);                            if( deferralControl.columnRequiresDefer( statementType, columnName, true))                                deferred = true;                        }                    }                    else if( statementType == DeferModification.UPDATE_STATEMENT)                    {                        if( columns.get( columnName) != null)                        {                            // This column is referenced in the where clause and is being updated                            if( deferralControl.columnRequiresDefer( statementType, columnName, true))                                deferred = true;                            columns.remove( columnName); // Only test it once.                        }                    }                }            }            else if( node instanceof SelectNode)            {                SelectNode subSelect = (SelectNode) node;                FromList fromList = subSelect.getFromList();                for( int i = 0; i < fromList.size(); i++)                {                    FromTable fromTable = (FromTable) fromList.elementAt(i);                    if( fromTable instanceof FromBaseTable)                    {                        TableDescriptor td = fromTable.getTableDescriptor();                        if( deferralControl.subselectRequiresDefer( statementType,                                                                    td.getSchemaName(),                                                                    td.getName()))                            deferred = true;                    }                    else if( fromTable instanceof FromVTI)                    {                        FromVTI fromVTI = (FromVTI) fromTable;                        if( deferralControl.subselectRequiresDefer( statementType,                                                                    fromVTI.getNewInvocation().getJavaClassName()))                            deferred = true;                    }                }            }        }        catch( SQLException sqle)        {            throw StandardException.unexpectedUserException(sqle);        }        return node;    } // end of visit        public boolean stopTraversal()    {        return deferred;    } // end of stopTraversal        public boolean skipChildren(Visitable node)    {        return false;    } // end of skipChildren} // end of class VTIDeferModPolicy

⌨️ 快捷键说明

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