📄 invalidatepageoperation.java
字号:
/* Derby - Class org.apache.derby.impl.store.raw.data.InvalidatePageOperation Copyright 1997, 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.store.raw.data;import org.apache.derby.impl.store.raw.data.BasePage;import org.apache.derby.iapi.services.sanity.SanityManager;import org.apache.derby.iapi.services.io.FormatIdUtil;import org.apache.derby.iapi.services.io.StoredFormatIds;import org.apache.derby.iapi.error.StandardException;import org.apache.derby.iapi.store.raw.Page;import org.apache.derby.iapi.store.raw.Transaction;import org.apache.derby.iapi.store.raw.log.LogInstant;import java.io.OutputStream;import java.io.ObjectOutput;import java.io.ObjectInput;import java.io.IOException;import org.apache.derby.iapi.services.io.LimitObjectInput;/** Represents invalidating a page due to deallocation. This operation invalidates the page that is being deallocated, as opposed to deallocatePage that happens on the alloc page. <PRE> @format_id LOGOP_INVALIDATE_PAGE the formatId is written by FormatIdOutputStream when this object is written out by writeObject @purpose invalidate a page @upgrade @disk_layout PhysicalPageOperation the superclass OptionalData none @end_format </PRE>*/public final class InvalidatePageOperation extends PhysicalPageOperation{ public InvalidatePageOperation(BasePage page) { super(page); } /* * Formatable methods */ // no-arg constructor, required by Formatable public InvalidatePageOperation() { super(); } /* * If this page can be reused in the same transaction (of if committed * transaction needs to be undone, then we need the before image of the * page. Right now, the transaction that deallocate a page must commit * before the page can be freed and reused, so we don't need to log the * before image of the page */ public void writeExternal(ObjectOutput out) throws IOException { // RESOLVE: may need to write out the page BI, see comment above super.writeExternal(out); } /** Read this in @exception IOException error reading from log stream @exception ClassNotFoundException log stream corrupted */ public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { super.readExternal(in); } /** Return my format identifier. */ public int getTypeFormatId() { return StoredFormatIds.LOGOP_INVALIDATE_PAGE; } /* * Loggable methods */ /** Mark the page as being invalidated @exception IOException Can be thrown by any of the methods of ObjectInput. @exception StandardException Standard Cloudscape policy. @see org.apache.derby.iapi.store.raw.Loggable#doMe */ public void doMe(Transaction xact, LogInstant instant, LimitObjectInput in) throws StandardException, IOException { this.page.setPageStatus(instant, BasePage.INVALID_PAGE); } /* * PhysicalPageOperation */ /** Mark the page as being valid @exception StandardException Thrown by methods I call @exception IOException Thrown by methods I call @see PhysicalPageOperation#undoMe */ public void undoMe(Transaction xact, BasePage undoPage, LogInstant CLRInstant, LimitObjectInput in) throws StandardException, IOException { undoPage.setPageStatus(CLRInstant, BasePage.VALID_PAGE); } /* * PageBasicOperation */ /** * restore the before image of the page * * @exception StandardException Standard Cloudscape Error Policy * @exception IOException problem reading the complete log record from the * input stream */ public void restoreMe(Transaction xact, BasePage undoPage, LogInstant CLRInstant, LimitObjectInput in) throws StandardException, IOException { undoMe(xact, undoPage, CLRInstant, in); } public String toString() { if (SanityManager.DEBUG) return super.toString() + "Invalidate Page - it has been deallocated"; else return null; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -