abstract class IPSetReader extends Iterator[IPBlock]
This example uses the single argument form of the companion object's
ofInputStream()
method to read the IPset file "example.set"; the code may be used outside of Hadoop.val stream = new java.io.FileInputStream("example.set") val ipset = IPSetReader.ofInputStream(stream) ipset.hasNext val ipblock = ipset.next() println(ipblock.min + "/" + ipblock.prefixLength)
- See also
the companion object for more details
- Alphabetic
- By Inheritance
- IPSetReader
- Iterator
- IterableOnceOps
- IterableOnce
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- class GroupedIterator[B >: A] extends AbstractIterator[Seq[B]]
- Definition Classes
- Iterator
Abstract Value Members
- abstract def containsIPv6: Boolean
Whether the IPSetReader returns an Iterator over IPv6Blocks or IPv4Blocks.
Whether the IPSetReader returns an Iterator over IPv6Blocks or IPv4Blocks.
- returns
true
if the IPBlock objects are IPv6Block
- abstract def hasNext: Boolean
Tests whether this iterator can provide another IPBlock.
Tests whether this iterator can provide another IPBlock.
- returns
true
if a subsequent call tonext()
will yield an element,false
otherwise.
- Definition Classes
- IPSetReader → Iterator
- abstract def next(): IPBlock
Produces the next IPBlock of this iterator.
Produces the next IPBlock of this iterator.
- returns
the next IPBlock of this iterator if
hasNext
is true
- Definition Classes
- IPSetReader → Iterator
- Exceptions thrown
java.util.NoSuchElementException
when the iterator is depleted
Concrete Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ++[B >: IPBlock](xs: => IterableOnce[B]): Iterator[B]
- Definition Classes
- Iterator
- Annotations
- @inline()
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def addString(b: StringBuilder): StringBuilder
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- final def addString(b: StringBuilder, sep: String): StringBuilder
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- def addString(b: StringBuilder, start: String, sep: String, end: String): StringBuilder
- Definition Classes
- IterableOnceOps
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val bitmap256Length: Int
Octet-length of the 256-Bitmap
Octet-length of the 256-Bitmap
- Attributes
- protected
- 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[IPBlock]
- Definition Classes
- Iterator
- def checkAvailable(avail: Int): Boolean
Return true if 'avail' octets are available in the buffer, reading more data from the stream if necessary.
Return true if 'avail' octets are available in the buffer, reading more data from the stream if necessary.
- Attributes
- protected[this]
- val cidrBitmapFollows: Int
For IPset file formats v4 and v5, a special value that indicates that a 256-long bitmap follows the IP address
For IPset file formats v4 and v5, a special value that indicates that a 256-long bitmap follows the IP address
- Attributes
- protected
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def collect[B](pf: PartialFunction[IPBlock, B]): Iterator[B]
- Definition Classes
- Iterator → IterableOnceOps
- def collectFirst[B](pf: PartialFunction[IPBlock, B]): Option[B]
- Definition Classes
- IterableOnceOps
- def concat[B >: IPBlock](xs: => IterableOnce[B]): Iterator[B]
- Definition Classes
- Iterator
- def contains(elem: Any): Boolean
- Definition Classes
- Iterator
- def copyToArray[B >: IPBlock](xs: Array[B], start: Int, len: Int): Int
- Definition Classes
- IterableOnceOps
- def copyToArray[B >: IPBlock](xs: Array[B], start: Int): Int
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecatedOverriding()
- def copyToArray[B >: IPBlock](xs: Array[B]): Int
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecatedOverriding()
- def corresponds[B](that: IterableOnce[B])(p: (IPBlock, B) => Boolean): Boolean
- Definition Classes
- IterableOnceOps
- def count(p: (IPBlock) => Boolean): Int
- Definition Classes
- IterableOnceOps
- def distinct: Iterator[IPBlock]
- Definition Classes
- Iterator
- def distinctBy[B](f: (IPBlock) => B): Iterator[IPBlock]
- Definition Classes
- Iterator
- def drop(n: Int): Iterator[IPBlock]
- Definition Classes
- Iterator → IterableOnceOps
- def dropWhile(p: (IPBlock) => Boolean): Iterator[IPBlock]
- Definition Classes
- Iterator → IterableOnceOps
- def duplicate: (Iterator[IPBlock], Iterator[IPBlock])
- Definition Classes
- Iterator
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def exists(p: (IPBlock) => Boolean): Boolean
- Definition Classes
- IterableOnceOps
- def filter(p: (IPBlock) => Boolean): Iterator[IPBlock]
- Definition Classes
- Iterator → IterableOnceOps
- def filterNot(p: (IPBlock) => Boolean): Iterator[IPBlock]
- Definition Classes
- Iterator → IterableOnceOps
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- def find(p: (IPBlock) => Boolean): Option[IPBlock]
- Definition Classes
- IterableOnceOps
- def flatMap[B](f: (IPBlock) => IterableOnce[B]): Iterator[B]
- Definition Classes
- Iterator → IterableOnceOps
- def flatten[B](implicit ev: (IPBlock) => IterableOnce[B]): Iterator[B]
- Definition Classes
- Iterator → IterableOnceOps
- def fold[A1 >: IPBlock](z: A1)(op: (A1, A1) => A1): A1
- Definition Classes
- IterableOnceOps
- def foldLeft[B](z: B)(op: (B, IPBlock) => B): B
- Definition Classes
- IterableOnceOps
- def foldRight[B](z: B)(op: (IPBlock, B) => B): B
- Definition Classes
- IterableOnceOps
- def forall(p: (IPBlock) => Boolean): Boolean
- Definition Classes
- IterableOnceOps
- def foreach[U](f: (IPBlock) => U): Unit
- Definition Classes
- IterableOnceOps
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def grouped[B >: IPBlock](size: Int): GroupedIterator[B]
- Definition Classes
- Iterator
- def handleBitmap256(buffer: Array[Byte], offset: Int, swap: Boolean): List[List[Int]]
Return a List of Pairs of Integers.
Return a List of Pairs of Integers.
In each pair, the first value is a location of a high bit in the bitmap, and the second value is the number of consecutive high bits that is also a power of 2. The range of the first value is 0 to 255; the range of the seocond is 1 to 256.
- Attributes
- protected[this]
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- val header: Header
- Attributes
- protected[this]
- def indexOf[B >: IPBlock](elem: B, from: Int): Int
- Definition Classes
- Iterator
- def indexOf[B >: IPBlock](elem: B): Int
- Definition Classes
- Iterator
- def indexWhere(p: (IPBlock) => Boolean, from: Int): Int
- Definition Classes
- Iterator
- def isEmpty: Boolean
- Definition Classes
- Iterator → IterableOnceOps
- Annotations
- @deprecatedOverriding()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isTraversableAgain: Boolean
- Definition Classes
- IterableOnceOps
- final def iterator: Iterator[IPBlock]
- Definition Classes
- Iterator → IterableOnce
- Annotations
- @inline()
- def knownSize: Int
- Definition Classes
- IterableOnce
- def lenToCidrV4(c: Int): Int
Takes the number of consecutive high bits returned by handleBitmap256 and returns the CIDR prefix for IPv6 addresses.
Takes the number of consecutive high bits returned by handleBitmap256 and returns the CIDR prefix for IPv6 addresses.
- Attributes
- protected[this]
- def lenToCidrV6(c: Int): Int
Takes the number of consecutive high bits returned by handleBitmap256 and returns the CIDR prefix for IPv6 addresses.
Takes the number of consecutive high bits returned by handleBitmap256 and returns the CIDR prefix for IPv6 addresses.
- Attributes
- protected[this]
- final def length: Int
- Definition Classes
- Iterator
- Annotations
- @inline()
- def map[B](f: (IPBlock) => B): Iterator[B]
- Definition Classes
- Iterator → IterableOnceOps
- def max[B >: IPBlock](implicit ord: Ordering[B]): IPBlock
- Definition Classes
- IterableOnceOps
- def maxBy[B](f: (IPBlock) => B)(implicit cmp: Ordering[B]): IPBlock
- Definition Classes
- IterableOnceOps
- def maxByOption[B](f: (IPBlock) => B)(implicit cmp: Ordering[B]): Option[IPBlock]
- Definition Classes
- IterableOnceOps
- def maxOption[B >: IPBlock](implicit ord: Ordering[B]): Option[IPBlock]
- Definition Classes
- IterableOnceOps
- def min[B >: IPBlock](implicit ord: Ordering[B]): IPBlock
- Definition Classes
- IterableOnceOps
- def minBy[B](f: (IPBlock) => B)(implicit cmp: Ordering[B]): IPBlock
- Definition Classes
- IterableOnceOps
- def minByOption[B](f: (IPBlock) => B)(implicit cmp: Ordering[B]): Option[IPBlock]
- Definition Classes
- IterableOnceOps
- def minOption[B >: IPBlock](implicit ord: Ordering[B]): Option[IPBlock]
- Definition Classes
- IterableOnceOps
- final def mkString: String
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- final def mkString(sep: String): String
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- final def mkString(start: String, sep: String, end: String): String
- Definition Classes
- IterableOnceOps
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def nextOption(): Option[IPBlock]
- Definition Classes
- Iterator
- def nonEmpty: Boolean
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecatedOverriding()
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def padTo[B >: IPBlock](len: Int, elem: B): Iterator[B]
- Definition Classes
- Iterator
- def partition(p: (IPBlock) => Boolean): (Iterator[IPBlock], Iterator[IPBlock])
- Definition Classes
- Iterator
- def patch[B >: IPBlock](from: Int, patchElems: Iterator[B], replaced: Int): Iterator[B]
- Definition Classes
- Iterator
- def product[B >: IPBlock](implicit num: Numeric[B]): B
- Definition Classes
- IterableOnceOps
- val reader: BufferReader
- Attributes
- protected[this]
- def reduce[B >: IPBlock](op: (B, B) => B): B
- Definition Classes
- IterableOnceOps
- def reduceLeft[B >: IPBlock](op: (B, IPBlock) => B): B
- Definition Classes
- IterableOnceOps
- def reduceLeftOption[B >: IPBlock](op: (B, IPBlock) => B): Option[B]
- Definition Classes
- IterableOnceOps
- def reduceOption[B >: IPBlock](op: (B, B) => B): Option[B]
- Definition Classes
- IterableOnceOps
- def reduceRight[B >: IPBlock](op: (IPBlock, B) => B): B
- Definition Classes
- IterableOnceOps
- def reduceRightOption[B >: IPBlock](op: (IPBlock, B) => B): Option[B]
- Definition Classes
- IterableOnceOps
- def reversed: Iterable[IPBlock]
- Attributes
- protected
- Definition Classes
- IterableOnceOps
- def sameElements[B >: IPBlock](that: IterableOnce[B]): Boolean
- Definition Classes
- Iterator
- def scanLeft[B](z: B)(op: (B, IPBlock) => B): Iterator[B]
- Definition Classes
- Iterator → IterableOnceOps
- def size: Int
- Definition Classes
- IterableOnceOps
- def skipBytes(skipLen: Int): Unit
Read and throw away 'skipLen' bytes from the stream.
Read and throw away 'skipLen' bytes from the stream. An end-of-file error in this function is not caught.
- Attributes
- protected[this]
- def slice(from: Int, until: Int): Iterator[IPBlock]
- Definition Classes
- Iterator → IterableOnceOps
- def sliceIterator(from: Int, until: Int): Iterator[IPBlock]
- Attributes
- protected
- Definition Classes
- Iterator
- def sliding[B >: IPBlock](size: Int, step: Int): GroupedIterator[B]
- Definition Classes
- Iterator
- def span(p: (IPBlock) => Boolean): (Iterator[IPBlock], Iterator[IPBlock])
- Definition Classes
- Iterator → IterableOnceOps
- def splitAt(n: Int): (Iterator[IPBlock], Iterator[IPBlock])
- Definition Classes
- IterableOnceOps
- def stepper[S <: Stepper[_]](implicit shape: StepperShape[IPBlock, S]): S
- Definition Classes
- IterableOnce
- def sum[B >: IPBlock](implicit num: Numeric[B]): B
- Definition Classes
- IterableOnceOps
- 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[IPBlock]
- Definition Classes
- Iterator → IterableOnceOps
- def takeWhile(p: (IPBlock) => Boolean): Iterator[IPBlock]
- Definition Classes
- Iterator → IterableOnceOps
- def tapEach[U](f: (IPBlock) => U): Iterator[IPBlock]
- Definition Classes
- Iterator → IterableOnceOps
- def to[C1](factory: Factory[IPBlock, C1]): C1
- Definition Classes
- IterableOnceOps
- def toArray[B >: IPBlock](implicit arg0: ClassTag[B]): Array[B]
- Definition Classes
- IterableOnceOps
- final def toBuffer[B >: IPBlock]: Buffer[B]
- Definition Classes
- IterableOnceOps
- Annotations
- @inline()
- def toIndexedSeq: IndexedSeq[IPBlock]
- Definition Classes
- IterableOnceOps
- def toList: List[IPBlock]
- Definition Classes
- IterableOnceOps
- def toMap[K, V](implicit ev: <:<[IPBlock, (K, V)]): Map[K, V]
- Definition Classes
- IterableOnceOps
- def toSeq: Seq[IPBlock]
- Definition Classes
- IterableOnceOps
- def toSet[B >: IPBlock]: Set[B]
- Definition Classes
- IterableOnceOps
- def toString(): String
- Definition Classes
- Iterator → AnyRef → Any
- def toVector: Vector[IPBlock]
- Definition Classes
- IterableOnceOps
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def withFilter(p: (IPBlock) => Boolean): Iterator[IPBlock]
- Definition Classes
- Iterator
- def zip[B](that: IterableOnce[B]): Iterator[(IPBlock, B)]
- Definition Classes
- Iterator
- def zipAll[A1 >: IPBlock, B](that: IterableOnce[B], thisElem: A1, thatElem: B): Iterator[(A1, B)]
- Definition Classes
- Iterator
- def zipWithIndex: Iterator[(IPBlock, Int)]
- Definition Classes
- Iterator → IterableOnceOps
Deprecated Value Members
- final def /:[B](z: B)(op: (B, IPBlock) => B): B
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use foldLeft instead of /:
- final def :\[B](z: B)(op: (IPBlock, B) => B): B
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use foldRight instead of :\
- def aggregate[B](z: => B)(seqop: (B, IPBlock) => B, combop: (B, B) => B): B
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0)
aggregate
is not relevant for sequential collections. UsefoldLeft(z)(seqop)
instead.
- final def copyToBuffer[B >: IPBlock](dest: Buffer[B]): Unit
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use
dest ++= coll
instead
- final def hasDefiniteSize: Boolean
- Definition Classes
- Iterator → IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) hasDefiniteSize on Iterator is the same as isEmpty
- def scanRight[B](z: B)(op: (IPBlock, B) => B): Iterator[B]
- Definition Classes
- Iterator
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Call scanRight on an Iterable instead.
- def seq: IPSetReader.this.type
- Definition Classes
- Iterator
- Annotations
- @deprecated
- Deprecated
(Since version 2.13.0) Iterator.seq always returns the iterator itself
- final def toIterator: Iterator[IPBlock]
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .iterator instead of .toIterator
- final def toStream: Stream[IPBlock]
- Definition Classes
- IterableOnceOps
- Annotations
- @deprecated @inline()
- Deprecated
(Since version 2.13.0) Use .to(LazyList) instead of .toStream
This is documentation for Mothra, a collection of Scala and Spark library functions for working with Internet-related data. Some modules contain APIs of general use to Scala programmers. Some modules make those tools more useful on Spark data-processing systems.
Please see the documentation for the individual packages for more details on their use.
Scala Packages
These packages are useful in Scala code without involving Spark:
org.cert.netsa.data
This package, which is collected as the
netsa-data
library, provides types for working with various kinds of information:org.cert.netsa.data.net
- types for working with network dataorg.cert.netsa.data.time
- types for working with time dataorg.cert.netsa.data.unsigned
- types for working with unsigned integral valuesorg.cert.netsa.io.ipfix
The
netsa-io-ipfix
library provides tools for reading and writing IETF IPFIX data from various connections and files.org.cert.netsa.io.silk
To read and write CERT NetSA SiLK file formats and configuration files, use the
netsa-io-silk
library.org.cert.netsa.util
The "junk drawer" of
netsa-util
so far provides only two features: First, a method for equipping Scala scala.collection.Iterators with exception handling. And second, a way to query the versions of NetSA libraries present in a JVM at runtime.Spark Packages
These packages require the use of Apache Spark:
org.cert.netsa.mothra.datasources
Spark datasources for CERT file types. This package contains utility features which add methods to Apache Spark DataFrameReader objects, allowing IPFIX and SiLK flows to be opened using simple
spark.read...
calls.The
mothra-datasources
library contains both IPFIX and SiLK functionality, whilemothra-datasources-ipfix
andmothra-datasources-silk
contain only what's needed for the named datasource.org.cert.netsa.mothra.analysis
A grab-bag of analysis helper functions and example analyses.
org.cert.netsa.mothra.functions
This single Scala object provides Spark SQL functions for working with network data. It is the entirety of the
mothra-functions
library.