2023-03-16 01:03:45 +03:00
# Binary tools and BiPack serializer
2023-02-03 15:10:43 +03:00
2024-02-18 22:50:37 +03:00
Multiplatform binary tools collection, including portable serialization of the compact and fast [Bipack] format, and
many useful tools to work with binary data, like CRC family checksums, dumps, etc. It works well also in the browser and
in native targets.
2023-02-03 15:10:43 +03:00
2024-01-28 16:06:48 +03:00
# Recent changes
2024-08-24 08:00:01 +03:00
- 0.1.7 built with kotlin 2.0.20 which contains important fix in wasmJS
2024-07-27 20:00:36 +03:00
- 0.1.6 add many useful features, added support to wasmJS and all other platforms. Note to wasmJS: it appears to be a bug in wasm compiler so BipackDecoder could cause wasm loading problem.
2024-02-18 22:50:37 +03:00
- 0.1.1: added serialized KVStorage with handy implementation on JVM and JS platforms and some required synchronization
tools.
-
2024-01-28 16:06:48 +03:00
- 0.1.0: uses modern kotlin 1.9.*, fixes problem with singleton or empty/object serialization
2024-02-18 22:50:37 +03:00
The last 1.8-based version is 0.0.8. Some fixes are not yet backported to it pls leave an issue of needed.
2024-01-28 16:06:48 +03:00
2024-08-24 08:14:10 +03:00
# Documentation
2024-08-24 08:13:38 +03:00
Aside of the samples in this readme please see [library documentation ](https://code.sergeych.net/docs/mp_bintools/ ).
2023-03-16 01:03:45 +03:00
# Usage
2023-03-11 16:35:37 +03:00
2023-04-02 07:10:44 +03:00
Add our maven:
```kotlin
repositories {
// ...
maven("https://gitea.sergeych.net/api/packages/SergeychWorks/maven")
}
```
2024-02-18 22:50:37 +03:00
And add dependency to the proper place in your project like this:
2023-04-02 07:10:44 +03:00
2023-09-28 20:03:47 +03:00
```kotlin
2023-04-02 07:10:44 +03:00
dependencies {
// ...
2024-08-24 08:00:01 +03:00
implementation("net.sergeych:mp_bintools:0.1.7")
2023-04-02 07:10:44 +03:00
}
```
2023-03-11 16:35:37 +03:00
2024-02-18 22:50:37 +03:00
## Calculating CRCs:
~~~kotlin
CRC.crc32("Hello".encodeToByteArray())
CRC.crc16("happy".encodeToByteArray())
CRC.crc8("world".encodeToByteArray())
~~~
## Binary effective serialization with Bipack:
~~~kotlin
@Serializable
data class Foo(val bar: String,buzz: Int)
val foo = Foo("bar", 42)
val bytes = BipackEncoder.encode(foo)
val bar: Foo = BipackDecoder.decode(bytes)
assertEquals(foo, bar)
~~~
## Bipack-based auto-serializing storage:
Allows easily storing whatever `@Serializable` data type using delegates
and more:
~~~kotlin
val storage = defaultNamedStorage("test_mp_bintools")
var foo by s1("unknown") // default value makes it a String
foo = "bar"
// nullable:
var answer: Int? by storage.optStored()
answer = 42
s1.delete("foo")
~~~
## MotherPacker
This conception allows switching encoding on the fly. Create some MotherPacker instance
and pass it to your encoding/decoding code:
~~~kotlin
@Serializable
data class FB1(val foo: Int,val bar: String)
// This is JSON implementation of MotherPacker:
val mp = JsonPacker()
// it packs and unpacks to JSON:
println(mp.pack(mapOf("foo" to 42)).decodeToString())
assertEquals("""{"foo":42}""", mp.pack(mapOf("foo" to 42)).decodeToString())
val x = mp.unpack< FB1 > ("""{"foo":42, "bar": "foo"}""".encodeToByteArray())
assertEquals(42, x.foo)
assertEquals("foo", x.bar)
~~~
There is also [MotherBipack] `MotherPacker` implementation using Bipack. You can add more formats
easily by implementing `MotherPacker` interface.
2023-03-16 01:03:45 +03:00
# Bipack
2023-03-11 16:35:37 +03:00
2023-03-16 01:03:45 +03:00
## Why?
2023-04-02 07:10:44 +03:00
Bipack is a compact and efficient binary serialization library (and format) was designed with the following main goals:
2024-02-18 22:50:37 +03:00
### Allow easy unpacking existing binary structures
2023-04-02 07:10:44 +03:00
2024-02-18 22:50:37 +03:00
Yuo describe your structure as `@Serializable` classes, and - voilà, bipack decodes and encodes it for you! We aim to make it really easy to convert data from other binary formats by adding more format annotations
2023-03-16 01:03:45 +03:00
2023-09-28 20:03:47 +03:00
### Be as compact as possible
2023-03-16 01:03:45 +03:00
2024-02-18 22:50:37 +03:00
For this reason it is a binary notation, it uses binary form for decimal numbers and can use a variety of encoding for
2023-03-16 01:03:45 +03:00
integers:
#### Varint
2024-02-18 22:50:37 +03:00
Variable-length compact encoding is used internally in some cases. It uses a 0x80 bit in every byte to mark continuation.
2023-03-16 01:03:45 +03:00
See `object Varint` .
#### Smartint
2024-02-18 22:50:37 +03:00
Variable-length compact encoding for signed and unsigned integers uses as few bytes as possible to encode integers. It is used automatically when serializing integers. It is slightly more sophisticated than straight `Varint` .
2023-03-16 01:03:45 +03:00
2023-09-28 20:03:47 +03:00
### Do not reveal information about stored data
2023-03-16 01:03:45 +03:00
2024-02-18 22:50:37 +03:00
Many extendable formats, like JSON, BSON, BOSS and may others are keeping data in key-value pairs. While it is good in many aspects, it has some disadvantages: it uses more space, and it reveals inner data structure to the world. It is possible to unpack such formats with zero information about inner structure.
2023-03-16 01:03:45 +03:00
2024-02-18 22:50:37 +03:00
Bipack does not store field names, so it is not possible to unpack or interpret it without knowledge of the data structure. Only probabilistic analysis. Let's not make the life of attacker easier :)
2023-03-16 01:03:45 +03:00
2024-02-18 22:50:37 +03:00
### -- allows upgrading data structures with backward compatibility
2023-03-16 01:03:45 +03:00
2024-02-18 22:50:37 +03:00
The serialization formats of this kind have a dark side: you can't change the structures without either losing backward compatibility with already serialized data or using voluminous boilerplate code to implement some sort of versioning.
2023-03-16 01:03:45 +03:00
2024-02-18 22:50:37 +03:00
Not to waste space
and reveal more information that needed Bipack allows
extending classes marked
as [@Extendable] to be extended with more data _appended to the end of the field list with required default values_ .
For such classes,
Bipack stores the number of actually serialized fields
and automatically uses default values for non-serialized ones when unpacking old data.
2023-03-16 01:03:45 +03:00
2023-09-28 20:03:47 +03:00
### Protect data with framing and CRC
2023-03-16 01:03:45 +03:00
2024-02-18 22:50:37 +03:00
When needed,
a serialization library allow to store/check CRC32 tag of the structure name with
`@Framed` (can be overridden as usual with `@SerialName` ), or be followed with CRC32 of the serialized binary data, that will be checked on deserialization, using `@CrcProtected` . This allows checking the data consistency out of the box and only where needed.
2023-03-16 01:03:45 +03:00
# Usage
2024-02-18 22:50:37 +03:00
Use `kotlinx.serialization` as usual. There are the following Bipack-specific annotations at your disposal (can be
combined):
2023-03-16 01:03:45 +03:00
## @Extendable
2024-02-18 22:50:37 +03:00
Classes marked this way store number of fields. It allows adding to the class data more fields, to the end of the list, with
default initializers, keeping backward compatibility. For example, if you have serialized:
2023-03-16 01:03:45 +03:00
```kotlin
@Serializable
@Extendable
data class foo(val i: Int)
```
and then decided to add a field:
```kotlin
@Serializable
@Extendable
data class foo(val i: Int, val bar: String = "buzz")
```
2024-02-18 22:50:37 +03:00
It adds one or more bytes to the serialized data (field counts in `Varint` format)
2023-03-16 01:03:45 +03:00
2024-02-18 22:50:37 +03:00
Bipack will properly deserialize the data serialized for an old version.
2023-03-16 01:03:45 +03:00
## @CrcProtected
2023-04-02 07:10:44 +03:00
Bipack will calculate and store CRC32 of serialized data at the end, and automatically check it on deserializing
throwing `InvalidFrameCRCException` if it does not match.
2023-03-16 01:03:45 +03:00
2024-02-18 22:50:37 +03:00
It adds four bytes to the serialized data.
2023-03-16 01:03:45 +03:00
## @Framed
2023-04-02 07:10:44 +03:00
Put the CRC32 of the serializing class name (`@SerialName` allows to change it as usual) and checks it on deserializing.
Throws `InvalidFrameHeaderException` if it does not match.
2023-03-16 01:03:45 +03:00
2024-02-18 22:50:37 +03:00
It adds four bytes to the serialized data.
2023-03-16 01:03:45 +03:00
2024-02-18 22:50:37 +03:00
## @Unsigned
2023-03-16 01:03:45 +03:00
2024-02-18 22:50:37 +03:00
This __field annotation__ allows to store __integer fields__ of any size more compact by not saving the sign. It could be applied to both signed and unsigned integers of any size.
2023-03-31 09:10:59 +03:00
## @FixedSize(size)
2023-04-02 07:10:44 +03:00
Use it with fixed-size collections (like hashes, keys, etc.) to not keep collection size in the packed binary. It saves
at least one byte.
2023-04-01 19:17:42 +03:00
## @Fixed
2024-02-18 22:50:37 +03:00
Can be used with any integer type to store/restore it as is, fixed-size, big-endian:
2023-04-01 19:17:42 +03:00
- Short, UShort: 2 bytes
- Int, UInt: 4 bytes
- Long, ULong: 8 bytes
2023-04-02 07:10:44 +03:00
Note that without this modifier all integers are serialized into variable-length compressed format, see class [Smartint]
from this library.
2023-04-01 19:17:42 +03:00
Example:
2023-04-02 07:10:44 +03:00
2023-04-01 19:17:42 +03:00
~~~kotlin
@Serializable
class Foo(
2023-04-02 07:10:44 +03:00
@Fixed
val eightBytesLongInt: Long
2023-04-01 19:17:42 +03:00
)
// so:
assertEquals("00 00 00 01 00 00 00 02", BipackEncoder.encode(Foo(0x100000002)).encodeToHex())
~~~