HDFS-7502. Fix findbugs warning in hdfs-nfs project. Contributed by Brandon Li.
This commit is contained in:
parent
d93f3b9815
commit
195f31a8ef
|
@ -25,6 +25,7 @@ import java.net.InetAddress;
|
||||||
import java.net.InetSocketAddress;
|
import java.net.InetSocketAddress;
|
||||||
import java.net.SocketAddress;
|
import java.net.SocketAddress;
|
||||||
import java.nio.ByteBuffer;
|
import java.nio.ByteBuffer;
|
||||||
|
import java.nio.charset.Charset;
|
||||||
import java.util.EnumSet;
|
import java.util.EnumSet;
|
||||||
|
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
|
@ -651,15 +652,16 @@ public class RpcProgramNfs3 extends RpcProgram implements Nfs3Interface {
|
||||||
}
|
}
|
||||||
int rtmax = config.getInt(NfsConfigKeys.DFS_NFS_MAX_READ_TRANSFER_SIZE_KEY,
|
int rtmax = config.getInt(NfsConfigKeys.DFS_NFS_MAX_READ_TRANSFER_SIZE_KEY,
|
||||||
NfsConfigKeys.DFS_NFS_MAX_READ_TRANSFER_SIZE_DEFAULT);
|
NfsConfigKeys.DFS_NFS_MAX_READ_TRANSFER_SIZE_DEFAULT);
|
||||||
if (rtmax < target.getBytes().length) {
|
if (rtmax < target.getBytes(Charset.forName("UTF-8")).length) {
|
||||||
LOG.error("Link size: " + target.getBytes().length
|
LOG.error("Link size: "
|
||||||
|
+ target.getBytes(Charset.forName("UTF-8")).length
|
||||||
+ " is larger than max transfer size: " + rtmax);
|
+ " is larger than max transfer size: " + rtmax);
|
||||||
return new READLINK3Response(Nfs3Status.NFS3ERR_IO, postOpAttr,
|
return new READLINK3Response(Nfs3Status.NFS3ERR_IO, postOpAttr,
|
||||||
new byte[0]);
|
new byte[0]);
|
||||||
}
|
}
|
||||||
|
|
||||||
return new READLINK3Response(Nfs3Status.NFS3_OK, postOpAttr,
|
return new READLINK3Response(Nfs3Status.NFS3_OK, postOpAttr,
|
||||||
target.getBytes());
|
target.getBytes(Charset.forName("UTF-8")));
|
||||||
|
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
LOG.warn("Readlink error: " + e.getClass(), e);
|
LOG.warn("Readlink error: " + e.getClass(), e);
|
||||||
|
@ -1462,7 +1464,8 @@ public class RpcProgramNfs3 extends RpcProgram implements Nfs3Interface {
|
||||||
throw io;
|
throw io;
|
||||||
}
|
}
|
||||||
// This happens when startAfter was just deleted
|
// This happens when startAfter was just deleted
|
||||||
LOG.info("Cookie couldn't be found: " + new String(startAfter)
|
LOG.info("Cookie couldn't be found: "
|
||||||
|
+ new String(startAfter, Charset.forName("UTF-8"))
|
||||||
+ ", do listing from beginning");
|
+ ", do listing from beginning");
|
||||||
dlisting = dfsClient
|
dlisting = dfsClient
|
||||||
.listPaths(dirFileIdPath, HdfsFileStatus.EMPTY_NAME);
|
.listPaths(dirFileIdPath, HdfsFileStatus.EMPTY_NAME);
|
||||||
|
@ -1571,7 +1574,7 @@ public class RpcProgramNfs3 extends RpcProgram implements Nfs3Interface {
|
||||||
startAfter = HdfsFileStatus.EMPTY_NAME;
|
startAfter = HdfsFileStatus.EMPTY_NAME;
|
||||||
} else {
|
} else {
|
||||||
String inodeIdPath = Nfs3Utils.getFileIdPath(cookie);
|
String inodeIdPath = Nfs3Utils.getFileIdPath(cookie);
|
||||||
startAfter = inodeIdPath.getBytes();
|
startAfter = inodeIdPath.getBytes(Charset.forName("UTF-8"));
|
||||||
}
|
}
|
||||||
|
|
||||||
dlisting = listPaths(dfsClient, dirFileIdPath, startAfter);
|
dlisting = listPaths(dfsClient, dirFileIdPath, startAfter);
|
||||||
|
@ -1733,7 +1736,7 @@ public class RpcProgramNfs3 extends RpcProgram implements Nfs3Interface {
|
||||||
startAfter = HdfsFileStatus.EMPTY_NAME;
|
startAfter = HdfsFileStatus.EMPTY_NAME;
|
||||||
} else {
|
} else {
|
||||||
String inodeIdPath = Nfs3Utils.getFileIdPath(cookie);
|
String inodeIdPath = Nfs3Utils.getFileIdPath(cookie);
|
||||||
startAfter = inodeIdPath.getBytes();
|
startAfter = inodeIdPath.getBytes(Charset.forName("UTF-8"));
|
||||||
}
|
}
|
||||||
|
|
||||||
dlisting = listPaths(dfsClient, dirFileIdPath, startAfter);
|
dlisting = listPaths(dfsClient, dirFileIdPath, startAfter);
|
||||||
|
|
|
@ -561,6 +561,9 @@ Release 2.7.0 - UNRELEASED
|
||||||
HDFS-7481. Add ACL indicator to the "Permission Denied" exception.
|
HDFS-7481. Add ACL indicator to the "Permission Denied" exception.
|
||||||
(vinayakumarb)
|
(vinayakumarb)
|
||||||
|
|
||||||
|
HDFS-7502. Fix findbugs warning in hdfs-nfs project.
|
||||||
|
(Brandon Li via wheat9)
|
||||||
|
|
||||||
Release 2.6.1 - UNRELEASED
|
Release 2.6.1 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
Loading…
Reference in New Issue