* The MIT License (MIT)
* Copyright (C) 2024 Huawei Device Co., Ltd.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*/
use std::ptr;
use crate::{check_status, sys, JsGlobal, JsNull, JsUndefined, NapiValue, Result};
use super::Array;
pub use crate::Env;
impl Env {
pub fn create_array(&self, len: u32) -> Result<Array> {
Array::new(self.0, len)
}
pub fn get_undefined(&self) -> Result<JsUndefined> {
let mut raw_value = ptr::null_mut();
check_status!(unsafe { sys::napi_get_undefined(self.0, &mut raw_value) })?;
let js_undefined = unsafe { JsUndefined::from_raw_unchecked(self.0, raw_value) };
Ok(js_undefined)
}
pub fn get_null(&self) -> Result<JsNull> {
let mut raw_value = ptr::null_mut();
check_status!(unsafe { sys::napi_get_null(self.0, &mut raw_value) })?;
let js_null = unsafe { JsNull::from_raw_unchecked(self.0, raw_value) };
Ok(js_null)
}
pub fn get_global(&self) -> Result<JsGlobal> {
let mut global = std::ptr::null_mut();
crate::check_status!(
unsafe { sys::napi_get_global(self.0, &mut global) },
"Get global object from Env failed"
)?;
Ok(JsGlobal(crate::Value {
value: global,
env: self.0,
value_type: crate::ValueType::Object,
}))
}
}