2020-09-02 18:05:53 +09:00
|
|
|
use std::convert::From;
|
|
|
|
use std::ffi::CString;
|
2020-06-21 20:10:06 +09:00
|
|
|
use std::ptr;
|
|
|
|
|
2020-09-02 18:05:53 +09:00
|
|
|
use crate::{error::check_status, sys, Callback, NapiValue, Result};
|
2020-06-21 20:10:06 +09:00
|
|
|
|
2020-09-02 18:05:53 +09:00
|
|
|
#[derive(Debug, Clone, Copy)]
|
|
|
|
pub struct Property<'env> {
|
|
|
|
name: &'env str,
|
|
|
|
pub(crate) raw_descriptor: sys::napi_property_descriptor,
|
2020-06-21 20:10:06 +09:00
|
|
|
}
|
|
|
|
|
2020-09-02 18:05:53 +09:00
|
|
|
#[repr(u32)]
|
|
|
|
#[derive(Debug, Copy, Clone, PartialEq, Eq, Hash)]
|
|
|
|
pub enum PropertyAttributes {
|
|
|
|
Default = sys::napi_property_attributes::napi_default as _,
|
|
|
|
Writable = sys::napi_property_attributes::napi_writable as _,
|
|
|
|
Enumerable = sys::napi_property_attributes::napi_enumerable as _,
|
|
|
|
Configurable = sys::napi_property_attributes::napi_configurable as _,
|
|
|
|
Static = sys::napi_property_attributes::napi_static as _,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<PropertyAttributes> for sys::napi_property_attributes {
|
|
|
|
fn from(value: PropertyAttributes) -> Self {
|
|
|
|
match value {
|
|
|
|
PropertyAttributes::Default => sys::napi_property_attributes::napi_default,
|
|
|
|
PropertyAttributes::Writable => sys::napi_property_attributes::napi_writable,
|
|
|
|
PropertyAttributes::Enumerable => sys::napi_property_attributes::napi_enumerable,
|
|
|
|
PropertyAttributes::Configurable => sys::napi_property_attributes::napi_configurable,
|
|
|
|
PropertyAttributes::Static => sys::napi_property_attributes::napi_static,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<'env> Property<'env> {
|
|
|
|
pub fn new(name: &'env str) -> Self {
|
2020-06-21 20:10:06 +09:00
|
|
|
Property {
|
2020-09-02 18:05:53 +09:00
|
|
|
name,
|
2020-06-21 20:10:06 +09:00
|
|
|
raw_descriptor: sys::napi_property_descriptor {
|
|
|
|
utf8name: ptr::null_mut(),
|
|
|
|
name: ptr::null_mut(),
|
|
|
|
method: None,
|
|
|
|
getter: None,
|
|
|
|
setter: None,
|
|
|
|
value: ptr::null_mut(),
|
|
|
|
attributes: sys::napi_property_attributes::napi_default,
|
|
|
|
data: ptr::null_mut(),
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn with_value<T: NapiValue>(mut self, value: T) -> Self {
|
|
|
|
self.raw_descriptor.value = T::raw_value(&value);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn with_method(mut self, callback: Callback) -> Self {
|
|
|
|
self.raw_descriptor.method = Some(callback);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn with_getter(mut self, callback: Callback) -> Self {
|
|
|
|
self.raw_descriptor.getter = Some(callback);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-09-02 18:05:53 +09:00
|
|
|
pub fn with_setter(mut self, callback: Callback) -> Self {
|
|
|
|
self.raw_descriptor.setter = Some(callback);
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn with_property_attributes(mut self, attributes: PropertyAttributes) {
|
|
|
|
self.raw_descriptor.attributes = attributes.into();
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn as_raw(&mut self, env: sys::napi_env) -> Result<sys::napi_property_descriptor> {
|
|
|
|
let string_value = CString::new(self.name)?;
|
|
|
|
let mut result = ptr::null_mut();
|
|
|
|
check_status(unsafe {
|
|
|
|
sys::napi_create_string_utf8(
|
|
|
|
env,
|
|
|
|
string_value.as_ptr(),
|
|
|
|
self.name.len() as _,
|
|
|
|
&mut result,
|
|
|
|
)
|
|
|
|
})?;
|
|
|
|
self.raw_descriptor.name = result;
|
2020-06-21 20:10:06 +09:00
|
|
|
Ok(self.raw_descriptor)
|
|
|
|
}
|
|
|
|
}
|