Skip to content

a prototype project integrating jni rust into Kotlin and using protobuf to make them work together

License

Notifications You must be signed in to change notification settings

gaxxx/KotlinRustProto

Repository files navigation

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

  1. try building and wait, or go get a coffee to get the compiling failure
  2. implement the rust code
// import new type
use crate::proto::TestOut;

impl DroidBackendService for Backend {

// add new implementation
fn test(&self, input: TestIn) -> BackendResult<TestOut> {
        Ok(TestOut {
            a : "test".into(),
        })
    }
  
  1. build again, and try it out in Kotin
RustCore.navHelper.test(
            Proto.TestIn.newBuilder().setA("aa").setB("bb").build(),
            object : RustCore.Callback<Proto.TestOut> {
                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
  1. MMKV is the fastest solution, really close to native hashmap.
  2. 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)
  3. 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

About

a prototype project integrating jni rust into Kotlin and using protobuf to make them work together

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages