1
0
Fork 0
mirror of https://github.com/chrislusf/seaweedfs synced 2024-09-19 23:40:46 +02:00

add @Override

This commit is contained in:
Chris Lu 2018-12-04 00:28:03 -08:00
parent b0838db5a8
commit aea86cbf89

View file

@ -65,6 +65,7 @@ public class SeaweedFileSystem extends org.apache.hadoop.fs.FileSystem {
seaweedFileSystemStore = new SeaweedFileSystemStore(host, port); seaweedFileSystemStore = new SeaweedFileSystemStore(host, port);
} }
@Override
public FSDataInputStream open(Path path, int bufferSize) throws IOException { public FSDataInputStream open(Path path, int bufferSize) throws IOException {
LOG.debug("open path: {} bufferSize:{}", path, bufferSize); LOG.debug("open path: {} bufferSize:{}", path, bufferSize);
@ -79,6 +80,7 @@ public class SeaweedFileSystem extends org.apache.hadoop.fs.FileSystem {
} }
} }
@Override
public FSDataOutputStream create(Path path, FsPermission permission, final boolean overwrite, final int bufferSize, public FSDataOutputStream create(Path path, FsPermission permission, final boolean overwrite, final int bufferSize,
final short replication, final long blockSize, final Progressable progress) throws IOException { final short replication, final long blockSize, final Progressable progress) throws IOException {
@ -95,6 +97,7 @@ public class SeaweedFileSystem extends org.apache.hadoop.fs.FileSystem {
} }
} }
@Override
public FSDataOutputStream append(Path path, int bufferSize, Progressable progressable) throws IOException { public FSDataOutputStream append(Path path, int bufferSize, Progressable progressable) throws IOException {
LOG.debug("append path: {} bufferSize:{}", path, bufferSize); LOG.debug("append path: {} bufferSize:{}", path, bufferSize);
@ -108,6 +111,7 @@ public class SeaweedFileSystem extends org.apache.hadoop.fs.FileSystem {
} }
} }
@Override
public boolean rename(Path src, Path dst) { public boolean rename(Path src, Path dst) {
LOG.debug("rename path: {} => {}", src, dst); LOG.debug("rename path: {} => {}", src, dst);
@ -138,6 +142,7 @@ public class SeaweedFileSystem extends org.apache.hadoop.fs.FileSystem {
return true; return true;
} }
@Override
public boolean delete(Path path, boolean recursive) { public boolean delete(Path path, boolean recursive) {
LOG.debug("delete path: {} recursive:{}", path, recursive); LOG.debug("delete path: {} recursive:{}", path, recursive);
@ -154,6 +159,7 @@ public class SeaweedFileSystem extends org.apache.hadoop.fs.FileSystem {
} }
@Override
public FileStatus[] listStatus(Path path) throws IOException { public FileStatus[] listStatus(Path path) throws IOException {
LOG.debug("listStatus path: {}", path); LOG.debug("listStatus path: {}", path);
@ -163,10 +169,12 @@ public class SeaweedFileSystem extends org.apache.hadoop.fs.FileSystem {
return seaweedFileSystemStore.listEntries(path); return seaweedFileSystemStore.listEntries(path);
} }
@Override
public Path getWorkingDirectory() { public Path getWorkingDirectory() {
return workingDirectory; return workingDirectory;
} }
@Override
public void setWorkingDirectory(Path path) { public void setWorkingDirectory(Path path) {
if (path.isAbsolute()) { if (path.isAbsolute()) {
workingDirectory = path; workingDirectory = path;
@ -175,6 +183,7 @@ public class SeaweedFileSystem extends org.apache.hadoop.fs.FileSystem {
} }
} }
@Override
public boolean mkdirs(Path path, FsPermission fsPermission) throws IOException { public boolean mkdirs(Path path, FsPermission fsPermission) throws IOException {
LOG.debug("mkdirs path: {}", path); LOG.debug("mkdirs path: {}", path);
@ -199,6 +208,7 @@ public class SeaweedFileSystem extends org.apache.hadoop.fs.FileSystem {
} }
} }
@Override
public FileStatus getFileStatus(Path path) { public FileStatus getFileStatus(Path path) {
LOG.debug("getFileStatus path: {}", path); LOG.debug("getFileStatus path: {}", path);