2020-06-21 20:10:06 +09:00
|
|
|
use std::ffi::CString;
|
|
|
|
use std::ptr;
|
|
|
|
|
|
|
|
use super::Value;
|
|
|
|
use crate::error::check_status;
|
|
|
|
use crate::{sys, Env, Error, JsBuffer, JsNumber, JsString, NapiValue, Result, Status};
|
|
|
|
|
2020-08-10 13:37:58 +09:00
|
|
|
#[derive(Debug)]
|
2020-06-21 20:10:06 +09:00
|
|
|
pub struct JsObject(pub(crate) Value);
|
|
|
|
|
|
|
|
impl JsObject {
|
|
|
|
pub fn set_property<V: NapiValue>(&mut self, key: JsString, value: V) -> Result<()> {
|
|
|
|
let status =
|
|
|
|
unsafe { sys::napi_set_property(self.0.env, self.0.value, key.0.value, value.raw_value()) };
|
|
|
|
check_status(status)?;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_number_indexed_property<V: NapiValue>(
|
|
|
|
&mut self,
|
|
|
|
key: JsNumber,
|
|
|
|
value: V,
|
|
|
|
) -> Result<()> {
|
2020-08-26 01:07:27 +09:00
|
|
|
check_status(unsafe {
|
|
|
|
sys::napi_set_property(self.0.env, self.0.value, key.0.value, value.raw_value())
|
|
|
|
})
|
2020-06-21 20:10:06 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_named_property<T: NapiValue>(&mut self, name: &str, value: T) -> Result<()> {
|
|
|
|
let key = CString::new(name)?;
|
2020-08-26 01:07:27 +09:00
|
|
|
check_status(unsafe {
|
2020-06-21 20:10:06 +09:00
|
|
|
sys::napi_set_named_property(self.0.env, self.0.value, key.as_ptr(), value.raw_value())
|
2020-08-26 01:07:27 +09:00
|
|
|
})
|
2020-06-21 20:10:06 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_named_property<T: NapiValue>(&self, name: &str) -> Result<T> {
|
|
|
|
let key = CString::new(name)?;
|
|
|
|
let mut raw_value = ptr::null_mut();
|
2020-08-26 01:07:27 +09:00
|
|
|
check_status(unsafe {
|
2020-06-21 20:10:06 +09:00
|
|
|
sys::napi_get_named_property(self.0.env, self.0.value, key.as_ptr(), &mut raw_value)
|
2020-08-26 01:07:27 +09:00
|
|
|
})?;
|
|
|
|
T::from_raw(self.0.env, raw_value)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_property<K: NapiValue, T: NapiValue>(&self, key: &K) -> Result<T> {
|
|
|
|
let mut raw_value = ptr::null_mut();
|
|
|
|
check_status(unsafe {
|
|
|
|
sys::napi_get_property(self.0.env, self.0.value, key.raw_value(), &mut raw_value)
|
|
|
|
})?;
|
2020-06-21 20:10:06 +09:00
|
|
|
T::from_raw(self.0.env, raw_value)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_property_names<T: NapiValue>(&self) -> Result<T> {
|
|
|
|
let mut raw_value = ptr::null_mut();
|
|
|
|
let status = unsafe { sys::napi_get_property_names(self.0.env, self.0.value, &mut raw_value) };
|
|
|
|
check_status(status)?;
|
|
|
|
T::from_raw(self.0.env, raw_value)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn set_index<T: NapiValue>(&mut self, index: usize, value: T) -> Result<()> {
|
|
|
|
self.set_number_indexed_property(Env::from_raw(self.0.env).create_int64(index as i64)?, value)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_index<T: NapiValue>(&self, index: u32) -> Result<T> {
|
|
|
|
let mut raw_value = ptr::null_mut();
|
2020-08-26 01:07:27 +09:00
|
|
|
check_status(unsafe {
|
|
|
|
sys::napi_get_element(self.0.env, self.0.value, index, &mut raw_value)
|
|
|
|
})?;
|
2020-06-21 20:10:06 +09:00
|
|
|
T::from_raw(self.0.env, raw_value)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_array(&self) -> Result<bool> {
|
|
|
|
let mut is_array = false;
|
2020-08-26 01:07:27 +09:00
|
|
|
check_status(unsafe { sys::napi_is_array(self.0.env, self.0.value, &mut is_array) })?;
|
2020-06-21 20:10:06 +09:00
|
|
|
Ok(is_array)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn is_buffer(&self) -> Result<bool> {
|
|
|
|
let mut is_buffer = false;
|
2020-08-26 01:07:27 +09:00
|
|
|
check_status(unsafe { sys::napi_is_buffer(self.0.env, self.0.value, &mut is_buffer) })?;
|
2020-06-21 20:10:06 +09:00
|
|
|
Ok(is_buffer)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn to_buffer(&self) -> Result<JsBuffer> {
|
|
|
|
JsBuffer::from_raw(self.0.env, self.0.value)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_array_length(&self) -> Result<u32> {
|
|
|
|
if self.is_array()? != true {
|
|
|
|
return Err(Error::new(
|
|
|
|
Status::ArrayExpected,
|
|
|
|
"Object is not array".to_owned(),
|
|
|
|
));
|
|
|
|
}
|
2020-08-26 01:07:27 +09:00
|
|
|
self.get_array_length_unchecked()
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn get_array_length_unchecked(&self) -> Result<u32> {
|
2020-06-21 20:10:06 +09:00
|
|
|
let mut length: u32 = 0;
|
2020-08-26 01:07:27 +09:00
|
|
|
check_status(unsafe { sys::napi_get_array_length(self.0.env, self.raw_value(), &mut length) })?;
|
2020-06-21 20:10:06 +09:00
|
|
|
Ok(length)
|
|
|
|
}
|
|
|
|
}
|