mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-01-26 08:56:54 +00:00
Better Errors for fs API
This commit is contained in:
parent
94d701b1f7
commit
239a2f0d25
@ -94,7 +94,7 @@ public class ComboMount implements IMount
|
||||
}
|
||||
else
|
||||
{
|
||||
throw new IOException( "Not a directory" );
|
||||
throw new IOException( "Not a directory (" + path + ")" );
|
||||
}
|
||||
}
|
||||
|
||||
@ -109,7 +109,7 @@ public class ComboMount implements IMount
|
||||
return part.getSize( path );
|
||||
}
|
||||
}
|
||||
throw new IOException( "No such file" );
|
||||
throw new IOException( "No such file (" + path + ")" );
|
||||
}
|
||||
|
||||
@Nonnull
|
||||
@ -124,6 +124,6 @@ public class ComboMount implements IMount
|
||||
return part.openForRead( path );
|
||||
}
|
||||
}
|
||||
throw new IOException( "No such file" );
|
||||
throw new IOException( "No such file (" + path + ")" );
|
||||
}
|
||||
}
|
||||
|
@ -129,7 +129,7 @@ public class FileMount implements IWritableMount
|
||||
{
|
||||
if( path.length() != 0 )
|
||||
{
|
||||
throw new IOException( "Not a directory" );
|
||||
throw new IOException( "Not a directory (" + path + ")" );
|
||||
}
|
||||
}
|
||||
else
|
||||
@ -148,7 +148,7 @@ public class FileMount implements IWritableMount
|
||||
}
|
||||
else
|
||||
{
|
||||
throw new IOException( "Not a directory" );
|
||||
throw new IOException( "Not a directory (" + path + ")" );
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -178,7 +178,7 @@ public class FileMount implements IWritableMount
|
||||
}
|
||||
}
|
||||
}
|
||||
throw new IOException( "No such file" );
|
||||
throw new IOException( "No such file (" + path + ")" );
|
||||
}
|
||||
|
||||
@Nonnull
|
||||
@ -193,7 +193,7 @@ public class FileMount implements IWritableMount
|
||||
return new FileInputStream( file );
|
||||
}
|
||||
}
|
||||
throw new IOException( "No such file" );
|
||||
throw new IOException( "No such file (" + path + ")" );
|
||||
}
|
||||
|
||||
// IWritableMount implementation
|
||||
@ -207,7 +207,7 @@ public class FileMount implements IWritableMount
|
||||
{
|
||||
if( !file.isDirectory() )
|
||||
{
|
||||
throw new IOException( "File exists" );
|
||||
throw new IOException( "File exists (" + path + ")" );
|
||||
}
|
||||
}
|
||||
else
|
||||
@ -222,7 +222,7 @@ public class FileMount implements IWritableMount
|
||||
|
||||
if( getRemainingSpace() < dirsToCreate * MINIMUM_FILE_SIZE )
|
||||
{
|
||||
throw new IOException( "Out of space" );
|
||||
throw new IOException( "Out of space (" + path + ")" );
|
||||
}
|
||||
|
||||
boolean success = file.mkdirs();
|
||||
@ -232,7 +232,7 @@ public class FileMount implements IWritableMount
|
||||
}
|
||||
else
|
||||
{
|
||||
throw new IOException( "Access denied" );
|
||||
throw new IOException( "Access denied (" + path + ")" );
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -242,7 +242,7 @@ public class FileMount implements IWritableMount
|
||||
{
|
||||
if( path.length() == 0 )
|
||||
{
|
||||
throw new IOException( "Access denied" );
|
||||
throw new IOException( "Access denied (" + path + ")" );
|
||||
}
|
||||
|
||||
if( created() )
|
||||
@ -276,7 +276,7 @@ public class FileMount implements IWritableMount
|
||||
}
|
||||
else
|
||||
{
|
||||
throw new IOException( "Access denied" );
|
||||
throw new IOException( "Access denied (" + path + ")" );
|
||||
}
|
||||
}
|
||||
|
||||
@ -288,7 +288,7 @@ public class FileMount implements IWritableMount
|
||||
File file = getRealPath( path );
|
||||
if( file.exists() && file.isDirectory() )
|
||||
{
|
||||
throw new IOException( "Cannot write to directory" );
|
||||
throw new IOException( "Cannot write to directory (" + path + ")" );
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -296,7 +296,7 @@ public class FileMount implements IWritableMount
|
||||
{
|
||||
if( getRemainingSpace() < MINIMUM_FILE_SIZE )
|
||||
{
|
||||
throw new IOException( "Out of space" );
|
||||
throw new IOException( "Out of space (" + path + ")" );
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -321,11 +321,11 @@ public class FileMount implements IWritableMount
|
||||
File file = getRealPath( path );
|
||||
if( !file.exists() )
|
||||
{
|
||||
throw new IOException( "No such file" );
|
||||
throw new IOException( "No such file (" + path + ")" );
|
||||
}
|
||||
else if( file.isDirectory() )
|
||||
{
|
||||
throw new IOException( "Cannot write to directory" );
|
||||
throw new IOException( "Cannot write to directory (" + path + ")" );
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -334,7 +334,7 @@ public class FileMount implements IWritableMount
|
||||
}
|
||||
else
|
||||
{
|
||||
throw new IOException( "No such file" );
|
||||
throw new IOException( "No such file (" + path + ")" );
|
||||
}
|
||||
}
|
||||
|
||||
@ -361,7 +361,7 @@ public class FileMount implements IWritableMount
|
||||
boolean success = m_rootPath.mkdirs();
|
||||
if( !success )
|
||||
{
|
||||
throw new IOException( "Access denied" );
|
||||
throw new IOException( "Access denied (" + path + ")" );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -110,7 +110,7 @@ public class FileSystem
|
||||
}
|
||||
else
|
||||
{
|
||||
throw new FileSystemException( "Not a directory" );
|
||||
throw new FileSystemException( "Not a directory (" + path + ")" );
|
||||
}
|
||||
}
|
||||
catch( IOException e )
|
||||
@ -137,7 +137,7 @@ public class FileSystem
|
||||
}
|
||||
else
|
||||
{
|
||||
throw new FileSystemException( "No such file" );
|
||||
throw new FileSystemException( "No such file (" + path + ")" );
|
||||
}
|
||||
}
|
||||
catch( IOException e )
|
||||
@ -157,7 +157,7 @@ public class FileSystem
|
||||
}
|
||||
else
|
||||
{
|
||||
throw new FileSystemException( "No such file" );
|
||||
throw new FileSystemException( "No such file (" + path + ")" );
|
||||
}
|
||||
}
|
||||
catch( IOException e )
|
||||
@ -172,7 +172,7 @@ public class FileSystem
|
||||
{
|
||||
if( m_writableMount == null )
|
||||
{
|
||||
throw new FileSystemException( "Access denied" );
|
||||
throw new FileSystemException( "Access denied (" + path + ")" );
|
||||
}
|
||||
try
|
||||
{
|
||||
@ -181,7 +181,7 @@ public class FileSystem
|
||||
{
|
||||
if( !m_mount.isDirectory( path ) )
|
||||
{
|
||||
throw new FileSystemException( "File exists" );
|
||||
throw new FileSystemException( "File exists (" + path + ")" );
|
||||
}
|
||||
}
|
||||
else
|
||||
@ -199,7 +199,7 @@ public class FileSystem
|
||||
{
|
||||
if( m_writableMount == null )
|
||||
{
|
||||
throw new FileSystemException( "Access denied" );
|
||||
throw new FileSystemException( "Access denied (" + path + ")" );
|
||||
}
|
||||
try
|
||||
{
|
||||
@ -219,14 +219,14 @@ public class FileSystem
|
||||
{
|
||||
if( m_writableMount == null )
|
||||
{
|
||||
throw new FileSystemException( "Access denied" );
|
||||
throw new FileSystemException( "Access denied (" + path + ")" );
|
||||
}
|
||||
try
|
||||
{
|
||||
path = toLocal( path );
|
||||
if( m_mount.exists( path ) && m_mount.isDirectory( path ) )
|
||||
{
|
||||
throw new FileSystemException( "Cannot write to directory" );
|
||||
throw new FileSystemException( "Cannot write to directory (" + path + ")" );
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -251,7 +251,7 @@ public class FileSystem
|
||||
{
|
||||
if( m_writableMount == null )
|
||||
{
|
||||
throw new FileSystemException( "Access denied" );
|
||||
throw new FileSystemException( "Access denied (" + path + ")" );
|
||||
}
|
||||
try
|
||||
{
|
||||
@ -270,7 +270,7 @@ public class FileSystem
|
||||
}
|
||||
else if( m_mount.isDirectory( path ) )
|
||||
{
|
||||
throw new FileSystemException( "Cannot write to directory" );
|
||||
throw new FileSystemException( "Cannot write to directory (" + path + ")" );
|
||||
}
|
||||
else
|
||||
{
|
||||
@ -557,16 +557,16 @@ public class FileSystem
|
||||
sourcePath = sanitizePath( sourcePath );
|
||||
destPath = sanitizePath( destPath );
|
||||
if( isReadOnly( destPath ) ) {
|
||||
throw new FileSystemException( "Access denied" );
|
||||
throw new FileSystemException( "Access denied (" + destPath + ")" );
|
||||
}
|
||||
if( !exists( sourcePath ) ) {
|
||||
throw new FileSystemException( "No such file" );
|
||||
throw new FileSystemException( "No such file (" + sourcePath + ")" );
|
||||
}
|
||||
if( exists( destPath ) ) {
|
||||
throw new FileSystemException( "File exists" );
|
||||
throw new FileSystemException( "File exists (" + destPath + ")" );
|
||||
}
|
||||
if( contains( sourcePath, destPath ) ) {
|
||||
throw new FileSystemException( "Can't copy a directory inside itself" );
|
||||
throw new FileSystemException( "Can't copy a directory inside itself (" + sourcePath + ")" );
|
||||
}
|
||||
copyRecursive( sourcePath, getMount( sourcePath ), destPath, getMount( destPath ) );
|
||||
}
|
||||
@ -730,7 +730,7 @@ public class FileSystem
|
||||
}
|
||||
if( match == null )
|
||||
{
|
||||
throw new FileSystemException( "Invalid Path" );
|
||||
throw new FileSystemException( "Invalid Path (" + path + ")" );
|
||||
}
|
||||
return match;
|
||||
}
|
||||
|
@ -203,7 +203,7 @@ public class JarMount implements IMount
|
||||
}
|
||||
else
|
||||
{
|
||||
throw new IOException( "Not a directory" );
|
||||
throw new IOException( "Not a directory (" + path + ")" );
|
||||
}
|
||||
}
|
||||
|
||||
@ -215,7 +215,7 @@ public class JarMount implements IMount
|
||||
{
|
||||
return file.getSize();
|
||||
}
|
||||
throw new IOException( "No such file" );
|
||||
throw new IOException( "No such file (" + path + ")" );
|
||||
}
|
||||
|
||||
@Nonnull
|
||||
@ -243,6 +243,6 @@ public class JarMount implements IMount
|
||||
// treat errors as non-existance of file
|
||||
}
|
||||
}
|
||||
throw new IOException( "No such file" );
|
||||
throw new IOException( "No such file (" + path + ")" );
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user