Packages

  • package root
    Definition Classes
    root
  • package io
    Definition Classes
    root
  • package dylemma
    Definition Classes
    io
  • package spac

    SPaC (short for "Streaming Parser Combinators") is a library for building stream consumers in a declarative style, specialized for tree-like data types like XML and JSON.

    SPaC (short for "Streaming Parser Combinators") is a library for building stream consumers in a declarative style, specialized for tree-like data types like XML and JSON.

    Many utilities for handling XML and JSON data involve parsing the entire "document" to some DOM model, then inspecting and transforming that model to extract information. The downside to these utilities is that when the document is very large, the DOM may not fit in memory. The workaround for this type of problem is to treat the document as a stream of "events", e.g. "StartElement" and "EndElement" for XML, or "StartObject" and "EndObject" for JSON. The downside to this workaround is that writing code to handle these streams can be complicated and error-prone, especially when the DOM is complicated.

    SPaC's goal is to drastically simplify the process of creating code to handle these streams.

    This package contains the "core" SPaC traits; Parser, Transformer, Splitter, and ContextMatcher.

    See the xml and json subpackages (provided by the xml-spac and json-spac libraries respectively) for specific utilities related to handling XML and JSON event streams.

    Definition Classes
    dylemma
  • object SingleItemContextMatcher

    Definition Classes
    spac
  • And
  • Default
  • Mapped
  • Or
  • Predicate

case class Mapped[Item, A, B](inner: SingleItemContextMatcher[Item, A], op: String = "map")(f: (A) => Option[B]) extends SingleItemContextMatcher[Item, B] with Product with Serializable

Similar to ContextMatcher.Mapped, but specialized for SingleElementContextMatcher

Source
SingleItemContextMatcher.scala
Linear Supertypes
Serializable, Product, Equals, SingleItemContextMatcher[Item, B], ContextMatcher[Item, B], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Mapped
  2. Serializable
  3. Product
  4. Equals
  5. SingleItemContextMatcher
  6. ContextMatcher
  7. AnyRef
  8. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new Mapped(inner: SingleItemContextMatcher[Item, A], op: String = "map")(f: (A) => Option[B])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def &[A1 >: B, B, R](that: SingleItemContextMatcher[Item, B])(implicit reduce: Aux[A1, B, R]): SingleItemContextMatcher[Item, R]

    Operator version of and

    Operator version of and

    Definition Classes
    SingleItemContextMatcher
  4. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from Mapped[Item, A, B] toany2stringadd[Mapped[Item, A, B]] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  5. def ->[B](y: B): (Mapped[Item, A, B], B)
    Implicit
    This member is added by an implicit conversion from Mapped[Item, A, B] toArrowAssoc[Mapped[Item, A, B]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  6. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  7. def \[A1 >: B, B, R](next: ContextMatcher[Item, B])(implicit reduce: Aux[A1, B, R]): ContextMatcher[Item, R]

    Create a new matcher by forming a chain with this matcher at the front, and the next matcher at the back.

    Create a new matcher by forming a chain with this matcher at the front, and the next matcher at the back. In other words, a matcher for a context within another context.

    A1

    To satisfy covariance on A

    B

    The next matcher's context type

    R

    The "reduced" content type, derived from the tuple type (A, B) based on the reduce rule.

    next

    A matcher which will be used to match the "inner" context

    reduce

    The TypeReduce rule to help omit Unit from the resulting context type

    returns

    A matcher which delegates to this matcher first, then the next matcher for the remaining stack.

    Definition Classes
    ContextMatcher
  8. def and[A1 >: B, B, R](that: SingleItemContextMatcher[Item, B])(implicit reduce: Aux[A1, B, R]): SingleItemContextMatcher[Item, R]

    Creates a new single-element matcher which combines the results of both this matcher and that matcher.

    Creates a new single-element matcher which combines the results of both this matcher and that matcher. Both this and that will operate on the first element of the stack (as opposed to Chained matchers).

    A1

    To satisfy covariance on A

    B

    The other matcher's result type

    R

    The combined result type

    that

    The matcher to combine

    reduce

    The TypeReduce rule for combining the two match results

    returns

    A new matcher which combines the results of this and that

    Definition Classes
    SingleItemContextMatcher
  9. def apply(stack: IndexedSeq[Item], offset: Int, avail: Int): Option[B]

    The main context match method.

    The main context match method.

    Inspects the elements in the XML "tag stack", which is essentially a List[StartElement], but for performance reasons is represented as an array with an "offset" index and a number of available elements from that offset. If the elements correspond to a context value of A, the implementation must then pass the remaining elements of the stack to the next matcher, i.e. by calling next(stack, offset + numConsumed, avail - numConsumed).

    The difference between this method and applyChained is the lack of the next parameter; in this method, the current matcher is assumed to be the end of the chain.

    stack

    A reference to the complete XML "tag stack". Note that the responsibility of this method is limited to a *slice* of this value, as defined by offset and avail.

    offset

    The index of the first element to be considered by the matching logic. From this method's point of view, the "first" element in the stack is actually at stack(offset)

    avail

    The number of elements available in the stack starting from the offset.

    returns

    An option containing the successfully-matched context, or None.

    Definition Classes
    ContextMatcher
  10. def applyChained[B](stack: IndexedSeq[Item], offset: Int, avail: Int, next: ContextMatcher[Item, B]): Option[(B, B)]

    The underlying context match method.

    The underlying context match method.

    Inspects the elements in the XML "tag stack", which is essentially a List[StartElement], but for performance reasons is represented as an array with an "offset" index and a number of available elements from that offset. If the elements correspond to a context value of A, the implementation must then pass the remaining elements of the stack to the next matcher, i.e. by calling next(stack, offset + numConsumed, avail - numConsumed).

    The next matcher is necessary in order to support non-greedy matchers, e.g. ContextMatcher.variableLength, a.k.a. **. Without a reference to the next matcher in the chain, matcher implementations would be forced to pick a fixed number of elements for matching, never knowing that the overall match could have succeeded if they had consumed some additional elements.

    B

    The next matcher's context type

    stack

    A reference to the complete XML "tag stack". Note that the responsibility of this method is limited to a *slice* of this value, as defined by offset and avail.

    offset

    The index of the first element to be considered by the matching logic. From this method's point of view, the "first" element in the stack is actually at stack(offset)

    avail

    The number of elements available in the stack starting from the offset.

    next

    The next matcher in the chain.

    returns

    If the match succeeded, and the next match succeded, an Option containing a tuple of both match results. If the match failed, or if the next match failed, None.

    Definition Classes
    SingleItemContextMatcherContextMatcher
  11. def applyElem(elem: Item): Option[B]

    The matching operation for single-element matchers.

    The matching operation for single-element matchers.

    elem

    The first element in the XML tag stack

    returns

    Some(context) for a successful match, None otherwise

    Definition Classes
    MappedSingleItemContextMatcher
  12. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  13. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  14. def ensuring(cond: (Mapped[Item, A, B]) => Boolean, msg: => Any): Mapped[Item, A, B]
    Implicit
    This member is added by an implicit conversion from Mapped[Item, A, B] toEnsuring[Mapped[Item, A, B]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. def ensuring(cond: (Mapped[Item, A, B]) => Boolean): Mapped[Item, A, B]
    Implicit
    This member is added by an implicit conversion from Mapped[Item, A, B] toEnsuring[Mapped[Item, A, B]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  16. def ensuring(cond: Boolean, msg: => Any): Mapped[Item, A, B]
    Implicit
    This member is added by an implicit conversion from Mapped[Item, A, B] toEnsuring[Mapped[Item, A, B]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  17. def ensuring(cond: Boolean): Mapped[Item, A, B]
    Implicit
    This member is added by an implicit conversion from Mapped[Item, A, B] toEnsuring[Mapped[Item, A, B]] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  18. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. def filter(p: (B) => Boolean): SingleItemContextMatcher[Item, B]

    Create a new ContextMatcher which takes the match result of this matcher and passes it through the validation function f.

    Create a new ContextMatcher which takes the match result of this matcher and passes it through the validation function f. If f returns false, the match is unsuccessful.

    p

    The filter predicate, i.e. the validation function

    returns

    A new matcher with validated results

    Definition Classes
    MappedSingleItemContextMatcherContextMatcher
  20. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  21. def flatMap[B2](g: (B) => Option[B2]): SingleItemContextMatcher[Item, B2]

    Create a new ContextMatcher which takes the match result of this matcher and passes it through the combined transformation/validation function f.

    Create a new ContextMatcher which takes the match result of this matcher and passes it through the combined transformation/validation function f. If f returns None, the match is unsuccessful; if f returns a Some, the value inside is the result of the match.

    returns

    A new matcher with transformed and validated results

    Definition Classes
    MappedSingleItemContextMatcherContextMatcher
  22. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from Mapped[Item, A, B] toStringFormat[Mapped[Item, A, B]] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  23. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  24. val inner: SingleItemContextMatcher[Item, A]
  25. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  26. def map[B2](g: (B) => B2): SingleItemContextMatcher[Item, B2]

    Create a new ContextMatcher which takes the match result of this matcher and passes it through the transformation function f.

    Create a new ContextMatcher which takes the match result of this matcher and passes it through the transformation function f.

    returns

    A new matcher with transformed results

    Definition Classes
    MappedSingleItemContextMatcherContextMatcher
  27. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  28. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  29. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  30. val op: String
  31. def or[A2 >: B](that: SingleItemContextMatcher[Item, A2]): SingleItemContextMatcher[Item, A2]

    Specialization of the default or method, specifically for SingleElementContextMatchers

    Specialization of the default or method, specifically for SingleElementContextMatchers

    Definition Classes
    SingleItemContextMatcher
  32. def or[A2 >: B](that: ContextMatcher[Item, A2]): ContextMatcher[Item, A2]

    Create a new ContextMatcher which will fall back to a second matcher in the event that this matcher fails to match a context.

    Create a new ContextMatcher which will fall back to a second matcher in the event that this matcher fails to match a context.

    A2

    The resulting context type (common supertype between this matcher and that)

    that

    The matcher which will be used as the fallback

    returns

    A matcher that falls back to another matcher in case of failure

    Definition Classes
    ContextMatcher
  33. def productElementNames: Iterator[String]
    Definition Classes
    Product
  34. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  35. def toString(): String
    Definition Classes
    Mapped → AnyRef → Any
  36. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  37. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  38. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  39. def |[A2 >: B](that: SingleItemContextMatcher[Item, A2]): SingleItemContextMatcher[Item, A2]

    Operator version of or, specialized for SingleElementContextMatchers

    Operator version of or, specialized for SingleElementContextMatchers

    Definition Classes
    SingleItemContextMatcher
  40. def |[A2 >: B](that: ContextMatcher[Item, A2]): ContextMatcher[Item, A2]

    Operator version of or

    Operator version of or

    Definition Classes
    ContextMatcher

Deprecated Value Members

  1. def [B](y: B): (Mapped[Item, A, B], B)
    Implicit
    This member is added by an implicit conversion from Mapped[Item, A, B] toArrowAssoc[Mapped[Item, A, B]] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from SingleItemContextMatcher[Item, B]

Inherited from ContextMatcher[Item, B]

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromMapped[Item, A, B] to any2stringadd[Mapped[Item, A, B]]

Inherited by implicit conversion StringFormat fromMapped[Item, A, B] to StringFormat[Mapped[Item, A, B]]

Inherited by implicit conversion Ensuring fromMapped[Item, A, B] to Ensuring[Mapped[Item, A, B]]

Inherited by implicit conversion ArrowAssoc fromMapped[Item, A, B] to ArrowAssoc[Mapped[Item, A, B]]

Ungrouped