Class/Object

ujson

InputStreamParser

Related Docs: object InputStreamParser | package ujson

Permalink

final class InputStreamParser[J] extends ByteParser[J] with BufferingInputStreamParser

Parser that reads in bytes from an InputStream, buffering them in memory until a reset call discards them.

Mostly the same as ByteArrayParser, except using an UberBuffer rather than reading directly from an Array[Byte].

Generally not meant to be used directly, but via ujson.Readable.fromReadable

Linear Supertypes
BufferingInputStreamParser, ByteParser[J], BufferingByteParser, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. InputStreamParser
  2. BufferingInputStreamParser
  3. ByteParser
  4. BufferingByteParser
  5. AnyRef
  6. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new InputStreamParser(inputStream: InputStream, minBufferStartSize: Int = ..., maxBufferStartSize: Int = ...)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def appendBytesToBuilder(elems: ByteBuilder, elemsStart: Int, elemsLength: Int): Unit

    Permalink
    Definition Classes
    BufferingByteParser
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def atEof(i: Int): Boolean

    Permalink

    Return true iff 'i' is at or beyond the end of the input (EOF).

    Return true iff 'i' is at or beyond the end of the input (EOF).

    Attributes
    protected[this]
    Definition Classes
    ByteParser
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. final def close(): Unit

    Permalink

    Should be called when parsing is finished.

    Should be called when parsing is finished.

    Attributes
    protected[this]
    Definition Classes
    InputStreamParserByteParser
  9. def collectionEndFor(stackHead: ObjArrVisitor[_, _]): Int

    Permalink
    Definition Classes
    ByteParser
  10. final def descape(i: Int): Char

    Permalink

    Generate a Char from the hex digits of "ሴ" (i.e.

    Generate a Char from the hex digits of "ሴ" (i.e. "1234").

    NOTE: This is only capable of generating characters from the basic plane. This is why it can only return Char instead of Int.

    Attributes
    protected[this]
    Definition Classes
    ByteParser
  11. def die(i: Int, msg: String): Nothing

    Permalink

    Used to generate error messages with character info and offsets.

    Used to generate error messages with character info and offsets.

    Attributes
    protected[this]
    Definition Classes
    ByteParser
  12. def dieWithFailureMessage(i: Int, state: Int): Nothing

    Permalink
    Definition Classes
    ByteParser
  13. def dropBufferUntil(i: Int): Unit

    Permalink
    Definition Classes
    BufferingByteParser
  14. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  15. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  16. def failIfNotData(state: Int, i: Int): Unit

    Permalink
    Definition Classes
    ByteParser
  17. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. def getBufferCopyCount(): Int

    Permalink
    Definition Classes
    BufferingByteParser
  19. def getBufferGrowCount(): Int

    Permalink
    Definition Classes
    BufferingByteParser
  20. def getBufferLength(): Int

    Permalink
    Definition Classes
    BufferingByteParser
  21. def getByteSafe(i: Int): Byte

    Permalink
    Definition Classes
    ByteParser → BufferingByteParser
  22. def getByteUnsafe(i: Int): Byte

    Permalink
    Definition Classes
    BufferingByteParser
  23. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  24. def getLastIdx: Int

    Permalink
    Definition Classes
    BufferingByteParser
  25. def growBuffer(until: Int): Unit

    Permalink
    Definition Classes
    BufferingByteParser
  26. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  27. val inputStream: InputStream

    Permalink
    Definition Classes
    InputStreamParser → BufferingInputStreamParser
  28. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  29. val maxBufferStartSize: Int

    Permalink
    Definition Classes
    InputStreamParser → BufferingInputStreamParser
  30. val minBufferStartSize: Int

    Permalink
    Definition Classes
    InputStreamParser → BufferingInputStreamParser
  31. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  32. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  33. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  34. final def parse(facade: Visitor[_, J]): J

    Permalink

    Parse the JSON document into a single JSON value.

    Parse the JSON document into a single JSON value.

    The parser considers documents like '333', 'true', and '"foo"' to be valid, as well as more traditional documents like [1,2,3,4,5]. However, multiple top-level objects are not allowed.

    Definition Classes
    ByteParser
  35. final def parseFalse(i: Int, facade: Visitor[_, J]): J

    Permalink

    Parse the JSON constant "false".

    Parse the JSON constant "false".

    Note that this method assumes that the first character has already been checked.

    Attributes
    protected[this]
    Definition Classes
    ByteParser
  36. final def parseNested(state: Int, i: Int, stackHead: ObjArrVisitor[_, J], stackTail: List[ObjArrVisitor[_, J]]): (J, Int)

    Permalink

    Tail-recursive parsing method to do the bulk of JSON parsing.

    Tail-recursive parsing method to do the bulk of JSON parsing.

    This single method manages parser states, data, etc. Except for parsing non-recursive values (like strings, numbers, and constants) all important work happens in this loop (or in methods it calls, like reset()).

    Currently the code is optimized to make use of switch statements. Future work should consider whether this is better or worse than manually constructed if/else statements or something else. Also, it may be possible to reorder some cases for speed improvements.

    Attributes
    protected[this]
    Definition Classes
    ByteParser
    Annotations
    @tailrec()
  37. final def parseNull(i: Int, facade: Visitor[_, J]): J

    Permalink

    Parse the JSON constant "null".

    Parse the JSON constant "null".

    Note that this method assumes that the first character has already been checked.

    Attributes
    protected[this]
    Definition Classes
    ByteParser
  38. final def parseNum(i: Int, ctxt: ObjArrVisitor[Any, J], facade: Visitor[_, J]): Int

    Permalink

    Parse the given number, and add it to the given context.

    Parse the given number, and add it to the given context.

    We don't actually instantiate a number here, but rather pass the string of for future use. Facades can choose to be lazy and just store the string. This ends up being way faster and has the nice side-effect that we know exactly how the user represented the number.

    Attributes
    protected[this]
    Definition Classes
    ByteParser
  39. final def parseNumTopLevel(i: Int, facade: Visitor[_, J]): (J, Int)

    Permalink

    Parse the given number, and add it to the given context.

    Parse the given number, and add it to the given context.

    This method is a bit slower than parseNum() because it has to be sure it doesn't run off the end of the input.

    Normally (when operating in rparse in the context of an outer array or object) we don't need to worry about this and can just grab characters, because if we run out of characters that would indicate bad input. This is for cases where the number could possibly be followed by a valid EOF.

    This method has all the same caveats as the previous method.

    Attributes
    protected[this]
    Definition Classes
    ByteParser
  40. final def parseStringComplex(i0: Int): Int

    Permalink

    Parse a string that is known to have escape sequences.

    Parse a string that is known to have escape sequences.

    Attributes
    protected[this]
    Definition Classes
    ByteParser
  41. final def parseStringKey(i: Int, stackHead: ObjArrVisitor[_, J]): Int

    Permalink
    Attributes
    protected[this]
    Definition Classes
    ByteParser
  42. final def parseStringSimple(i: Int): Int

    Permalink

    See if the string has any escape sequences.

    See if the string has any escape sequences. If not, return the end of the string. If so, bail out and return -1.

    This method expects the data to be in UTF-16 and accesses it as chars.

    Attributes
    protected[this]
    Definition Classes
    ByteParser
  43. def parseStringToOutputBuilder(i: Int, k: Int): Int

    Permalink
    Definition Classes
    ByteParser
  44. final def parseStringTopLevel(i: Int, facade: Visitor[_, J]): (J, Int)

    Permalink
    Attributes
    protected[this]
    Definition Classes
    ByteParser
  45. final def parseStringValue(i: Int, stackHead: ObjArrVisitor[_, J]): Int

    Permalink

    Parse the string according to JSON rules, and add to the given context.

    Parse the string according to JSON rules, and add to the given context.

    This method expects the data to be in UTF-16, and access it as Char. It performs the correct checks to make sure that we don't interpret a multi-char code point incorrectly.

    Attributes
    protected[this]
    Definition Classes
    ByteParser
  46. final def parseTopLevel(i: Int, facade: Visitor[_, J]): (J, Int)

    Permalink
    Attributes
    protected[this]
    Definition Classes
    ByteParser
  47. final def parseTopLevel0(i: Int, facade: Visitor[_, J]): (J, Int)

    Permalink

    Parse and return the next JSON value and the position beyond it.

    Parse and return the next JSON value and the position beyond it.

    Attributes
    protected[this]
    Definition Classes
    ByteParser
    Annotations
    @tailrec()
  48. final def parseTrue(i: Int, facade: Visitor[_, J]): J

    Permalink

    Parse the JSON constant "true".

    Parse the JSON constant "true".

    Note that this method assumes that the first character has already been checked.

    Attributes
    protected[this]
    Definition Classes
    ByteParser
  49. def readDataIntoBuffer(buffer: Array[Byte], bufferOffset: Int): (Array[Byte], Boolean, Int)

    Permalink
    Definition Classes
    BufferingInputStreamParser → BufferingByteParser
  50. def reject(j: Int): PartialFunction[Throwable, Nothing]

    Permalink
    Definition Classes
    ByteParser
  51. def requestUntil(until: Int): Boolean

    Permalink
    Attributes
    protected
    Definition Classes
    BufferingByteParser
  52. def requestUntilOrThrow(i: Int): Unit

    Permalink
    Definition Classes
    ByteParser
  53. def sliceArr(i: Int, n: Int): (Array[Byte], Int, Int)

    Permalink
    Definition Classes
    BufferingByteParser
  54. def sliceString(i: Int, k: Int): String

    Permalink
    Definition Classes
    BufferingByteParser
  55. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  56. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  57. def tryCloseCollection(stackHead: ObjArrVisitor[_, J], stackTail: List[ObjArrVisitor[_, J]], i: Int): Option[(J, Int)]

    Permalink
    Definition Classes
    ByteParser
  58. def unsafeCharSeqForRange(start: Int, length: Int): WrapByteArrayCharSeq

    Permalink
    Definition Classes
    BufferingByteParser
  59. def visitFloat64StringPartsWithWrapper(facade: Visitor[_, J], decIndex: Int, expIndex: Int, i: Int, j: Int): J

    Permalink
    Definition Classes
    ByteParser
  60. def visitString(i: Int, s: CharSequence, stackHead: ObjArrVisitor[_, J]): Unit

    Permalink
    Definition Classes
    ByteParser
  61. def visitStringKey(i: Int, s: CharSequence, stackHead: ObjArrVisitor[_, J]): Unit

    Permalink
    Definition Classes
    ByteParser
  62. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  63. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  64. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from BufferingInputStreamParser

Inherited from ByteParser[J]

Inherited from BufferingByteParser

Inherited from AnyRef

Inherited from Any

Ungrouped