use std::ptr;
use libnode_sys;
use crate::napi::bindgen_runtime::FromNapiValue;
use crate::napi::bindgen_runtime::TypeName;
use crate::napi::check_status;
use crate::napi::Either;
use crate::napi::Env;
use crate::napi::Error;
use crate::napi::JsUndefined;
use crate::napi::NapiValue;
use crate::napi::Result;
use crate::napi::Status;
pub struct CallContext<'env> {
pub env: &'env mut Env,
raw_this: libnode_sys::napi_value,
callback_info: libnode_sys::napi_callback_info,
args: &'env [libnode_sys::napi_value],
pub length: usize,
}
impl<'env> CallContext<'env> {
fn arg_len(&self) -> usize {
self.args.len()
}
pub fn new(
env: &'env mut Env,
callback_info: libnode_sys::napi_callback_info,
raw_this: libnode_sys::napi_value,
args: &'env [libnode_sys::napi_value],
length: usize,
) -> Self {
Self {
env,
raw_this,
callback_info,
args,
length,
}
}
pub fn get<ArgType: FromNapiValue>(
&self,
index: usize,
) -> Result<ArgType> {
if index >= self.arg_len() {
Err(Error::new(
Status::GenericFailure,
"Arguments index out of range".to_owned(),
))
} else {
unsafe { ArgType::from_napi_value(self.env.0, self.args[index]) }
}
}
pub fn try_get<ArgType: NapiValue + TypeName + FromNapiValue>(
&self,
index: usize,
) -> Result<Either<ArgType, JsUndefined>> {
if index >= self.arg_len() {
Err(Error::new(
Status::GenericFailure,
"Arguments index out of range".to_owned(),
))
} else if index < self.length {
unsafe { ArgType::from_raw(self.env.0, self.args[index]) }.map(Either::A)
} else {
self.env.get_undefined().map(Either::B)
}
}
pub fn get_all(&self) -> Vec<crate::napi::JsUnknown> {
self
.args
.iter()
.map(|&raw| unsafe { crate::napi::JsUnknown::from_raw_unchecked(self.env.0, raw) })
.collect()
}
pub fn get_new_target<V>(&self) -> Result<V>
where
V: NapiValue,
{
let mut value = ptr::null_mut();
check_status!(unsafe {
libnode_sys::napi_get_new_target(self.env.0, self.callback_info, &mut value)
})?;
unsafe { V::from_raw(self.env.0, value) }
}
pub fn this<T: NapiValue>(&self) -> Result<T> {
unsafe { T::from_raw(self.env.0, self.raw_this) }
}
pub fn this_unchecked<T: NapiValue>(&self) -> T {
unsafe { T::from_raw_unchecked(self.env.0, self.raw_this) }
}
}