Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make example work on armv7, use JNA to invoke rust instead of JNI #134

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ buildscript {
Properties versionProperties = new Properties()
versionProperties.load(new FileInputStream("$project.rootDir/version.properties"))

ext.kotlin_version = '1.3.50'
ext.kotlin_version = '1.6.0'
ext.agp_version = '4.0.1'
ext.plugin_version = versionProperties.getProperty("version")

Expand Down
20 changes: 15 additions & 5 deletions samples/app/build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
buildscript {
ext.agp_version = '7.0.0'
//ext.agp_version = '7.0.0'
//ext.agp_version = '4.0.1'
ext.agp_version = '7.1.1'
repositories {
google()
//maven {
// url 'file://C:\\Users\\josel\\work\\qaxh3_dev\\fhe-windows\\rust-android-gradle\\plugin\\build\\libs'
//}
maven {
url "https://plugins.gradle.org/m2/"
}
Expand All @@ -16,13 +21,13 @@ apply plugin: 'com.android.application'
apply plugin: 'org.mozilla.rust-android-gradle.rust-android'

android {
compileSdkVersion 27
ndkVersion "23.1.7779620"
compileSdkVersion 31
ndkVersion "25.2.9519653"

defaultConfig {
applicationId "com.nishtahir.androidrust"
minSdkVersion 21
targetSdkVersion 27
targetSdkVersion 31
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
Expand All @@ -37,8 +42,12 @@ android {

cargo {
module = "../rust"
targets = ["x86_64", "arm64"]
targets = ["x86_64", "arm64", "arm"]
libname = "rust"
pythonCommand = "python"
cargoCommand = System.properties['user.home'] + "\\.cargo\\bin\\cargo.exe"
rustcCommand = System.properties['user.home'] + "\\.cargo\\bin\\rustc.exe"
rustupChannel = "stable"
}

repositories {
Expand All @@ -52,6 +61,7 @@ dependencies {
})
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'net.java.dev.jna:jna:4.4.0@aar'
testImplementation 'junit:junit:4.12'
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
import android.util.Log;
import android.widget.TextView;

import com.sun.jna.Library;
import com.sun.jna.Native;
import com.sun.jna.Callback;
public class MainActivity extends AppCompatActivity implements JNICallback {

private static final String TAG = "MainActivity";
Expand All @@ -16,13 +19,20 @@ public class MainActivity extends AppCompatActivity implements JNICallback {

TextView textView;

private final Callback viaJNA = new Callback() {
public void callback(String string) {
Log.i("rust","From JNA: " + string);
textView.setText("From JNA: " + string);
}
};
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
textView = (TextView) findViewById(R.id.sample_text);

invokeCallbackViaJNI(this);
LibService.instance.invokeCallbackViaJNA(viaJNA);
}

/**
Expand All @@ -33,6 +43,15 @@ protected void onCreate(Bundle savedInstanceState) {

@Override
public void callback(String string) {
Log.i("rust","From JNI: " + string);
textView.append("From JNI: " + string + "\n");
}

}

interface LibService extends Library {
public static final String JNALib = "rust";
public static final LibService instance = Native.loadLibrary(JNALib, LibService.class);

void invokeCallbackViaJNA(Callback callback);
}
4 changes: 2 additions & 2 deletions samples/rust/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ pub type Callback = unsafe extern "C" fn(*const c_char) -> ();
#[no_mangle]
#[allow(non_snake_case)]
pub extern "C" fn invokeCallbackViaJNA(callback: Callback) {
let s = CString::new("Hello from Rust").unwrap();
let s = CString::new("Hello from Rust JNA").unwrap();
unsafe { callback(s.as_ptr()); }
}

Expand All @@ -22,7 +22,7 @@ pub extern "C" fn Java_com_nishtahir_androidrust_MainActivity_invokeCallbackViaJ
_class: JClass,
callback: JObject
) {
let s = String::from("Hello from Rust");
let s = String::from("Hello from Rust JNI");
let response = env.new_string(&s)
.expect("Couldn't create java string!");
env.call_method(callback, "callback", "(Ljava/lang/String;)V",
Expand Down