|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.hadoop.io.SequenceFile.Reader
public static class SequenceFile.Reader
Reads key/value pairs from a sequence-format file.
Nested Class Summary | |
---|---|
static interface |
SequenceFile.Reader.Option
A tag interface for all of the Reader options |
Constructor Summary | |
---|---|
SequenceFile.Reader(Configuration conf,
SequenceFile.Reader.Option... opts)
|
|
SequenceFile.Reader(FileSystem fs,
Path file,
Configuration conf)
Deprecated. Use Reader(Configuration, Option...) instead. |
|
SequenceFile.Reader(FSDataInputStream in,
int buffersize,
long start,
long length,
Configuration conf)
Deprecated. Use Reader(Configuration, Reader.Option...) instead. |
Method Summary | |
---|---|
static SequenceFile.Reader.Option |
bufferSize(int value)
Create an option with the buffer size for reading the given pathname. |
void |
close()
Close the file. |
SequenceFile.ValueBytes |
createValueBytes()
|
static SequenceFile.Reader.Option |
file(Path value)
Create an option to specify the path name of the sequence file. |
CompressionCodec |
getCompressionCodec()
Returns the compression codec of data in this file. |
SequenceFile.CompressionType |
getCompressionType()
Get the compression type for this file. |
Object |
getCurrentValue(Object val)
Get the 'value' corresponding to the last read 'key'. |
void |
getCurrentValue(Writable val)
Get the 'value' corresponding to the last read 'key'. |
Class<?> |
getKeyClass()
Returns the class of keys in this file. |
String |
getKeyClassName()
Returns the name of the key class. |
SequenceFile.Metadata |
getMetadata()
Returns the metadata object of the file |
long |
getPosition()
Return the current byte position in the input file. |
Class<?> |
getValueClass()
Returns the class of values in this file. |
String |
getValueClassName()
Returns the name of the value class. |
boolean |
isBlockCompressed()
Returns true if records are block-compressed. |
boolean |
isCompressed()
Returns true if values are compressed. |
static SequenceFile.Reader.Option |
length(long value)
Create an option to specify the number of bytes to read. |
Object |
next(Object key)
Read the next key in the file, skipping its value. |
boolean |
next(Writable key)
Read the next key in the file into key , skipping its
value. |
boolean |
next(Writable key,
Writable val)
Read the next key/value pair in the file into key and
val . |
int |
nextRaw(org.apache.hadoop.io.DataOutputBuffer key,
SequenceFile.ValueBytes val)
Read 'raw' records. |
int |
nextRawKey(org.apache.hadoop.io.DataOutputBuffer key)
Read 'raw' keys. |
int |
nextRawValue(SequenceFile.ValueBytes val)
Read 'raw' values. |
protected FSDataInputStream |
openFile(FileSystem fs,
Path file,
int bufferSize,
long length)
Override this method to specialize the type of FSDataInputStream returned. |
void |
seek(long position)
Set the current byte position in the input file. |
static SequenceFile.Reader.Option |
start(long value)
Create an option to specify the starting byte to read. |
static SequenceFile.Reader.Option |
stream(FSDataInputStream value)
Create an option to specify the stream with the sequence file. |
void |
sync(long position)
Seek to the next sync mark past a given position. |
boolean |
syncSeen()
Returns true iff the previous call to next passed a sync mark. |
String |
toString()
Returns the name of the file. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public SequenceFile.Reader(Configuration conf, SequenceFile.Reader.Option... opts) throws IOException
IOException
@Deprecated public SequenceFile.Reader(FileSystem fs, Path file, Configuration conf) throws IOException
fs
- The file system used to open the file.file
- The file being read.conf
- Configuration
IOException
@Deprecated public SequenceFile.Reader(FSDataInputStream in, int buffersize, long start, long length, Configuration conf) throws IOException
in
- An input stream.buffersize
- unusedstart
- The starting position.length
- The length being read.conf
- Configuration
IOException
Method Detail |
---|
public static SequenceFile.Reader.Option file(Path value)
value
- the path to read
public static SequenceFile.Reader.Option stream(FSDataInputStream value)
value
- the stream to read.
public static SequenceFile.Reader.Option start(long value)
value
- the number of bytes to skip over
public static SequenceFile.Reader.Option length(long value)
value
- the number of bytes to read
public static SequenceFile.Reader.Option bufferSize(int value)
value
- the number of bytes to buffer
protected FSDataInputStream openFile(FileSystem fs, Path file, int bufferSize, long length) throws IOException
FSDataInputStream
returned.
fs
- The file system used to open the file.file
- The file being read.bufferSize
- The buffer size used to read the file.length
- The length being read if it is >= 0. Otherwise,
the length is not available.
IOException
public void close() throws IOException
close
in interface Closeable
IOException
public String getKeyClassName()
public Class<?> getKeyClass()
public String getValueClassName()
public Class<?> getValueClass()
public boolean isCompressed()
public boolean isBlockCompressed()
public CompressionCodec getCompressionCodec()
public SequenceFile.CompressionType getCompressionType()
public SequenceFile.Metadata getMetadata()
public void getCurrentValue(Writable val) throws IOException
val
- : The 'value' to be read.
IOException
public Object getCurrentValue(Object val) throws IOException
val
- : The 'value' to be read.
IOException
public boolean next(Writable key) throws IOException
key
, skipping its
value. True if another entry exists, and false at end of file.
IOException
public boolean next(Writable key, Writable val) throws IOException
key
and
val
. Returns true if such a pair exists and false when at
end of file
IOException
public SequenceFile.ValueBytes createValueBytes()
public int nextRaw(org.apache.hadoop.io.DataOutputBuffer key, SequenceFile.ValueBytes val) throws IOException
key
- - The buffer into which the key is readval
- - The 'raw' value
IOException
public int nextRawKey(org.apache.hadoop.io.DataOutputBuffer key) throws IOException
key
- - The buffer into which the key is read
IOException
public Object next(Object key) throws IOException
IOException
public int nextRawValue(SequenceFile.ValueBytes val) throws IOException
val
- - The 'raw' value
IOException
public void seek(long position) throws IOException
The position passed must be a position returned by SequenceFile.Writer.getLength()
when writing this file. To seek to an arbitrary
position, use sync(long)
.
IOException
public void sync(long position) throws IOException
IOException
public boolean syncSeen()
public long getPosition() throws IOException
IOException
public String toString()
toString
in class Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |