commit | 25b7f9082b5cccf437c122a8ba13f0732a784a41 | [log] [tgz] |
---|---|---|
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | Fri Dec 17 06:02:11 2021 +0100 |
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | Fri Dec 17 06:02:11 2021 +0100 |
tree | 08a05184f5de4ded89a28f3bb343a20fa79b28ef | |
parent | 5803c9a743ba03507c097c3feb377d81de137231 [diff] |
Use API Guardian annotations. Change-Id: Icfd30e9b06e5c7ee9f51c6879bfe4978a6f44600
This library provides a GVariant parser in pure Java.
The foundational class is Decoder
.
Instances of Decoder
read a given concrete subtype of Value
from a ByteBuffer. The class also contains factory methods to create those instances.
The various subclasses of Decoder
together implement the GVariant serialization specification.
To parse a GVariant value of type "a(si)"
, which is an array of pairs of String and int
, you can use the following code:
record ExampleRecord(String s, int i) {} var decoder = Decoder.ofArray( Decoder.ofStructure( ExampleRecord.class, Decoder.ofString(StandardCharsets.UTF_8), Decoder.ofInt().withByteOrder(ByteOrder.LITTLE_ENDIAN))); byte[] bytes = ...; List<ExampleRecord> example = decoder.decode(ByteBuffer.wrap(bytes));