1a3621b727
1. inline everything 2. change `check_status` and `type_of` to macro 3. provide #[module_exports] macro 4. remove debug and repr[transparent] for ffi struct
27 lines
813 B
Rust
27 lines
813 B
Rust
use std::convert::TryInto;
|
|
|
|
use napi::{CallContext, JsExternal, JsNumber, JsObject, Result};
|
|
|
|
struct NativeObject {
|
|
count: i32,
|
|
}
|
|
|
|
#[js_function(1)]
|
|
pub fn create_external(ctx: CallContext) -> Result<JsExternal> {
|
|
let count = ctx.get::<JsNumber>(0)?.try_into()?;
|
|
let native = NativeObject { count };
|
|
ctx.env.create_external(native)
|
|
}
|
|
|
|
#[js_function(1)]
|
|
pub fn get_external_count(ctx: CallContext) -> Result<JsNumber> {
|
|
let attached_obj = ctx.get::<JsExternal>(0)?;
|
|
let native_object = ctx.env.get_value_external::<NativeObject>(&attached_obj)?;
|
|
ctx.env.create_int32(native_object.count)
|
|
}
|
|
|
|
pub fn register_js(exports: &mut JsObject) -> Result<()> {
|
|
exports.create_named_method("createExternal", create_external)?;
|
|
exports.create_named_method("getExternalCount", get_external_count)?;
|
|
Ok(())
|
|
}
|