📄 directallocactions.java
字号:
/* Derby - Class org.apache.derby.impl.store.raw.data.DirectAllocActions 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.store.raw.data;import org.apache.derby.impl.store.raw.data.AllocationActions;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.store.raw.Loggable;import org.apache.derby.iapi.store.raw.xact.RawTransaction;import org.apache.derby.iapi.store.raw.log.LogInstant;import org.apache.derby.iapi.error.StandardException;public class DirectAllocActions implements AllocationActions { public DirectAllocActions() { } /** Set the allocation status of pageNumber to doStatus. To undo this operation, set the allocation status of pageNumber to undoStatus @param t The transaction @param allocPage the allocation page @param pageNumber the page to allocation or deallocation @param doStatus set the allocation status of the page this value @param undoStatus on undo, set the allocation status of the page this value @exception StandardException Standard Cloudscape error policy */ public void actionAllocatePage(RawTransaction t, BasePage allocPage, long pageNumber, int doStatus, int undoStatus) throws StandardException { ((AllocPage)allocPage).setPageStatus((LogInstant)null, pageNumber, doStatus); } /** Chain one allocation page to the next. @param t The transaction @param allocPage the allocation page whose next page chain needs to be changed @param pageNumber the next allocation page's number @param pageOffset the next allocation page's page offset @exception StandardException Standard Cloudscape error policy */ public void actionChainAllocPage(RawTransaction t, BasePage allocPage, long pageNumber, long pageOffset) throws StandardException { ((AllocPage)allocPage).chainNextAllocPage((LogInstant)null, pageNumber, pageOffset); } /** * Compress free pages. * <p> * Compress the free pages at the end of the range maintained by * this allocation page. All pages being compressed should be FREE. * Only pages in the last allocation page can be compressed. * <p> * * @param t The transaction * @param allocPage the allocation page to do compress on. * @param new_highest_page The new highest page on this allocation * page. The number is the offset of the page * in the array of pages maintained by this * allocation page, for instance a value of 0 * indicates all page except the first one are * to be truncated. If all pages are * truncated then the offset is set to -1. * @param num_pages_truncated The number of allocated pages in this * allocation page prior to the truncate. * Note that all pages from NewHighestPage+1 * through newHighestPage+num_pages_truncated * should be FREE. * * @exception StandardException Standard exception policy. **/ public void actionCompressSpaceOperation( RawTransaction t, BasePage allocPage, int new_highest_page, int num_pages_truncated) throws StandardException { ((AllocPage)allocPage).compressSpace( (LogInstant)null, new_highest_page, num_pages_truncated); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -