use std::ffi::c_void;
use std::rc::Rc;
pub use callback_info::*;
pub use ctor::ctor;
pub use env::*;
pub use error::*;
pub use iterator::Generator;
pub use js_values::*;
pub use module_register::*;
use crate::napi::JsError;
use crate::napi::Result;
use crate::napi::Status;
mod callback_info;
mod env;
mod error;
pub mod iterator;
mod js_values;
mod module_register;
pub trait ObjectFinalize: Sized {
#[allow(unused)]
fn finalize(
self,
env: Env,
) -> Result<()> {
Ok(())
}
}
#[doc(hidden)]
pub unsafe extern "C" fn raw_finalize_unchecked<T: ObjectFinalize>(
env: libnode_sys::napi_env,
finalize_data: *mut c_void,
_finalize_hint: *mut c_void,
) {
let data: Box<T> = unsafe { Box::from_raw(finalize_data.cast()) };
if let Err(err) = data.finalize(unsafe { Env::from_raw(env) }) {
let e: JsError = err.into();
unsafe { e.throw_into(env) };
return;
}
if let Some((_, ref_val, finalize_callbacks_ptr)) =
REFERENCE_MAP.with(|reference_map| reference_map.borrow_mut().remove(&finalize_data))
{
let finalize_callbacks_rc = unsafe { Rc::from_raw(finalize_callbacks_ptr) };
#[cfg(all(debug_assertions, not(target_family = "wasm")))]
{
let rc_strong_count = Rc::strong_count(&finalize_callbacks_rc);
assert!(
rc_strong_count == 1 || rc_strong_count == 2,
"Rc strong count is: {rc_strong_count}, it should be 1 or 2"
);
}
let finalize = unsafe { Box::from_raw(finalize_callbacks_rc.get()) };
finalize();
let delete_reference_status = unsafe { libnode_sys::napi_delete_reference(env, ref_val) };
debug_assert!(
delete_reference_status == libnode_sys::Status::napi_ok,
"Delete reference in finalize callback failed {}",
Status::from(delete_reference_status)
);
}
}
#[doc(hidden)]
pub unsafe extern "C" fn drop_buffer(
_env: libnode_sys::napi_env,
#[allow(unused)] finalize_data: *mut c_void,
finalize_hint: *mut c_void,
) {
#[cfg(all(debug_assertions, not(windows)))]
{
js_values::BUFFER_DATA.with(|buffer_data| {
let mut buffer = buffer_data.lock().expect("Unlock Buffer data failed");
buffer.remove(&(finalize_data as *mut u8));
});
}
unsafe {
drop(Box::from_raw(finalize_hint as *mut Buffer));
}
}