Browse Source

add @Override

pull/781/head
Chris Lu 6 years ago
parent
commit
aea86cbf89
  1. 10
      other/java/hdfs/src/main/java/seaweed/hdfs/SeaweedFileSystem.java

10
other/java/hdfs/src/main/java/seaweed/hdfs/SeaweedFileSystem.java

@ -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);

Loading…
Cancel
Save