2024-01-01 14:58:21 -05:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2022-10-05 10:06:44 -04:00
|
|
|
|
2023-01-11 09:47:26 -05:00
|
|
|
use crate::assert_napi_ok;
|
|
|
|
use crate::napi_get_callback_info;
|
|
|
|
use crate::napi_new_property;
|
2022-10-05 10:06:44 -04:00
|
|
|
use napi_sys::ValueType::napi_number;
|
|
|
|
use napi_sys::*;
|
2023-01-14 23:18:58 -05:00
|
|
|
use std::os::raw::c_char;
|
|
|
|
use std::os::raw::c_void;
|
2022-10-05 10:06:44 -04:00
|
|
|
use std::ptr;
|
|
|
|
|
|
|
|
pub struct NapiObject {
|
|
|
|
counter: i32,
|
|
|
|
_wrapper: napi_ref,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl NapiObject {
|
|
|
|
#[allow(clippy::new_ret_no_self)]
|
|
|
|
pub extern "C" fn new(env: napi_env, info: napi_callback_info) -> napi_value {
|
|
|
|
let mut new_target: napi_value = ptr::null_mut();
|
2023-01-11 09:47:26 -05:00
|
|
|
assert_napi_ok!(napi_get_new_target(env, info, &mut new_target));
|
2022-10-05 10:06:44 -04:00
|
|
|
let is_constructor = !new_target.is_null();
|
|
|
|
|
2023-01-11 09:47:26 -05:00
|
|
|
let (args, argc, this) = napi_get_callback_info!(env, info, 1);
|
2022-10-05 10:06:44 -04:00
|
|
|
assert_eq!(argc, 1);
|
|
|
|
|
|
|
|
if is_constructor {
|
|
|
|
let mut value = 0;
|
|
|
|
|
|
|
|
let mut ty = -1;
|
2023-01-11 09:47:26 -05:00
|
|
|
assert_napi_ok!(napi_typeof(env, args[0], &mut ty));
|
2022-10-05 10:06:44 -04:00
|
|
|
assert_eq!(ty, napi_number);
|
|
|
|
|
2023-01-11 09:47:26 -05:00
|
|
|
assert_napi_ok!(napi_get_value_int32(env, args[0], &mut value));
|
2022-10-05 10:06:44 -04:00
|
|
|
|
|
|
|
let mut wrapper: napi_ref = ptr::null_mut();
|
|
|
|
let obj = Box::new(Self {
|
|
|
|
counter: value,
|
|
|
|
_wrapper: wrapper,
|
|
|
|
});
|
2023-01-11 09:47:26 -05:00
|
|
|
assert_napi_ok!(napi_wrap(
|
|
|
|
env,
|
|
|
|
this,
|
|
|
|
Box::into_raw(obj) as *mut c_void,
|
|
|
|
None,
|
|
|
|
ptr::null_mut(),
|
|
|
|
&mut wrapper,
|
|
|
|
));
|
2022-10-05 10:06:44 -04:00
|
|
|
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
unreachable!();
|
|
|
|
}
|
|
|
|
|
|
|
|
pub extern "C" fn set_value(
|
|
|
|
env: napi_env,
|
|
|
|
info: napi_callback_info,
|
|
|
|
) -> napi_value {
|
2023-01-11 09:47:26 -05:00
|
|
|
let (args, argc, this) = napi_get_callback_info!(env, info, 1);
|
2022-10-05 10:06:44 -04:00
|
|
|
assert_eq!(argc, 1);
|
|
|
|
let mut obj: *mut Self = ptr::null_mut();
|
2023-01-11 09:47:26 -05:00
|
|
|
assert_napi_ok!(napi_unwrap(
|
|
|
|
env,
|
|
|
|
this,
|
|
|
|
&mut obj as *mut _ as *mut *mut c_void
|
|
|
|
));
|
2022-10-05 10:06:44 -04:00
|
|
|
|
2023-01-11 09:47:26 -05:00
|
|
|
assert_napi_ok!(napi_get_value_int32(env, args[0], &mut (*obj).counter));
|
2022-10-05 10:06:44 -04:00
|
|
|
|
|
|
|
ptr::null_mut()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub extern "C" fn get_value(
|
|
|
|
env: napi_env,
|
|
|
|
info: napi_callback_info,
|
|
|
|
) -> napi_value {
|
2023-01-11 09:47:26 -05:00
|
|
|
let (_args, argc, this) = napi_get_callback_info!(env, info, 0);
|
2022-10-05 10:06:44 -04:00
|
|
|
assert_eq!(argc, 0);
|
|
|
|
let mut obj: *mut Self = ptr::null_mut();
|
2023-01-11 09:47:26 -05:00
|
|
|
assert_napi_ok!(napi_unwrap(
|
|
|
|
env,
|
|
|
|
this,
|
|
|
|
&mut obj as *mut _ as *mut *mut c_void
|
|
|
|
));
|
2022-10-05 10:06:44 -04:00
|
|
|
|
|
|
|
let mut num: napi_value = ptr::null_mut();
|
2023-01-11 09:47:26 -05:00
|
|
|
assert_napi_ok!(napi_create_int32(env, (*obj).counter, &mut num));
|
2022-10-05 10:06:44 -04:00
|
|
|
|
|
|
|
num
|
|
|
|
}
|
|
|
|
|
|
|
|
pub extern "C" fn increment(
|
|
|
|
env: napi_env,
|
|
|
|
info: napi_callback_info,
|
|
|
|
) -> napi_value {
|
2023-01-11 09:47:26 -05:00
|
|
|
let (_args, argc, this) = napi_get_callback_info!(env, info, 0);
|
2022-10-05 10:06:44 -04:00
|
|
|
assert_eq!(argc, 0);
|
|
|
|
let mut obj: *mut Self = ptr::null_mut();
|
2023-01-11 09:47:26 -05:00
|
|
|
assert_napi_ok!(napi_unwrap(
|
|
|
|
env,
|
|
|
|
this,
|
|
|
|
&mut obj as *mut _ as *mut *mut c_void
|
|
|
|
));
|
2022-10-05 10:06:44 -04:00
|
|
|
|
|
|
|
unsafe {
|
|
|
|
(*obj).counter += 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
ptr::null_mut()
|
|
|
|
}
|
2023-01-10 09:35:46 -05:00
|
|
|
|
|
|
|
pub extern "C" fn factory(
|
|
|
|
env: napi_env,
|
|
|
|
info: napi_callback_info,
|
|
|
|
) -> napi_value {
|
2023-01-11 09:47:26 -05:00
|
|
|
let (_args, argc, _this) = napi_get_callback_info!(env, info, 0);
|
2023-01-10 09:35:46 -05:00
|
|
|
assert_eq!(argc, 0);
|
|
|
|
|
|
|
|
let int64 = 64;
|
|
|
|
let mut value: napi_value = ptr::null_mut();
|
2023-01-11 09:47:26 -05:00
|
|
|
assert_napi_ok!(napi_create_int64(env, int64, &mut value));
|
2023-01-10 09:35:46 -05:00
|
|
|
value
|
|
|
|
}
|
2022-10-05 10:06:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn init(env: napi_env, exports: napi_value) {
|
2023-01-11 09:47:26 -05:00
|
|
|
let mut static_prop = napi_new_property!(env, "factory", NapiObject::factory);
|
2023-01-10 09:35:46 -05:00
|
|
|
static_prop.attributes = PropertyAttributes::static_;
|
|
|
|
|
2022-10-05 10:06:44 -04:00
|
|
|
let properties = &[
|
2023-01-11 09:47:26 -05:00
|
|
|
napi_new_property!(env, "set_value", NapiObject::set_value),
|
|
|
|
napi_new_property!(env, "get_value", NapiObject::get_value),
|
|
|
|
napi_new_property!(env, "increment", NapiObject::increment),
|
2023-01-10 09:35:46 -05:00
|
|
|
static_prop,
|
2022-10-05 10:06:44 -04:00
|
|
|
];
|
|
|
|
|
|
|
|
let mut cons: napi_value = ptr::null_mut();
|
2023-01-11 09:47:26 -05:00
|
|
|
assert_napi_ok!(napi_define_class(
|
|
|
|
env,
|
|
|
|
"NapiObject\0".as_ptr() as *mut c_char,
|
|
|
|
usize::MAX,
|
|
|
|
Some(NapiObject::new),
|
|
|
|
ptr::null_mut(),
|
|
|
|
properties.len(),
|
|
|
|
properties.as_ptr(),
|
|
|
|
&mut cons,
|
|
|
|
));
|
|
|
|
|
|
|
|
assert_napi_ok!(napi_set_named_property(
|
|
|
|
env,
|
|
|
|
exports,
|
|
|
|
"NapiObject\0".as_ptr() as *const c_char,
|
|
|
|
cons,
|
|
|
|
));
|
2022-10-05 10:06:44 -04:00
|
|
|
}
|