public class FilterFileSystem extends FileSystem
FilterFileSystem
contains
some other file system, which it uses as
its basic file system, possibly transforming
the data along the way or providing additional
functionality. The class FilterFileSystem
itself simply overrides all methods of
FileSystem
with versions that
pass all requests to the contained file
system. Subclasses of FilterFileSystem
may further override some of these methods
and may also provide additional methods
and fields.FileSystem.Statistics
限定符和类型 | 字段和说明 |
---|---|
protected FileSystem |
fs |
FS_DEFAULT_NAME_KEY, LOG, statistics
构造器和说明 |
---|
FilterFileSystem() |
FilterFileSystem(FileSystem fs) |
限定符和类型 | 方法和说明 |
---|---|
FSDataOutputStream |
append(Path f,
int bufferSize,
Progressable progress)
Append to an existing file (optional operation).
|
protected void |
checkPath(Path path)
Check that a Path belongs to this FileSystem.
|
void |
close()
No more filesystem operations are needed.
|
void |
completeLocalOutput(Path fsOutputFile,
Path tmpLocalFile)
Called when we're all done writing to the target.
|
void |
concat(Path f,
Path[] psrcs)
Concat existing files together.
|
void |
copyFromLocalFile(boolean delSrc,
Path src,
Path dst)
The src file is on the local disk.
|
void |
copyToLocalFile(boolean delSrc,
Path src,
Path dst)
The src file is under FS, and the dst is on the local disk.
|
FSDataOutputStream |
create(Path f,
FsPermission permission,
boolean overwrite,
int bufferSize,
short replication,
long blockSize,
Progressable progress)
Opens an FSDataOutputStream at the indicated Path with write-progress
reporting.
|
boolean |
delete(Path f)
已过时。
|
boolean |
delete(Path f,
boolean recursive)
Delete a file
|
String |
getCanonicalServiceName()
Get a canonical service name for this file system.
|
Configuration |
getConf()
Return the configuration used by this object.
|
long |
getDefaultBlockSize()
Return the number of bytes that large input files should be optimally
be split into to minimize i/o time.
|
short |
getDefaultReplication()
Get the default replication.
|
BlockLocation[] |
getFileBlockLocations(FileStatus file,
long start,
long len)
Return an array containing hostnames, offset and size of
portions of the given file.
|
FileChecksum |
getFileChecksum(Path f)
Get the checksum of a file.
|
FileStatus |
getFileStatus(Path f)
Get file status.
|
Path |
getHomeDirectory()
Return the current user's home directory in this filesystem.
|
String |
getName()
已过时。
call #getUri() instead.
|
URI |
getUri()
Returns a URI whose scheme and authority identify this FileSystem.
|
Path |
getWorkingDirectory()
Get the current working directory for the given file system
|
void |
initialize(URI name,
Configuration conf)
Called after a new FileSystem instance is constructed.
|
FileStatus[] |
listStatus(Path f)
List files in a directory.
|
Path |
makeQualified(Path path)
Make sure that a path specifies a FileSystem.
|
boolean |
mkdirs(Path f,
FsPermission permission)
Make the given file and all non-existent parents into
directories.
|
FSDataInputStream |
open(Path f,
int bufferSize)
Opens an FSDataInputStream at the indicated Path.
|
boolean |
rename(Path src,
Path dst)
Renames Path src to Path dst.
|
void |
setOwner(Path p,
String username,
String groupname)
Set owner of a path (i.e. a file or a directory).
|
void |
setPermission(Path p,
FsPermission permission)
Set permission of a path.
|
boolean |
setReplication(Path src,
short replication)
Set replication for an existing file.
|
void |
setVerifyChecksum(boolean verifyChecksum)
Set the verify checksum flag.
|
void |
setWorkingDirectory(Path newDir)
Set the current working directory for the given file system.
|
Path |
startLocalOutput(Path fsOutputFile,
Path tmpLocalFile)
Returns a local File that the user can write output to.
|
addFileSystemForTesting, append, append, clearStatistics, closeAll, closeAllForUGI, copyFromLocalFile, copyFromLocalFile, copyFromLocalFile, copyToLocalFile, create, create, create, create, create, create, create, create, create, create, createNewFile, createNonRecursive, createNonRecursive, deleteOnExit, exists, get, get, get, getAllStatistics, getBlockSize, getCacheSize, getCanonicalUri, getContentSummary, getDefaultBlockSize, getDefaultPort, getDefaultReplication, getDefaultUri, getDelegationToken, getLength, getLocal, getNamed, getReplication, getStatistics, getStatistics, getUsed, globStatus, globStatus, isDirectory, isFile, listStatus, listStatus, listStatus, mkdirs, mkdirs, moveFromLocalFile, moveFromLocalFile, moveToLocalFile, open, printStatistics, processDeleteOnExit, setDefaultUri, setDefaultUri, setTimes
setConf
protected FileSystem fs
public FilterFileSystem()
public FilterFileSystem(FileSystem fs)
public void initialize(URI name, Configuration conf) throws IOException
initialize
在类中 FileSystem
name
- a uri whose authority section names the host, port, etc.
for this FileSystemconf
- the configurationIOException
public URI getUri()
getUri
在类中 FileSystem
public String getCanonicalServiceName()
FileSystem
getCanonicalServiceName
在类中 FileSystem
SecurityUtil.buildDTServiceName(URI, int)
public String getName()
getName
在类中 FileSystem
public Path makeQualified(Path path)
makeQualified
在类中 FileSystem
protected void checkPath(Path path)
checkPath
在类中 FileSystem
public BlockLocation[] getFileBlockLocations(FileStatus file, long start, long len) throws IOException
FileSystem
getFileBlockLocations
在类中 FileSystem
IOException
public FSDataInputStream open(Path f, int bufferSize) throws IOException
open
在类中 FileSystem
f
- the file name to openbufferSize
- the size of the buffer to be used.IOException
public FSDataOutputStream append(Path f, int bufferSize, Progressable progress) throws IOException
append
在类中 FileSystem
f
- the existing file to be appended.bufferSize
- the size of the buffer to be used.progress
- for reporting progress if it is not null.IOException
public void concat(Path f, Path[] psrcs) throws IOException
FileSystem
concat
在类中 FileSystem
f
- the path to the target destination.IOException
public FSDataOutputStream create(Path f, FsPermission permission, boolean overwrite, int bufferSize, short replication, long blockSize, Progressable progress) throws IOException
FileSystem
create
在类中 FileSystem
f
- the file name to openoverwrite
- if a file with this name already exists, then if true,
the file will be overwritten, and if false an error will be thrown.bufferSize
- the size of the buffer to be used.replication
- required block replication for the file.IOException
FileSystem.setPermission(Path, FsPermission)
public boolean setReplication(Path src, short replication) throws IOException
setReplication
在类中 FileSystem
src
- file namereplication
- new replicationIOException
public boolean rename(Path src, Path dst) throws IOException
rename
在类中 FileSystem
IOException
@Deprecated public boolean delete(Path f) throws IOException
delete
在类中 FileSystem
IOException
public boolean delete(Path f, boolean recursive) throws IOException
delete
在类中 FileSystem
f
- the path to delete.recursive
- if path is a directory and set to
true, the directory is deleted else throws an exception. In
case of a file the recursive can be set to either true or false.IOException
public FileStatus[] listStatus(Path f) throws IOException
listStatus
在类中 FileSystem
f
- given pathIOException
public Path getHomeDirectory()
FileSystem
getHomeDirectory
在类中 FileSystem
public void setWorkingDirectory(Path newDir)
setWorkingDirectory
在类中 FileSystem
newDir
- public Path getWorkingDirectory()
getWorkingDirectory
在类中 FileSystem
public boolean mkdirs(Path f, FsPermission permission) throws IOException
mkdirs
在类中 FileSystem
IOException
public void copyFromLocalFile(boolean delSrc, Path src, Path dst) throws IOException
copyFromLocalFile
在类中 FileSystem
IOException
public void copyToLocalFile(boolean delSrc, Path src, Path dst) throws IOException
copyToLocalFile
在类中 FileSystem
IOException
public Path startLocalOutput(Path fsOutputFile, Path tmpLocalFile) throws IOException
startLocalOutput
在类中 FileSystem
IOException
public void completeLocalOutput(Path fsOutputFile, Path tmpLocalFile) throws IOException
completeLocalOutput
在类中 FileSystem
IOException
public long getDefaultBlockSize()
getDefaultBlockSize
在类中 FileSystem
public short getDefaultReplication()
getDefaultReplication
在类中 FileSystem
public FileStatus getFileStatus(Path f) throws IOException
getFileStatus
在类中 FileSystem
f
- The path we want information fromFileNotFoundException
- when the path does not exist;
IOException see specific implementationIOException
public FileChecksum getFileChecksum(Path f) throws IOException
getFileChecksum
在类中 FileSystem
f
- The file pathIOException
public void setVerifyChecksum(boolean verifyChecksum)
setVerifyChecksum
在类中 FileSystem
public Configuration getConf()
Configurable
getConf
在接口中 Configurable
getConf
在类中 Configured
public void close() throws IOException
FileSystem
close
在接口中 Closeable
close
在接口中 AutoCloseable
close
在类中 FileSystem
IOException
public void setOwner(Path p, String username, String groupname) throws IOException
setOwner
在类中 FileSystem
p
- The pathusername
- If it is null, the original username remains unchanged.groupname
- If it is null, the original groupname remains unchanged.IOException
public void setPermission(Path p, FsPermission permission) throws IOException
setPermission
在类中 FileSystem
IOException
Copyright © 2009 The Apache Software Foundation