-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add ndk-context. * Add doc comment for `initialize_android_context`. * Add links to README and some metadata. * Fix ndk-build doc link. * Deprecate `native_activity`. * Revert "Deprecate `native_activity`." This reverts commit bb117f0. * Address review comments. * Panic if initialized more than once. * Update ndk-examples/examples/jni_audio.rs Co-authored-by: Marijn Suijten <[email protected]> * Update ndk-examples/examples/jni_audio.rs Co-authored-by: Marijn Suijten <[email protected]> * Use cast() function * fmt * Update ndk-context/src/lib.rs Co-authored-by: Marijn Suijten <[email protected]> * Address review comments. * Update ndk-context/src/lib.rs Co-authored-by: Marijn Suijten <[email protected]> * Add deprecation warning. * Prepare release. Co-authored-by: Marijn Suijten <[email protected]>
- Loading branch information
Showing
13 changed files
with
130 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
[workspace] | ||
members = [ | ||
"ndk", | ||
"ndk-context", | ||
"ndk-macro", | ||
"ndk-build", | ||
"ndk-examples", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Unreleased | ||
|
||
# 0.1.0 (2022-02-14) | ||
|
||
- Initial release! 🎉 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
[package] | ||
name = "ndk-context" | ||
version = "0.1.0" | ||
authors = ["The Rust Windowing contributors"] | ||
edition = "2021" | ||
description = "Handles for accessing Android APIs" | ||
license = "MIT OR Apache-2.0" | ||
keywords = ["android", "ndk", "apk", "jni"] | ||
documentation = "https://docs.rs/ndk-context" | ||
homepage = "https://github.com/rust-windowing/android-ndk-rs" | ||
repository = "https://github.com/rust-windowing/android-ndk-rs" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
# ndk-context | ||
|
||
Provides a stable api to rust crates for interfacing with the android platform. It is | ||
initialized by the runtime, usually [__ndk-glue__](https://crates.io/crates/ndk-glue), | ||
but could also be initialized by java or kotlin code when embedding in an existing android | ||
project. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
//! Provides a stable api to rust crates for interfacing with the android platform. It is | ||
//! initialized by the runtime, usually [__ndk-glue__](https://crates.io/crates/ndk-glue), | ||
//! but could also be initialized by java or kotlin code when embedding in an existing android | ||
//! project. | ||
//! | ||
//! ```no_run | ||
//! let ctx = ndk_context::android_context(); | ||
//! let vm = unsafe { jni::JavaVM::from_raw(ctx.vm().cast()) }?; | ||
//! let env = vm.attach_current_thread(); | ||
//! let class_ctx = env.find_class("android/content/Context")?; | ||
//! let audio_service = env.get_static_field(class_ctx, "AUDIO_SERVICE", "Ljava/lang/String;")?; | ||
//! let audio_manager = env | ||
//! .call_method( | ||
//! ctx.context() as jni::sys::jobject, | ||
//! "getSystemService", | ||
//! "(Ljava/lang/String;)Ljava/lang/Object;", | ||
//! &[audio_service], | ||
//! )? | ||
//! .l()?; | ||
//! ``` | ||
use std::ffi::c_void; | ||
|
||
static mut ANDROID_CONTEXT: Option<AndroidContext> = None; | ||
|
||
/// [`AndroidContext`] provides the pointers required to interface with the jni on android | ||
/// platforms. | ||
#[derive(Clone, Copy, Debug)] | ||
pub struct AndroidContext { | ||
java_vm: *mut c_void, | ||
context_jobject: *mut c_void, | ||
} | ||
|
||
impl AndroidContext { | ||
/// A handle to the `JavaVM` object. | ||
/// | ||
/// Usage with [__jni__](https://crates.io/crates/jni) crate: | ||
/// ```no_run | ||
/// let ctx = ndk_context::android_context(); | ||
/// let vm = unsafe { jni::JavaVM::from_raw(ctx.vm().cast()) }?; | ||
/// let env = vm.attach_current_thread(); | ||
/// ``` | ||
pub fn vm(self) -> *mut c_void { | ||
self.java_vm | ||
} | ||
|
||
/// A handle to an [android.content.Context](https://developer.android.com/reference/android/content/Context). | ||
/// In most cases this will be a ptr to an `Activity`, but this isn't guaranteed. | ||
/// | ||
/// Usage with [__jni__](https://crates.io/crates/jni) crate: | ||
/// ```no_run | ||
/// let ctx = ndk_context::android_context(); | ||
/// let vm = unsafe { jni::JavaVM::from_raw(ctx.vm().cast()) }?; | ||
/// let env = vm.attach_current_thread(); | ||
/// let class_ctx = env.find_class("android/content/Context")?; | ||
/// let audio_service = env.get_static_field(class_ctx, "AUDIO_SERVICE", "Ljava/lang/String;")?; | ||
/// let audio_manager = env | ||
/// .call_method( | ||
/// ctx.context() as jni::sys::jobject, | ||
/// "getSystemService", | ||
/// "(Ljava/lang/String;)Ljava/lang/Object;", | ||
/// &[audio_service], | ||
/// )? | ||
/// .l()?; | ||
/// ``` | ||
pub fn context(self) -> *mut c_void { | ||
self.context_jobject | ||
} | ||
} | ||
|
||
/// Main entry point to this crate. Returns an [`AndroidContext`]. | ||
pub fn android_context() -> AndroidContext { | ||
unsafe { ANDROID_CONTEXT.expect("android context was not initialized") } | ||
} | ||
|
||
/// Initializes the [`AndroidContext`]. [`AndroidContext`] is initialized by [__ndk-glue__](https://crates.io/crates/ndk-glue) | ||
/// before `main` is called. | ||
/// | ||
/// # Safety | ||
/// | ||
/// The pointers must be valid and this function must be called exactly once before `main` is | ||
/// called. | ||
pub unsafe fn initialize_android_context(java_vm: *mut c_void, context_jobject: *mut c_void) { | ||
let previous = ANDROID_CONTEXT.replace(AndroidContext { | ||
java_vm, | ||
context_jobject, | ||
}); | ||
assert!(previous.is_none()); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -154,5 +154,6 @@ fn main() { | |
} | ||
|
||
// Stop the activity | ||
#[allow(deprecated)] | ||
ndk_glue::native_activity().finish() | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters