All Downloads are FREE. Search and download functionalities are using the official Maven repository.

lluxio-shaded-hadoop3-client.305.source-code.parsetools.adoc Maven / Gradle / Ivy

== Record Parser

The record parser allows you to easily parse protocols which are delimited by a sequence of bytes, or fixed
size records. It transforms a sequence of input buffer to a sequence of buffer structured as configured (either
fixed size or separated records).

For example, if you have a simple ASCII text protocol delimited by '\n' and the input is the following:

[source]
----
buffer1:HELLO\nHOW ARE Y
buffer2:OU?\nI AM
buffer3: DOING OK
buffer4:\n
----

The record parser would produce
[source]
----
buffer1:HELLO
buffer2:HOW ARE YOU?
buffer3:I AM DOING OK
----

Let's see the associated code:

[source, $lang]
----
{@link examples.ParseToolsExamples#recordParserExample1()}
----

You can also produce fixed sized chunks as follows:

[source, $lang]
----
{@link examples.ParseToolsExamples#recordParserExample2()}
----

For more details, check out the {@link io.vertx.core.parsetools.RecordParser} class.

== Json Parser

You can easily parse JSON structures but that requires to provide the JSON content at once, but it
may not be convenient when you need to parse very large structures.

The non-blocking JSON parser is an event driven parser able to deal with very large structures.
It transforms a sequence of input buffer to a sequence of JSON parse events.

[source, $lang]
----
{@link examples.ParseToolsExamples#jsonParserExample1()}
----

The parser is non-blocking and emitted events are driven by the input buffers.

[source, $lang]
----
{@link examples.ParseToolsExamples#jsonParserExample2}
----

Event driven parsing provides more control but comes at the price of dealing with fine grained events, which can be
inconvenient sometimes. The JSON parser allows you to handle JSON structures as values when it is desired:

[source, $lang]
----
{@link examples.ParseToolsExamples#jsonParserExample3}
----

The value mode can be set and unset during the parsing allowing you to switch between fine grained
events or JSON object value events.

[source, $lang]
----
{@link examples.ParseToolsExamples#jsonParserExample4}
----

You can do the same with arrays as well

[source, $lang]
----
{@link examples.ParseToolsExamples#jsonParserExample5}
----

You can also decode POJOs

[source, $lang]
----
{@link examples.ParseToolsExamples#jsonParserExample6}
----

Whenever the parser fails to process a buffer, an exception will be thrown unless you set an exception handler:

[source, $lang]
----
{@link examples.ParseToolsExamples#jsonParserExample7}
----

The parser also parses json streams:

- concatenated json streams: `{"temperature":30}{"temperature":50}`
- line delimited json streams: `{"an":"object"}\r\n3\r\n"a string"\r\nnull`

For more details, check out the {@link io.vertx.core.parsetools.JsonParser} class.




© 2015 - 2024 Weber Informatics LLC | Privacy Policy