📄 fmfileimpl.java
字号:
/*
* File : FMFileImpl.java
* Created : 12-Feb-2004
* By : parg
*
* Azureus - a Java Bittorrent client
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details ( see the LICENSE file ).
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package com.aelitis.azureus.core.diskmanager.file.impl;
/**
* @author parg
*
*/
import java.util.*;
import java.io.File;
import java.io.IOException;
import java.io.RandomAccessFile;
import org.gudy.azureus2.core3.config.COConfigurationManager;
import org.gudy.azureus2.core3.torrent.TOTorrentFile;
import org.gudy.azureus2.core3.util.*;
import com.aelitis.azureus.core.diskmanager.file.*;
public abstract class
FMFileImpl
implements FMFile
{
protected static final String READ_ACCESS_MODE = "r";
protected static final String WRITE_ACCESS_MODE = "rwd";
private static Map file_map = new HashMap();
private static AEMonitor file_map_mon = new AEMonitor( "FMFile:map");
static{
AEDiagnostics.addEvidenceGenerator(
new AEDiagnosticsEvidenceGenerator()
{
public void
generate(
IndentWriter writer )
{
generateEvidence( writer );
}
});
}
private FMFileManagerImpl manager;
private FMFileOwner owner;
private int access_mode = FM_READ;
private File linked_file;
private String canonical_path;
private RandomAccessFile raf;
private FMFileAccessController file_access;
private File created_dirs_leaf;
private List created_dirs;
protected AEMonitor this_mon = new AEMonitor( "FMFile" );
protected
FMFileImpl(
FMFileOwner _owner,
FMFileManagerImpl _manager,
File _file,
int _type )
throws FMFileManagerException
{
owner = _owner;
manager = _manager;
linked_file = manager.getFileLink( owner.getTorrentFile().getTorrent(), _file );
boolean file_was_created = false;
boolean file_reserved = false;
boolean ok = false;
try{
try {
canonical_path = linked_file.getCanonicalPath();
}catch( IOException ioe ) {
String msg = ioe.getMessage();
if( msg != null && msg.indexOf( "There are no more files" ) != -1 ) {
String abs_path = linked_file.getAbsolutePath();
String error = "Caught 'There are no more files' exception during file.getCanonicalPath(). " +
"os=[" +Constants.OSName+ "], file.getPath()=[" +linked_file.getPath()+ "], file.getAbsolutePath()=[" +abs_path+ "]. ";
Debug.out( error, ioe );
}
throw ioe;
}
createDirs( linked_file );
reserveFile();
file_reserved = true;
file_access = new FMFileAccessController( this, _type );
ok = true;
}catch( Throwable e ){
if ( file_was_created ){
linked_file.delete();
}
deleteDirs();
if ( e instanceof FMFileManagerException ){
throw((FMFileManagerException)e);
}
throw( new FMFileManagerException( "initialisation failed", e ));
}finally{
if ( file_reserved && !ok ){
releaseFile();
}
}
}
protected FMFileManagerImpl
getManager()
{
return( manager );
}
public String
getName()
{
return( linked_file.toString());
}
public boolean
exists()
{
return( linked_file.exists());
}
public FMFileOwner
getOwner()
{
return( owner );
}
public void
setStorageType(
int new_type )
throws FMFileManagerException
{
try{
this_mon.enter();
boolean was_open = isOpen();
if ( was_open ){
closeSupport( false );
}
try{
file_access.setStorageType( new_type );
}finally{
if ( was_open ){
openSupport( "Re-open after storage type change" );
}
}
}finally{
this_mon.exit();
}
}
public int
getStorageType()
{
return( file_access.getStorageType());
}
public int
getAccessMode()
{
return( access_mode );
}
protected void
setAccessModeSupport(
int mode )
{
access_mode = mode;
}
protected File
getLinkedFile()
{
return( linked_file );
}
public void
moveFile(
File new_unlinked_file )
throws FMFileManagerException
{
try{
this_mon.enter();
String new_canonical_path;
File new_linked_file = manager.getFileLink( owner.getTorrentFile().getTorrent(), new_unlinked_file );
try{
try {
new_canonical_path = new_linked_file.getCanonicalPath();
}catch( IOException ioe ) {
String msg = ioe.getMessage();
if( msg != null && msg.indexOf( "There are no more files" ) != -1 ) {
String abs_path = new_linked_file.getAbsolutePath();
String error = "Caught 'There are no more files' exception during new_file.getCanonicalPath(). " +
"os=[" +Constants.OSName+ "], new_file.getPath()=[" +new_linked_file.getPath()+ "], new_file.getAbsolutePath()=[" +abs_path+ "]. ";
//"new_canonical_path temporarily set to [" +abs_path+ "]";
Debug.out( error, ioe );
}
throw ioe;
}
}catch( Throwable e ){
throw( new FMFileManagerException( "getCanonicalPath fails", e ));
}
if ( new_linked_file.exists()){
throw( new FMFileManagerException( "moveFile fails - file '" + new_canonical_path + "' already exists"));
}
boolean was_open = isOpen();
close(); // full close, this will release any slots in the limited file case
createDirs( new_linked_file );
if ( FileUtil.renameFile( linked_file, new_linked_file )) {
linked_file = new_linked_file;
canonical_path = new_canonical_path;
reserveFile();
if ( was_open ){
ensureOpen( "moveFile target" ); // ensure open will regain slots in limited file case
}
}else{
try{
reserveFile();
}catch( FMFileManagerException e ){
Debug.printStackTrace( e );
}
if ( was_open ){
try{
ensureOpen( "moveFile recovery" );
}catch( FMFileManagerException e){
Debug.printStackTrace( e );
}
}
throw( new FMFileManagerException( "moveFile fails"));
}
}finally{
this_mon.exit();
}
}
public void
ensureOpen(
String reason )
throws FMFileManagerException
{
try{
this_mon.enter();
if ( isOpen()){
return;
}
openSupport( reason );
}finally{
this_mon.exit();
}
}
protected long
getLengthSupport()
throws FMFileManagerException
{
return( file_access.getLength( raf ));
}
protected void
setLengthSupport(
long length )
throws FMFileManagerException
{
file_access.setLength( raf, length );
}
protected void
openSupport(
String reason )
throws FMFileManagerException
{
if ( raf != null ){
throw( new FMFileManagerException( "file already open" ));
}
reserveAccess( reason );
try{
raf = new RandomAccessFile( linked_file, access_mode==FM_READ?READ_ACCESS_MODE:WRITE_ACCESS_MODE);
}catch( Throwable e ){
Debug.printStackTrace( e );
throw( new FMFileManagerException( "open fails", e ));
}
}
protected void
closeSupport(
boolean explicit )
throws FMFileManagerException
{
FMFileManagerException flush_exception = null;
try{
flush();
}catch( FMFileManagerException e ){
flush_exception = e;
}
if ( raf == null ){
// may have previously been implicitly closed, tidy up if required
if ( explicit ){
releaseFile();
deleteDirs();
}
}else{
try{
raf.close();
}catch( Throwable e ){
throw( new FMFileManagerException("close fails", e ));
}finally{
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -