📄 removefileoperation.java
字号:
/* Derby - Class org.apache.derby.impl.store.raw.data.RemoveFileOperation 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.store.raw.data;import org.apache.derby.iapi.store.raw.Loggable;import org.apache.derby.iapi.store.raw.Undoable;import org.apache.derby.iapi.store.raw.Transaction;import org.apache.derby.iapi.store.raw.Compensation;import org.apache.derby.iapi.services.io.FormatIdUtil;import org.apache.derby.iapi.services.io.StoredFormatIds;import org.apache.derby.iapi.store.raw.xact.RawTransaction;import org.apache.derby.iapi.error.StandardException;import org.apache.derby.iapi.services.sanity.SanityManager;import org.apache.derby.iapi.store.access.FileResource;import org.apache.derby.iapi.store.raw.log.LogInstant;import org.apache.derby.io.StorageFile;import org.apache.derby.iapi.util.ByteArray;import java.io.ObjectInput;import java.io.ObjectOutput;import java.io.IOException;import java.io.InputStream;import org.apache.derby.iapi.services.io.LimitObjectInput;/** */public class RemoveFileOperation implements Undoable{ private String name; private long generationId; private boolean removeAtOnce; transient private StorageFile fileToGo; // no-arg constructor, required by Formatable public RemoveFileOperation() { } RemoveFileOperation(String name, long generationId, boolean removeAtOnce) { this.name = name; this.generationId = generationId; this.removeAtOnce = removeAtOnce; } /* * Formatable methods */ public void writeExternal(ObjectOutput out) throws IOException { out.writeUTF(name); out.writeLong(generationId); out.writeBoolean(removeAtOnce); } public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { name = in.readUTF(); generationId = in.readLong(); removeAtOnce = in.readBoolean(); } /** Return my format identifier. */ public int getTypeFormatId() { return StoredFormatIds.LOGOP_REMOVE_FILE; } /** Loggable methods */ /** the default for prepared log is always null for all the operations that don't have optionalData. If an operation has optional data, the operation need to prepare the optional data for this method. Space Operation has no optional data to write out */ public ByteArray getPreparedLog() { return null; } public void releaseResource(Transaction tran) { } /** A space operation is a RAWSTORE log record */ public int group() { return Loggable.FILE_RESOURCE | Loggable.RAWSTORE ; } public void doMe(Transaction xact, LogInstant instant, LimitObjectInput in) throws StandardException { if (fileToGo == null) return; BaseDataFileFactory bdff = (BaseDataFileFactory) ((RawTransaction) xact).getDataFactory(); bdff.fileToRemove(fileToGo, true); } /** @exception StandardException Standard Cloudscape error policy */ public boolean needsRedo(Transaction xact) throws StandardException { if (!removeAtOnce) return false; FileResource fr = ((RawTransaction) xact).getDataFactory().getFileHandler(); fileToGo = fr.getAsFile(name, generationId); if (fileToGo == null) return false; return fileToGo.exists(); } public Compensation generateUndo(Transaction xact, LimitObjectInput in) throws StandardException, IOException { if (fileToGo != null) { BaseDataFileFactory bdff = (BaseDataFileFactory) ((RawTransaction) xact).getDataFactory(); bdff.fileToRemove(fileToGo, false); } return null; }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -