fix(napi-derive): missing wrap in NAPI-RS created class instance
This commit is contained in:
parent
4e4b160f3a
commit
76798a4343
6 changed files with 26 additions and 6 deletions
|
@ -170,25 +170,37 @@ impl NapiStruct {
|
||||||
quote! {
|
quote! {
|
||||||
impl napi::bindgen_prelude::ToNapiValue for #name {
|
impl napi::bindgen_prelude::ToNapiValue for #name {
|
||||||
unsafe fn to_napi_value(
|
unsafe fn to_napi_value(
|
||||||
env: napi::bindgen_prelude::sys::napi_env, val: #name
|
env: napi::sys::napi_env, val: #name
|
||||||
) -> napi::bindgen_prelude::Result<napi::bindgen_prelude::sys::napi_value> {
|
) -> napi::Result<napi::bindgen_prelude::sys::napi_value> {
|
||||||
if let Some(ctor_ref) = napi::bindgen_prelude::get_class_constructor(#js_name_str) {
|
if let Some(ctor_ref) = napi::bindgen_prelude::get_class_constructor(#js_name_str) {
|
||||||
let mut ctor = std::ptr::null_mut();
|
let mut ctor = std::ptr::null_mut();
|
||||||
|
|
||||||
napi::bindgen_prelude::check_status!(
|
napi::check_status!(
|
||||||
napi::bindgen_prelude::sys::napi_get_reference_value(env, ctor_ref, &mut ctor),
|
napi::sys::napi_get_reference_value(env, ctor_ref, &mut ctor),
|
||||||
"Failed to get constructor of class `{}`",
|
"Failed to get constructor of class `{}`",
|
||||||
#js_name_str
|
#js_name_str
|
||||||
)?;
|
)?;
|
||||||
|
|
||||||
let mut result = std::ptr::null_mut();
|
let mut result = std::ptr::null_mut();
|
||||||
napi::bindgen_prelude::___CALL_FROM_FACTORY.store(true, std::sync::atomic::Ordering::Relaxed);
|
napi::bindgen_prelude::___CALL_FROM_FACTORY.store(true, std::sync::atomic::Ordering::Relaxed);
|
||||||
napi::bindgen_prelude::check_status!(
|
napi::check_status!(
|
||||||
napi::bindgen_prelude::sys::napi_new_instance(env, ctor, 0, std::ptr::null_mut(), &mut result),
|
napi::sys::napi_new_instance(env, ctor, 0, std::ptr::null_mut(), &mut result),
|
||||||
"Failed to construct class `{}`",
|
"Failed to construct class `{}`",
|
||||||
#js_name_str
|
#js_name_str
|
||||||
)?;
|
)?;
|
||||||
napi::bindgen_prelude::___CALL_FROM_FACTORY.store(false, std::sync::atomic::Ordering::Relaxed);
|
napi::bindgen_prelude::___CALL_FROM_FACTORY.store(false, std::sync::atomic::Ordering::Relaxed);
|
||||||
|
napi::check_status!(
|
||||||
|
napi::sys::napi_wrap(
|
||||||
|
env,
|
||||||
|
result,
|
||||||
|
Box::into_raw(Box::new(val)) as *mut std::ffi::c_void,
|
||||||
|
Some(napi::bindgen_prelude::raw_finalize_unchecked::<#name>),
|
||||||
|
std::ptr::null_mut(),
|
||||||
|
std::ptr::null_mut(),
|
||||||
|
),
|
||||||
|
"Failed to wrap native object of class `{}`",
|
||||||
|
#js_name_str
|
||||||
|
)?;
|
||||||
Ok(result)
|
Ok(result)
|
||||||
} else {
|
} else {
|
||||||
Err(napi::bindgen_prelude::Error::new(
|
Err(napi::bindgen_prelude::Error::new(
|
||||||
|
|
|
@ -154,6 +154,7 @@ Generated by [AVA](https://avajs.dev).
|
||||||
export class Bird {␊
|
export class Bird {␊
|
||||||
name: string␊
|
name: string␊
|
||||||
constructor(name: string)␊
|
constructor(name: string)␊
|
||||||
|
getCount(): number␊
|
||||||
}␊
|
}␊
|
||||||
/** Smoking test for type generation */␊
|
/** Smoking test for type generation */␊
|
||||||
export class Blake2BHasher {␊
|
export class Blake2BHasher {␊
|
||||||
|
|
Binary file not shown.
|
@ -129,6 +129,7 @@ test('class', (t) => {
|
||||||
t.is(dog.name, '可乐')
|
t.is(dog.name, '可乐')
|
||||||
t.deepEqual(dog.returnOtherClass(), new Dog('Doge'))
|
t.deepEqual(dog.returnOtherClass(), new Dog('Doge'))
|
||||||
t.deepEqual(dog.returnOtherClassWithCustomConstructor(), new Bird('parrot'))
|
t.deepEqual(dog.returnOtherClassWithCustomConstructor(), new Bird('parrot'))
|
||||||
|
t.is(dog.returnOtherClassWithCustomConstructor().getCount(), 1234)
|
||||||
})
|
})
|
||||||
|
|
||||||
test('class factory', (t) => {
|
test('class factory', (t) => {
|
||||||
|
|
1
examples/napi/index.d.ts
vendored
1
examples/napi/index.d.ts
vendored
|
@ -144,6 +144,7 @@ export class Dog {
|
||||||
export class Bird {
|
export class Bird {
|
||||||
name: string
|
name: string
|
||||||
constructor(name: string)
|
constructor(name: string)
|
||||||
|
getCount(): number
|
||||||
}
|
}
|
||||||
/** Smoking test for type generation */
|
/** Smoking test for type generation */
|
||||||
export class Blake2BHasher {
|
export class Blake2BHasher {
|
||||||
|
|
|
@ -90,6 +90,11 @@ impl Bird {
|
||||||
pub fn new(name: String) -> Self {
|
pub fn new(name: String) -> Self {
|
||||||
Bird { name }
|
Bird { name }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[napi]
|
||||||
|
pub fn get_count(&self) -> u32 {
|
||||||
|
1234
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Smoking test for type generation
|
/// Smoking test for type generation
|
||||||
|
|
Loading…
Reference in a new issue