Interface JsonParser

  • All Superinterfaces:
    Handler<Buffer>, ReadStream<JsonEvent>, StreamBase

    public interface JsonParser
    extends Handler<Buffer>, ReadStream<JsonEvent>
    A parser class which allows to incrementally parse json elements and emit json parse events instead of parsing a json element fully. This parser is convenient for parsing large json structures.

    The parser also parses concatenated json streams or line delimited json streams.

    The parser can also parse entire object or array when it is convenient, for instance a very large array of small objects can be parsed efficiently by handling array start/end and object events.

    Whenever the parser fails to parse or process the stream, the exceptionHandler(Handler) is called with the cause of the failure and the current handling stops. After such event, the parser should not handle data anymore.

    Author:
    Julien Viet
    • Method Detail

      • newParser

        static JsonParser newParser()
        Create a new JsonParser instance.
      • end

        void end()
        End the stream, this must be called after all the json stream has been processed.
      • objectEventMode

        JsonParser objectEventMode()
        Flip the parser to emit a stream of events for each new json object.
        Returns:
        a reference to this, so the API can be used fluently
      • objectValueMode

        JsonParser objectValueMode()
        Flip the parser to emit a single value event for each new json object.

        Json object currently streamed won't be affected.
        Returns:
        a reference to this, so the API can be used fluently
      • arrayEventMode

        JsonParser arrayEventMode()
        Flip the parser to emit a stream of events for each new json array.
        Returns:
        a reference to this, so the API can be used fluently
      • arrayValueMode

        JsonParser arrayValueMode()
        Flip the parser to emit a single value event for each new json array.

        Json array currently streamed won't be affected.
        Returns:
        a reference to this, so the API can be used fluently
      • pause

        JsonParser pause()
        Description copied from interface: ReadStream
        Pause the ReadStream, it sets the buffer in fetch mode and clears the actual demand.

        While it's paused, no data will be sent to the data handler.

        Specified by:
        pause in interface ReadStream<JsonEvent>
        Returns:
        a reference to this, so the API can be used fluently
      • resume

        JsonParser resume()
        Description copied from interface: ReadStream
        Resume reading, and sets the buffer in flowing mode.

        If the ReadStream has been paused, reading will recommence on it.

        Specified by:
        resume in interface ReadStream<JsonEvent>
        Returns:
        a reference to this, so the API can be used fluently
      • fetch

        JsonParser fetch​(long amount)
        Description copied from interface: ReadStream
        Fetch the specified amount of elements. If the ReadStream has been paused, reading will recommence with the specified amount of items, otherwise the specified amount will be added to the current stream demand.
        Specified by:
        fetch in interface ReadStream<JsonEvent>
        Returns:
        a reference to this, so the API can be used fluently
      • endHandler

        JsonParser endHandler​(Handler<Void> endHandler)
        Description copied from interface: ReadStream
        Set an end handler. Once the stream has ended, and there is no more data to be read, this handler will be called.
        Specified by:
        endHandler in interface ReadStream<JsonEvent>
        Returns:
        a reference to this, so the API can be used fluently