KotlinRustProto
a prototype project integrating jni rust into Kotlin and using protobuf to make them work together
How to start
add a RPC call in DroidBackendService
service DroidBackendService {
// add a new rpc call here
rpc Test(TestIn) returns (TestOut);
}
message TestIn {
string A = 1;
string B = 2;
}
message TestOut {
string A = 1;
}
Do the small implementation work
- try building and wait, or go get a coffee to get the compiling failure
- implement the rust code
// import new type
use crate::proto::TestOut;
impl DroidBackendService for Backend {
// add new implementation
fn test(&self, input: TestIn) -> BackendResult
{
Ok(TestOut {
a : "test".into(),
})
}
- build again, and try it out in Kotin
RustCore.navHelper.test(
Proto.TestIn.newBuilder().setA("aa").setB("bb").build(),
object : RustCore.Callback
{
override fun onSuccess(arg: Proto.TestOut) {
// since we've set it as "test"
if (arg.a != "test") {
throw RuntimeException("ooops in onSuccess")
}
}
override fun onErr(code: Int, msg: String) {
throw RuntimeException("ooops in onErr")
}
}
);
What's more
My first goal is to embed a high performance kvstore into Kotlin, namely lmdb, sled, etc. Then it goes to what it likes now after some iterations and could do some more. here is how I make it work step by step...
As it works in this demo run each function for 10000 times, and here is the result, in my real phone (Xiaomi 10).
Function | time used |
---|---|
empty jni call | 3ms |
Java Hashmap set | 200ms |
Java Hashmap get | 90ms |
Jni cocurrent Hashmap set | 200ms |
Jni cocurrent Hashmap get | 116ms |
Jni cocurrent Hashmap with Proto encoding / decoding | 200ms |
MMKV write | 189ms |
MMKV read | 98ms |
Sled write without Proto | 200ms |
Sled write with Proto | 347ms |
Sled read with Proto | 200ms |
Lmdb write with Proto | 4300ms |
Lmdb read with Proto | 192ms |
SharedPrefence write | 48550ms |
SharedPrefence read | 81ms |
- MMKV is the fastest solution, really close to native hashmap.
- Protobuf encoding / decoding is a bottleneck. It may takes an extra 100ms. On that note, sled is quite close to the MMKV if we don't count the protobuf thing in. (Sled write without proto)
- Sled outperforms SharedPrefence & Lmdb, a lot. Of course, rust is stable enough, but to put it into real productions, there is more work to do, something like
- add multiprocess support
- space error handling
As a toy project, it works. Maybe with protobuf, the performance is not good enough. But on the other hand, with protobuf support, we could build some core features in Rust and integrate them with other languages like swift, flutter etc.
happy hacking