2020-08-26 01:07:27 +09:00
|
|
|
use std::convert::TryFrom;
|
2020-08-10 13:37:58 +09:00
|
|
|
use std::ops::Deref;
|
2020-06-21 20:10:06 +09:00
|
|
|
use std::ptr;
|
|
|
|
use std::slice;
|
|
|
|
|
2020-09-03 01:35:47 +09:00
|
|
|
use super::{JsNumber, JsObject, JsString, JsUnknown, NapiValue, Value, ValueType};
|
2020-06-21 20:10:06 +09:00
|
|
|
use crate::error::check_status;
|
2020-08-26 01:07:27 +09:00
|
|
|
use crate::{sys, Error, Result};
|
2020-06-21 20:10:06 +09:00
|
|
|
|
2020-08-10 13:37:58 +09:00
|
|
|
#[derive(Debug)]
|
2020-06-21 20:10:06 +09:00
|
|
|
pub struct JsBuffer {
|
|
|
|
pub value: JsObject,
|
2020-08-10 13:37:58 +09:00
|
|
|
pub data: &'static [u8],
|
2020-06-21 20:10:06 +09:00
|
|
|
}
|
|
|
|
|
2020-07-03 01:36:45 +09:00
|
|
|
impl JsBuffer {
|
2020-08-10 13:37:58 +09:00
|
|
|
pub(crate) fn from_raw_unchecked(
|
|
|
|
env: sys::napi_env,
|
|
|
|
value: sys::napi_value,
|
|
|
|
data: *mut u8,
|
|
|
|
len: usize,
|
|
|
|
) -> Self {
|
2020-07-18 03:00:48 +09:00
|
|
|
Self {
|
|
|
|
value: JsObject(Value {
|
|
|
|
env,
|
|
|
|
value,
|
|
|
|
value_type: ValueType::Object,
|
|
|
|
}),
|
2020-08-10 13:37:58 +09:00
|
|
|
data: unsafe { slice::from_raw_parts_mut(data, len) },
|
2020-07-18 03:00:48 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-03 01:35:47 +09:00
|
|
|
#[inline]
|
2020-07-03 01:36:45 +09:00
|
|
|
pub fn into_unknown(self) -> Result<JsUnknown> {
|
2020-09-03 01:35:47 +09:00
|
|
|
JsUnknown::from_raw(self.value.0.env, self.value.0.value)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn coerce_to_number(self) -> Result<JsNumber> {
|
|
|
|
let mut new_raw_value = ptr::null_mut();
|
|
|
|
check_status(unsafe {
|
|
|
|
sys::napi_coerce_to_number(self.value.0.env, self.value.0.value, &mut new_raw_value)
|
|
|
|
})?;
|
|
|
|
Ok(JsNumber(Value {
|
|
|
|
env: self.value.0.env,
|
|
|
|
value: new_raw_value,
|
|
|
|
value_type: ValueType::Number,
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn coerce_to_string(self) -> Result<JsString> {
|
|
|
|
let mut new_raw_value = ptr::null_mut();
|
|
|
|
check_status(unsafe {
|
|
|
|
sys::napi_coerce_to_string(self.value.0.env, self.value.0.value, &mut new_raw_value)
|
|
|
|
})?;
|
|
|
|
Ok(JsString(Value {
|
|
|
|
env: self.value.0.env,
|
|
|
|
value: new_raw_value,
|
|
|
|
value_type: ValueType::String,
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
#[inline]
|
|
|
|
pub fn coerce_to_object(self) -> Result<JsObject> {
|
|
|
|
let mut new_raw_value = ptr::null_mut();
|
|
|
|
check_status(unsafe {
|
|
|
|
sys::napi_coerce_to_object(self.value.0.env, self.value.0.value, &mut new_raw_value)
|
|
|
|
})?;
|
|
|
|
Ok(JsObject(Value {
|
|
|
|
env: self.value.0.env,
|
|
|
|
value: new_raw_value,
|
|
|
|
value_type: ValueType::Object,
|
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
#[cfg(napi5)]
|
|
|
|
pub fn is_date(&self) -> Result<bool> {
|
|
|
|
let mut is_date = true;
|
|
|
|
check_status(unsafe { sys::napi_is_date(self.value.0.env, self.value.0.value, &mut is_date) })?;
|
|
|
|
Ok(is_date)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn is_error(&self) -> Result<bool> {
|
|
|
|
let mut result = false;
|
|
|
|
check_status(unsafe { sys::napi_is_error(self.value.0.env, self.value.0.value, &mut result) })?;
|
|
|
|
Ok(result)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn is_typedarray(&self) -> Result<bool> {
|
|
|
|
let mut result = false;
|
|
|
|
check_status(unsafe {
|
|
|
|
sys::napi_is_typedarray(self.value.0.env, self.value.0.value, &mut result)
|
|
|
|
})?;
|
|
|
|
Ok(result)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn is_dataview(&self) -> Result<bool> {
|
|
|
|
let mut result = false;
|
|
|
|
check_status(unsafe {
|
|
|
|
sys::napi_is_dataview(self.value.0.env, self.value.0.value, &mut result)
|
|
|
|
})?;
|
|
|
|
Ok(result)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn is_array(&self) -> Result<bool> {
|
|
|
|
let mut is_array = false;
|
|
|
|
check_status(unsafe {
|
|
|
|
sys::napi_is_array(self.value.0.env, self.value.0.value, &mut is_array)
|
|
|
|
})?;
|
|
|
|
Ok(is_array)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn is_buffer(&self) -> Result<bool> {
|
|
|
|
let mut is_buffer = false;
|
|
|
|
check_status(unsafe {
|
|
|
|
sys::napi_is_buffer(self.value.0.env, self.value.0.value, &mut is_buffer)
|
|
|
|
})?;
|
|
|
|
Ok(is_buffer)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn instanceof<Constructor: NapiValue>(&self, constructor: Constructor) -> Result<bool> {
|
|
|
|
let mut result = false;
|
|
|
|
check_status(unsafe {
|
|
|
|
sys::napi_instanceof(
|
|
|
|
self.value.0.env,
|
|
|
|
self.value.0.value,
|
|
|
|
constructor.raw_value(),
|
|
|
|
&mut result,
|
|
|
|
)
|
|
|
|
})?;
|
|
|
|
Ok(result)
|
2020-07-03 01:36:45 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-21 20:10:06 +09:00
|
|
|
impl NapiValue for JsBuffer {
|
|
|
|
fn raw_value(&self) -> sys::napi_value {
|
|
|
|
self.value.0.value
|
|
|
|
}
|
|
|
|
|
|
|
|
fn from_raw(env: sys::napi_env, value: sys::napi_value) -> Result<Self> {
|
|
|
|
let mut data = ptr::null_mut();
|
|
|
|
let mut len: u64 = 0;
|
2020-08-26 01:07:27 +09:00
|
|
|
check_status(unsafe { sys::napi_get_buffer_info(env, value, &mut data, &mut len) })?;
|
2020-06-21 20:10:06 +09:00
|
|
|
Ok(JsBuffer {
|
|
|
|
value: JsObject(Value {
|
|
|
|
env,
|
|
|
|
value,
|
|
|
|
value_type: ValueType::Object,
|
|
|
|
}),
|
2020-08-10 13:37:58 +09:00
|
|
|
data: unsafe { slice::from_raw_parts_mut(data as *mut _, len as usize) },
|
2020-06-21 20:10:06 +09:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AsRef<[u8]> for JsBuffer {
|
|
|
|
fn as_ref(&self) -> &[u8] {
|
2020-08-10 13:37:58 +09:00
|
|
|
self.data
|
2020-06-21 20:10:06 +09:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Deref for JsBuffer {
|
|
|
|
type Target = [u8];
|
|
|
|
|
|
|
|
fn deref(&self) -> &[u8] {
|
2020-08-10 13:37:58 +09:00
|
|
|
self.data
|
2020-06-21 20:10:06 +09:00
|
|
|
}
|
|
|
|
}
|
2020-08-26 01:07:27 +09:00
|
|
|
|
|
|
|
impl TryFrom<JsUnknown> for JsBuffer {
|
|
|
|
type Error = Error;
|
|
|
|
fn try_from(value: JsUnknown) -> Result<JsBuffer> {
|
|
|
|
JsBuffer::from_raw(value.0.env, value.0.value)
|
|
|
|
}
|
|
|
|
}
|