HADOOP-8006 TestFSInputChecker is failing in trunk. (Daryn Sharp via bobby)
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1238841 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
536b30ec91
commit
f8a245c273
@ -80,6 +80,9 @@ Trunk (unreleased changes)
|
|||||||
kerberos. (jitendra)
|
kerberos. (jitendra)
|
||||||
|
|
||||||
BUGS
|
BUGS
|
||||||
|
HADOOP-8006 TestFSInputChecker is failing in trunk.
|
||||||
|
(Daryn Sharp via bobby)
|
||||||
|
|
||||||
HADOOP-7998. CheckFileSystem does not correctly honor setVerifyChecksum
|
HADOOP-7998. CheckFileSystem does not correctly honor setVerifyChecksum
|
||||||
(Daryn Sharp via bobby)
|
(Daryn Sharp via bobby)
|
||||||
|
|
||||||
|
@ -119,7 +119,6 @@ private static class ChecksumFSInputChecker extends FSInputChecker {
|
|||||||
private static final int HEADER_LENGTH = 8;
|
private static final int HEADER_LENGTH = 8;
|
||||||
|
|
||||||
private int bytesPerSum = 1;
|
private int bytesPerSum = 1;
|
||||||
private long fileLen = -1L;
|
|
||||||
|
|
||||||
public ChecksumFSInputChecker(ChecksumFileSystem fs, Path file)
|
public ChecksumFSInputChecker(ChecksumFileSystem fs, Path file)
|
||||||
throws IOException {
|
throws IOException {
|
||||||
@ -244,6 +243,24 @@ protected int readChunk(long pos, byte[] buf, int offset, int len,
|
|||||||
}
|
}
|
||||||
return nread;
|
return nread;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static class FSDataBoundedInputStream extends FSDataInputStream {
|
||||||
|
private FileSystem fs;
|
||||||
|
private Path file;
|
||||||
|
private long fileLen = -1L;
|
||||||
|
|
||||||
|
FSDataBoundedInputStream(FileSystem fs, Path file, InputStream in)
|
||||||
|
throws IOException {
|
||||||
|
super(in);
|
||||||
|
this.fs = fs;
|
||||||
|
this.file = file;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean markSupported() {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
/* Return the file length */
|
/* Return the file length */
|
||||||
private long getFileLength() throws IOException {
|
private long getFileLength() throws IOException {
|
||||||
@ -304,9 +321,16 @@ public synchronized void seek(long pos) throws IOException {
|
|||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public FSDataInputStream open(Path f, int bufferSize) throws IOException {
|
public FSDataInputStream open(Path f, int bufferSize) throws IOException {
|
||||||
return verifyChecksum
|
FileSystem fs;
|
||||||
? new FSDataInputStream(new ChecksumFSInputChecker(this, f, bufferSize))
|
InputStream in;
|
||||||
: getRawFileSystem().open(f, bufferSize);
|
if (verifyChecksum) {
|
||||||
|
fs = this;
|
||||||
|
in = new ChecksumFSInputChecker(this, f, bufferSize);
|
||||||
|
} else {
|
||||||
|
fs = getRawFileSystem();
|
||||||
|
in = fs.open(f, bufferSize);
|
||||||
|
}
|
||||||
|
return new FSDataBoundedInputStream(fs, f, in);
|
||||||
}
|
}
|
||||||
|
|
||||||
/** {@inheritDoc} */
|
/** {@inheritDoc} */
|
||||||
|
Loading…
Reference in New Issue
Block a user