/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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.hadoop.fs; import java.io.*; import java.net.URI; import org.apache.hadoop.conf.Configuration; import org.apache.hadoop.fs.permission.FsPermission; import org.apache.hadoop.io.WriteOptions; import org.apache.hadoop.util.Progressable; /**************************************************************** * A <code>FilterFileSystem</code> 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 <code>FilterFileSystem</code> * itself simply overrides all methods of * <code>FileSystem</code> with versions that * pass all requests to the contained file * system. Subclasses of <code>FilterFileSystem</code> * may further override some of these methods * and may also provide additional methods * and fields. * *****************************************************************/ public class FilterFileSystem extends FileSystem { protected FileSystem fs; /* * so that extending classes can define it */ public FilterFileSystem() { } public FilterFileSystem(FileSystem fs) { this.fs = fs; this.statistics = fs.statistics; } /** Called after a new FileSystem instance is constructed. * @param name a uri whose authority section names the host, port, etc. * for this FileSystem * @param conf the configuration */ public void initialize(URI name, Configuration conf) throws IOException { fs.initialize(name, conf); } /** Returns a URI whose scheme and authority identify this FileSystem.*/ public URI getUri() { return fs.getUri(); } /** @deprecated call #getUri() instead.*/ public String getName() { return fs.getName(); } public FileSystem getRawFileSystem() { return fs; } /** Make sure that a path specifies a FileSystem. */ public Path makeQualified(Path path) { return fs.makeQualified(path); } /////////////////////////////////////////////////////////////// // FileSystem /////////////////////////////////////////////////////////////// /** Check that a Path belongs to this FileSystem. */ protected void checkPath(Path path) { fs.checkPath(path); } public BlockLocation[] getFileBlockLocations(FileStatus file, long start, long len) throws IOException { return fs.getFileBlockLocations(file, start, len); } /** * Opens an FSDataInputStream at the indicated Path. * @param f the file name to open * @param bufferSize the size of the buffer to be used. */ public FSDataInputStream open(Path f, int bufferSize) throws IOException { return fs.open(f, bufferSize); } /** {@inheritDoc} */ public FSDataOutputStream append(Path f, int bufferSize, Progressable progress) throws IOException { return fs.append(f, bufferSize, progress); } /** {@inheritDoc} */ @Override public FSDataOutputStream create(Path f, FsPermission permission, boolean overwrite, int bufferSize, short replication, long blockSize, Progressable progress) throws IOException { return fs.create(f, permission, overwrite, bufferSize, replication, blockSize, progress); } /** {@inheritDoc} */ @Override public FSDataOutputStream create(Path f, FsPermission permission, boolean overwrite, int bufferSize, short replication, long blockSize, int bytesPerChecksum, Progressable progress, boolean forceSync) throws IOException { return fs.create(f, permission, overwrite, bufferSize, replication, blockSize, bytesPerChecksum, progress, forceSync); } /** {@inheritDoc} */ @Override public FSDataOutputStream create(Path f, CreateOptions... opts) throws IOException { return super.create(f, opts); } /** {@inheritDoc} */ @Deprecated public FSDataOutputStream createNonRecursive(Path f, boolean overwrite, int bufferSize, short replication, long blockSize, Progressable progress, boolean forceSync) throws IOException { return fs.createNonRecursive(f,overwrite, bufferSize, replication, blockSize, progress); } /** {@inheritDoc} */ @Deprecated public FSDataOutputStream createNonRecursive(Path f, FsPermission permission, boolean overwrite, int bufferSize, short replication, long blockSize, Progressable progress, boolean forceSync, boolean doParallelWrite) throws IOException { return fs.createNonRecursive(f,permission,overwrite, bufferSize, replication, blockSize, progress); } @Override public FSDataOutputStream createNonRecursive(Path f, FsPermission permission, boolean overwrite, int bufferSize, short replication, long blockSize, Progressable progress, boolean forceSync, boolean doParallelWrites, WriteOptions options) throws IOException { return createNonRecursive(f, permission, overwrite, bufferSize, replication, blockSize, progress); } /** * Set replication for an existing file. * * @param src file name * @param replication new replication * @throws IOException * @return true if successful; * false if file does not exist or is a directory */ public boolean setReplication(Path src, short replication) throws IOException { return fs.setReplication(src, replication); } /** * hard link Path dst to Path src. Can take place on DFS. */ public boolean hardLink(Path src, Path dst) throws IOException { return fs.hardLink(src, dst); } public String[] getHardLinkedFiles(Path src) throws IOException { return fs.getHardLinkedFiles(src); } /** * Renames Path src to Path dst. Can take place on local fs * or remote DFS. */ public boolean rename(Path src, Path dst) throws IOException { return fs.rename(src, dst); } /** Delete a file */@Deprecated public boolean delete(Path f) throws IOException { return delete(f, true); } /** Delete a file */ public boolean delete(Path f, boolean recursive) throws IOException { return fs.delete(f, recursive); } @Override public boolean delete(Path f, boolean recursive, boolean skipTrash) throws IOException { return fs.delete(f, recursive, skipTrash); } @Override public boolean undelete(Path f, String userName) throws IOException { return fs.undelete(f, userName); } /** * Mark a path to be deleted when FileSystem is closed. * When the JVM shuts down, * all FileSystem objects will be closed automatically. * Then, * the marked path will be deleted as a result of closing the FileSystem. * * The path has to exist in the file system. * * @param f the path to delete. * @return true if deleteOnExit is successful, otherwise false. * @throws IOException */ public boolean deleteOnExit(Path f) throws IOException { return fs.deleteOnExit(f); } /** List files in a directory. */ public FileStatus[] listStatus(Path f) throws IOException { return fs.listStatus(f); } /** * {@inheritDoc} */ @Override public RemoteIterator<Path> listCorruptFileBlocks(Path path) throws IOException { return fs.listCorruptFileBlocks(path); } @Override public RemoteIterator<LocatedFileStatus> listLocatedStatus(Path f) throws IOException { return fs.listLocatedStatus(f); } @Override public RemoteIterator<LocatedBlockFileStatus> listLocatedBlockStatus( Path f, PathFilter filter) throws IOException { return fs.listLocatedBlockStatus(f, filter); } /** list a directory, piggyback block locations to each file status */ @Override public Path getHomeDirectory() { return fs.getHomeDirectory(); } @Override public Path getHomeDirectory(String userName) { return fs.getHomeDirectory(userName); } /** * Set the current working directory for the given file system. All relative * paths will be resolved relative to it. * * @param newDir */ public void setWorkingDirectory(Path newDir) { fs.setWorkingDirectory(newDir); } /** * Get the current working directory for the given file system * * @return the directory pathname */ public Path getWorkingDirectory() { return fs.getWorkingDirectory(); } /** {@inheritDoc} */ @Override public boolean mkdirs(Path f, FsPermission permission) throws IOException { return fs.mkdirs(f, permission); } /** * The src file is on the local disk. Add it to FS at * the given dst name. * delSrc indicates if the source should be removed */ public void copyFromLocalFile(boolean delSrc, Path src, Path dst) throws IOException { fs.copyFromLocalFile(delSrc, src, dst); } /** * The src files are on the local disk. Add it to FS at * the given dst name. * delSrc indicates if the source should be removed */ public void copyFromLocalFile(boolean delSrc, boolean overwrite, Path[] srcs, Path dst) throws IOException { fs.copyFromLocalFile(delSrc, overwrite, srcs, dst); } /** * The src file is on the local disk. Add it to FS at * the given dst name. * delSrc indicates if the source should be removed */ public void copyFromLocalFile(boolean delSrc, boolean overwrite, Path src, Path dst) throws IOException { fs.copyFromLocalFile(delSrc, overwrite, src, dst); } /** * The src file is under FS, and the dst is on the local disk. * Copy it from FS control to the local dst name. * delSrc indicates if the src will be removed or not. */ public void copyToLocalFile(boolean delSrc, Path src, Path dst) throws IOException { fs.copyToLocalFile(delSrc, src, dst); } /** * Returns a local File that the user can write output to. The caller * provides both the eventual FS target name and the local working * file. If the FS is local, we write directly into the target. If * the FS is remote, we write into the tmp local area. */ public Path startLocalOutput(Path fsOutputFile, Path tmpLocalFile) throws IOException { return fs.startLocalOutput(fsOutputFile, tmpLocalFile); } /** * Called when we're all done writing to the target. A local FS will * do nothing, because we've written to exactly the right place. A remote * FS will copy the contents of tmpLocalFile to the correct target at * fsOutputFile. */ public void completeLocalOutput(Path fsOutputFile, Path tmpLocalFile) throws IOException { fs.completeLocalOutput(fsOutputFile, tmpLocalFile); } /** {@inheritDoc} */ public OpenFileInfo[] iterativeGetOpenFiles( Path prefix, int millis, String start) throws IOException { return fs.iterativeGetOpenFiles(prefix, millis, start); } /** Return the total size of all files in the filesystem.*/ public long getUsed() throws IOException{ return fs.getUsed(); } /** Return the number of bytes that large input files should be optimally * be split into to minimize i/o time. */ public long getDefaultBlockSize() { return fs.getDefaultBlockSize(); } /** * Get the default replication. */ public short getDefaultReplication() { return fs.getDefaultReplication(); } /** {@inheritDoc} */ public ContentSummary getContentSummary(Path f) throws IOException { return fs.getContentSummary(f); } /** * Get file status. */ public FileStatus getFileStatus(Path f) throws IOException { return fs.getFileStatus(f); } /** {@inheritDoc} */ public FileChecksum getFileChecksum(Path f) throws IOException { return fs.getFileChecksum(f); } /** {@inheritDoc} */ public int getFileCrc(Path f) throws IOException { return fs.getFileCrc(f); } /** {@inheritDoc} */ public void setVerifyChecksum(boolean verifyChecksum) { fs.setVerifyChecksum(verifyChecksum); } @Override public Configuration getConf() { return fs.getConf(); } @Override public void close() throws IOException { super.close(); fs.close(); } /** {@inheritDoc} */ @Override public void setOwner(Path p, String username, String groupname ) throws IOException { fs.setOwner(p, username, groupname); } /** {@inheritDoc} */ @Override public void setTimes(Path p, long mtime, long atime ) throws IOException { fs.setTimes(p, mtime, atime); } /** {@inheritDoc} */ @Override public void setPermission(Path p, FsPermission permission ) throws IOException { fs.setPermission(p, permission); } /** {@inheritDoc} */ @Override protected long getUniqueId() { return fs.getUniqueId(); } }