abstract class BagReader[T] extends Iterator[(T, Long)]
A reader of binary SiLK Bag files. This is usable as an Iterator over a pair representing the key and counter in the Bag. Depending on the contents of the Bag file, the key is either an IPAddress or an Int. The counter is always a Long.
Since a Bag file may contain different key types, the BagReader factory methods return a BagResult wrapper over BagReader.
The keyType and counterType methods return a BagDataType
that specifies the type of the key and the counter that were
specified in the Bag file's header.
This example uses the single argument form of the companion object's
ofInputStream()method to read the Bag file "example.bag". This code may be used outside of Hadoop when it is known that the Bag's key is an IPAddress.val stream = new java.io.FileInputStream("example.bag") val bagresult = BagReader.ofInputStream(stream) val bag = bagresult match { case BagResult.IPAddressBag(iter) => iter case _ => null } bag.hasNext val (ipaddr, counter) = bag.next()
- Note
While the SiLK command lines tools display an unspecified key type as an IPv4 address, the BagReader class treats an unspecified key type as an integer.
- See also
the companion object for more details.
- Alphabetic
- By Inheritance
- BagReader
- Iterator
- TraversableOnce
- GenTraversableOnce
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
-
class
GroupedIterator[B >: A] extends AbstractIterator[Seq[B]] with Iterator[Seq[B]]
- Definition Classes
- Iterator
Abstract Value Members
-
abstract
def
next(): (T, Long)
Produces the next (key, counter) pair of this iterator.
Produces the next (key, counter) pair of this iterator.
- returns
the next pair of this iterator if
hasNextis true
- Definition Classes
- BagReader → Iterator
- Exceptions thrown
java.util.NoSuchElementExceptionwhen the iterator is depleted
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
++[B >: (T, Long)](that: ⇒ GenTraversableOnce[B]): Iterator[B]
- Definition Classes
- Iterator
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
addString(b: StringBuilder): StringBuilder
- Definition Classes
- TraversableOnce
-
def
addString(b: StringBuilder, sep: String): StringBuilder
- Definition Classes
- TraversableOnce
-
def
addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
- Definition Classes
- TraversableOnce
-
def
aggregate[B](z: ⇒ B)(seqop: (B, (T, Long)) ⇒ B, combop: (B, B) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
var
bufOffset: Int
Current position (octet offset) in the current buffer.
Current position (octet offset) in the current buffer.
- Attributes
- protected[this]
-
var
buffer: Array[Byte]
Current buffer of bytes being processed
Current buffer of bytes being processed
- Attributes
- protected[this]
-
def
buffered: BufferedIterator[(T, Long)]
- Definition Classes
- Iterator
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
collect[B](pf: PartialFunction[(T, Long), B]): Iterator[B]
- Definition Classes
- Iterator
- Annotations
- @migration
- Migration
(Changed in version 2.8.0)
collecthas changed. The previous behavior can be reproduced withtoSeq.
-
def
collectFirst[B](pf: PartialFunction[(T, Long), B]): Option[B]
- Definition Classes
- TraversableOnce
-
def
contains(elem: Any): Boolean
- Definition Classes
- Iterator
-
def
copyToArray[B >: (T, Long)](xs: Array[B], start: Int, len: Int): Unit
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
copyToArray[B >: (T, Long)](xs: Array[B]): Unit
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
copyToArray[B >: (T, Long)](xs: Array[B], start: Int): Unit
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
copyToBuffer[B >: (T, Long)](dest: Buffer[B]): Unit
- Definition Classes
- TraversableOnce
-
def
corresponds[B](that: GenTraversableOnce[B])(p: ((T, Long), B) ⇒ Boolean): Boolean
- Definition Classes
- Iterator
-
def
count(p: ((T, Long)) ⇒ Boolean): Int
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
counterType: Option[BagDataType]
Provides the data type of the counter that was specified in the Bag file's header, if any.
Provides the data type of the counter that was specified in the Bag file's header, if any.
- returns
the type of data in the Counter field of the Bag or
Noneif no header was present
-
def
drop(n: Int): Iterator[(T, Long)]
- Definition Classes
- Iterator
-
def
dropWhile(p: ((T, Long)) ⇒ Boolean): Iterator[(T, Long)]
- Definition Classes
- Iterator
-
def
duplicate: (Iterator[(T, Long)], Iterator[(T, Long)])
- Definition Classes
- Iterator
-
var
endOfFile: Boolean
Whether the end of the input stream has been reached.
Whether the end of the input stream has been reached.
- Attributes
- protected[this]
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
exists(p: ((T, Long)) ⇒ Boolean): Boolean
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
fillBuffer(): Unit
Read a new buffer into memory if needed.
Read a new buffer into memory if needed. Does no work if the current buffer still has unread records, or if the reader is at end of file. Sets endOfFile to true if the EOF is reached.
- Attributes
- protected[this]
-
def
filter(p: ((T, Long)) ⇒ Boolean): Iterator[(T, Long)]
- Definition Classes
- Iterator
-
def
filterNot(p: ((T, Long)) ⇒ Boolean): Iterator[(T, Long)]
- Definition Classes
- Iterator
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
def
find(p: ((T, Long)) ⇒ Boolean): Option[(T, Long)]
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
flatMap[B](f: ((T, Long)) ⇒ GenTraversableOnce[B]): Iterator[B]
- Definition Classes
- Iterator
-
def
fold[A1 >: (T, Long)](z: A1)(op: (A1, A1) ⇒ A1): A1
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
foldLeft[B](z: B)(op: (B, (T, Long)) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
foldRight[B](z: B)(op: ((T, Long), B) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
forall(p: ((T, Long)) ⇒ Boolean): Boolean
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
foreach[U](f: ((T, Long)) ⇒ U): Unit
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
grouped[B >: (T, Long)](size: Int): GroupedIterator[B]
- Definition Classes
- Iterator
-
def
hasDefiniteSize: Boolean
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
hasNext: Boolean
Tests whether this iterator can provide another (key, counter) pair.
Tests whether this iterator can provide another (key, counter) pair.
- returns
trueif a subsequent call tonext()will yield an element,falseotherwise.
- Definition Classes
- BagReader → Iterator
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
val
header: Header
- Attributes
- protected[this]
-
def
indexOf[B >: (T, Long)](elem: B, from: Int): Int
- Definition Classes
- Iterator
-
def
indexOf[B >: (T, Long)](elem: B): Int
- Definition Classes
- Iterator
-
def
indexWhere(p: ((T, Long)) ⇒ Boolean, from: Int): Int
- Definition Classes
- Iterator
-
def
indexWhere(p: ((T, Long)) ⇒ Boolean): Int
- Definition Classes
- Iterator
-
def
isEmpty: Boolean
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
isTraversableAgain: Boolean
- Definition Classes
- Iterator → GenTraversableOnce
-
def
keyType: Option[BagDataType]
Provides the data type of the key that was specified in the Bag file's header, if any.
Provides the data type of the key that was specified in the Bag file's header, if any.
- returns
the type of data in the Key field of the Bag or
Noneif no header was present
-
def
length: Int
- Definition Classes
- Iterator
-
def
map[B](f: ((T, Long)) ⇒ B): Iterator[B]
- Definition Classes
- Iterator
-
def
max[B >: (T, Long)](implicit cmp: Ordering[B]): (T, Long)
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
maxBy[B](f: ((T, Long)) ⇒ B)(implicit cmp: Ordering[B]): (T, Long)
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
min[B >: (T, Long)](implicit cmp: Ordering[B]): (T, Long)
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
minBy[B](f: ((T, Long)) ⇒ B)(implicit cmp: Ordering[B]): (T, Long)
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
mkString: String
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
mkString(sep: String): String
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
mkString(start: String, sep: String, end: String): String
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
nonEmpty: Boolean
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
padTo[A1 >: (T, Long)](len: Int, elem: A1): Iterator[A1]
- Definition Classes
- Iterator
-
def
partition(p: ((T, Long)) ⇒ Boolean): (Iterator[(T, Long)], Iterator[(T, Long)])
- Definition Classes
- Iterator
-
def
patch[B >: (T, Long)](from: Int, patchElems: Iterator[B], replaced: Int): Iterator[B]
- Definition Classes
- Iterator
-
def
product[B >: (T, Long)](implicit num: Numeric[B]): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
val
reader: BufferReader
- Attributes
- protected[this]
-
val
recordLength: Short
Record length
Record length
- Attributes
- protected[this]
-
def
reduce[A1 >: (T, Long)](op: (A1, A1) ⇒ A1): A1
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduceLeft[B >: (T, Long)](op: (B, (T, Long)) ⇒ B): B
- Definition Classes
- TraversableOnce
-
def
reduceLeftOption[B >: (T, Long)](op: (B, (T, Long)) ⇒ B): Option[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduceOption[A1 >: (T, Long)](op: (A1, A1) ⇒ A1): Option[A1]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduceRight[B >: (T, Long)](op: ((T, Long), B) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reduceRightOption[B >: (T, Long)](op: ((T, Long), B) ⇒ B): Option[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
reversed: List[(T, Long)]
- Attributes
- protected[this]
- Definition Classes
- TraversableOnce
-
def
sameElements(that: Iterator[_]): Boolean
- Definition Classes
- Iterator
-
def
scanLeft[B](z: B)(op: (B, (T, Long)) ⇒ B): Iterator[B]
- Definition Classes
- Iterator
-
def
scanRight[B](z: B)(op: ((T, Long), B) ⇒ B): Iterator[B]
- Definition Classes
- Iterator
-
def
seq: Iterator[(T, Long)]
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
size: Int
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
sizeHintIfCheap: Int
- Attributes
- protected[collection]
- Definition Classes
- GenTraversableOnce
-
def
slice(from: Int, until: Int): Iterator[(T, Long)]
- Definition Classes
- Iterator
-
def
sliceIterator(from: Int, until: Int): Iterator[(T, Long)]
- Attributes
- protected
- Definition Classes
- Iterator
-
def
sliding[B >: (T, Long)](size: Int, step: Int): GroupedIterator[B]
- Definition Classes
- Iterator
-
def
span(p: ((T, Long)) ⇒ Boolean): (Iterator[(T, Long)], Iterator[(T, Long)])
- Definition Classes
- Iterator
-
def
sum[B >: (T, Long)](implicit num: Numeric[B]): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
val
swap: Boolean
Whether to byte-swap the bytes as they are read from the buffer
Whether to byte-swap the bytes as they are read from the buffer
- Attributes
- protected[this]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
take(n: Int): Iterator[(T, Long)]
- Definition Classes
- Iterator
-
def
takeWhile(p: ((T, Long)) ⇒ Boolean): Iterator[(T, Long)]
- Definition Classes
- Iterator
-
def
to[Col[_]](implicit cbf: CanBuildFrom[Nothing, (T, Long), Col[(T, Long)]]): Col[(T, Long)]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toArray[B >: (T, Long)](implicit arg0: ClassTag[B]): Array[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toBuffer[B >: (T, Long)]: Buffer[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toIndexedSeq: IndexedSeq[(T, Long)]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toIterable: Iterable[(T, Long)]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toIterator: Iterator[(T, Long)]
- Definition Classes
- Iterator → GenTraversableOnce
-
def
toList: List[(T, Long)]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toMap[T, U](implicit ev: <:<[(T, Long), (T, U)]): Map[T, U]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toSeq: Seq[(T, Long)]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toSet[B >: (T, Long)]: Set[B]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
def
toStream: Stream[(T, Long)]
- Definition Classes
- Iterator → GenTraversableOnce
-
def
toString(): String
- Definition Classes
- Iterator → AnyRef → Any
-
def
toTraversable: Traversable[(T, Long)]
- Definition Classes
- Iterator → TraversableOnce → GenTraversableOnce
-
def
toVector: Vector[(T, Long)]
- Definition Classes
- TraversableOnce → GenTraversableOnce
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
withFilter(p: ((T, Long)) ⇒ Boolean): Iterator[(T, Long)]
- Definition Classes
- Iterator
-
def
zip[B](that: Iterator[B]): Iterator[((T, Long), B)]
- Definition Classes
- Iterator
-
def
zipAll[B, A1 >: (T, Long), B1 >: B](that: Iterator[B], thisElem: A1, thatElem: B1): Iterator[(A1, B1)]
- Definition Classes
- Iterator
-
def
zipWithIndex: Iterator[((T, Long), Int)]
- Definition Classes
- Iterator
Deprecated Value Members
-
def
/:[B](z: B)(op: (B, (T, Long)) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
- Annotations
- @deprecated
- Deprecated
(Since version 2.12.10) Use foldLeft instead of /:
-
def
:\[B](z: B)(op: ((T, Long), B) ⇒ B): B
- Definition Classes
- TraversableOnce → GenTraversableOnce
- Annotations
- @deprecated
- Deprecated
(Since version 2.12.10) Use foldRight instead of :\