commit | 55c34814bc7e6749a1530e7b36b51e0bc6358df3 | [log] [tgz] |
---|---|---|
author | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | Tue Dec 14 21:51:10 2021 +0100 |
committer | Matthias Andreas Benkard <code@mail.matthias.benkard.de> | Tue Dec 14 21:51:10 2021 +0100 |
tree | 6405ff6b5904dc96dd27ecea98ef2b59fa30a4d4 | |
parent | 34430180f83a9e52ead4f919731f955bbc3b3b79 [diff] |
Remove Variant class, parse variants into Object. Change-Id: I9b4b3079aea42b74f6fcf6341305b6fded9234f4
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));