Struct napi::Env[][src]

pub struct Env(_);
Expand description

Env is used to represent a context that the underlying N-API implementation can use to persist VM-specific state.

Specifically, the same Env that was passed in when the initial native function was called must be passed to any subsequent nested N-API calls.

Caching the Env for the purpose of general reuse, and passing the Env between instances of the same addon running on different Worker threads is not allowed.

The Env becomes invalid when an instance of a native addon is unloaded.

Notification of this event is delivered through the callbacks given to Env::add_env_cleanup_hook and Env::set_instance_data.

Implementations

impl Env[src]

pub unsafe fn from_raw(env: napi_env) -> Self[src]

pub fn get_undefined(&self) -> Result<JsUndefined>[src]

Get JsUndefined value

pub fn get_null(&self) -> Result<JsNull>[src]

pub fn get_boolean(&self, value: bool) -> Result<JsBoolean>[src]

pub fn create_int32(&self, int: i32) -> Result<JsNumber>[src]

pub fn create_int64(&self, int: i64) -> Result<JsNumber>[src]

pub fn create_uint32(&self, number: u32) -> Result<JsNumber>[src]

pub fn create_double(&self, double: f64) -> Result<JsNumber>[src]

pub fn create_bigint_from_i64(&self, value: i64) -> Result<JsBigint>[src]

pub fn create_bigint_from_u64(&self, value: u64) -> Result<JsBigint>[src]

pub fn create_bigint_from_i128(&self, value: i128) -> Result<JsBigint>[src]

pub fn create_bigint_from_u128(&self, value: u128) -> Result<JsBigint>[src]

pub fn create_bigint_from_words(
    &self,
    sign_bit: bool,
    words: Vec<u64>
) -> Result<JsBigint>
[src]

n_api_napi_create_bigint_words

The resulting BigInt will be negative when sign_bit is true.

pub fn create_string(&self, s: &str) -> Result<JsString>[src]

pub fn create_string_from_std(&self, s: String) -> Result<JsString>[src]

pub unsafe fn create_string_from_c_char(
    &self,
    data_ptr: *const c_char,
    len: usize
) -> Result<JsString>
[src]

This API is used for C ffi scenario. Convert raw *const c_char into JsString

Safety

Create JsString from known valid utf-8 string

pub fn create_string_utf16(&self, chars: &[u16]) -> Result<JsString>[src]

pub fn create_string_latin1(&self, chars: &[u8]) -> Result<JsString>[src]

pub fn create_symbol_from_js_string(
    &self,
    description: JsString
) -> Result<JsSymbol>
[src]

pub fn create_symbol(&self, description: Option<&str>) -> Result<JsSymbol>[src]

pub fn create_object(&self) -> Result<JsObject>[src]

pub fn create_array(&self) -> Result<JsObject>[src]

pub fn create_array_with_length(&self, length: usize) -> Result<JsObject>[src]

pub fn create_buffer(&self, length: usize) -> Result<JsBufferValue>[src]

This API allocates a node::Buffer object. While this is still a fully-supported data structure, in most cases using a TypedArray will suffice.

pub fn create_buffer_with_data(&self, data: Vec<u8>) -> Result<JsBufferValue>[src]

This API allocates a node::Buffer object and initializes it with data backed by the passed in buffer.

While this is still a fully-supported data structure, in most cases using a TypedArray will suffice.

pub unsafe fn create_buffer_with_borrowed_data<Hint, Finalize>(
    &self,
    data: *const u8,
    length: usize,
    hint: Hint,
    finalize_callback: Finalize
) -> Result<JsBufferValue> where
    Finalize: FnOnce(Hint, Env), 
[src]

Safety

Mostly the same with create_buffer_with_data

Provided finalize_callback will be called when Buffer got dropped.

You can pass in noop_finalize if you have nothing to do in finalize phase.

pub fn adjust_external_memory(&mut self, size: i64) -> Result<i64>[src]

This function gives V8 an indication of the amount of externally allocated memory that is kept alive by JavaScript objects (i.e. a JavaScript object that points to its own memory allocated by a native module).

Registering externally allocated memory will trigger global garbage collections more often than it would otherwise.

ATTENTION ⚠️, do not use this with create_buffer_with_data/create_arraybuffer_with_data, since these two functions already called the adjust_external_memory internal.

pub fn create_buffer_copy<D>(&self, data_to_copy: D) -> Result<JsBufferValue> where
    D: AsRef<[u8]>, 
[src]

This API allocates a node::Buffer object and initializes it with data copied from the passed-in buffer.

While this is still a fully-supported data structure, in most cases using a TypedArray will suffice.

pub fn create_arraybuffer(&self, length: usize) -> Result<JsArrayBufferValue>[src]

pub fn create_arraybuffer_with_data(
    &self,
    data: Vec<u8>
) -> Result<JsArrayBufferValue>
[src]

pub unsafe fn create_arraybuffer_with_borrowed_data<Hint, Finalize>(
    &self,
    data: *const u8,
    length: usize,
    hint: Hint,
    finalize_callback: Finalize
) -> Result<JsArrayBufferValue> where
    Finalize: FnOnce(Hint, Env), 
[src]

Safety

Mostly the same with create_arraybuffer_with_data

Provided finalize_callback will be called when Buffer got dropped.

You can pass in noop_finalize if you have nothing to do in finalize phase.

pub fn create_function(
    &self,
    name: &str,
    callback: Callback
) -> Result<JsFunction>
[src]

This API allows an add-on author to create a function object in native code.

This is the primary mechanism to allow calling into the add-on’s native code from JavaScript.

The newly created function is not automatically visible from script after this call.

Instead, a property must be explicitly set on any object that is visible to JavaScript, in order for the function to be accessible from script.

pub fn create_function_from_closure<R, F>(
    &self,
    name: &str,
    callback: F
) -> Result<JsFunction> where
    F: 'static + Send + Sync + Fn(CallContext<'_>) -> Result<R>,
    R: NapiRaw
[src]

pub fn get_last_error_info(&self) -> Result<ExtendedErrorInfo>[src]

This API retrieves a napi_extended_error_info structure with information about the last error that occurred.

The content of the napi_extended_error_info returned is only valid up until an n-api function is called on the same env.

Do not rely on the content or format of any of the extended information as it is not subject to SemVer and may change at any time. It is intended only for logging purposes.

This API can be called even if there is a pending JavaScript exception.

pub fn throw_error(&self, msg: &str, code: Option<&str>) -> Result<()>[src]

This API throws a JavaScript Error with the text provided.

pub fn throw_range_error(&self, msg: &str, code: Option<&str>) -> Result<()>[src]

This API throws a JavaScript RangeError with the text provided.

pub fn throw_type_error(&self, msg: &str, code: Option<&str>) -> Result<()>[src]

This API throws a JavaScript TypeError with the text provided.

pub fn fatal_error(self, location: &str, message: &str)[src]

In the event of an unrecoverable error in a native module

A fatal error can be thrown to immediately terminate the process.

pub fn fatal_exception(&self, err: Error)[src]

Trigger an ‘uncaughtException’ in JavaScript.

Useful if an async callback throws an exception with no way to recover.

pub fn define_class(
    &self,
    name: &str,
    constructor_cb: Callback,
    properties: &[Property<'_>]
) -> Result<JsFunction>
[src]

Create JavaScript class

pub fn wrap<T: 'static>(
    &self,
    js_object: &mut JsObject,
    native_object: T
) -> Result<()>
[src]

pub fn unwrap<T: 'static>(&self, js_object: &JsObject) -> Result<&mut T>[src]

pub fn unwrap_from_ref<T: 'static>(
    &self,
    js_ref: &Ref<()>
) -> Result<&'static mut T>
[src]

pub fn drop_wrapped<T: 'static>(&self, js_object: JsObject) -> Result<()>[src]

pub fn create_reference<T>(&self, value: T) -> Result<Ref<()>> where
    T: NapiRaw
[src]

This API create a new reference with the specified reference count to the Object passed in.

pub fn get_reference_value<T>(&self, reference: &Ref<()>) -> Result<T> where
    T: NapiValue
[src]

Get reference value from Ref with type check

Return error if the type of reference provided is mismatched with T

pub fn get_reference_value_unchecked<T>(&self, reference: &Ref<()>) -> Result<T> where
    T: NapiValue
[src]

Get reference value from Ref without type check

Using this API if you are sure the type of T is matched with provided Ref<()>.

If type mismatched, calling T::method would return Err.

pub fn create_external<T: 'static>(
    &self,
    native_object: T,
    size_hint: Option<i64>
) -> Result<JsExternal>
[src]

If size_hint provided, Env::adjust_external_memory will be called under the hood.

If no size_hint provided, global garbage collections will be triggered less times than expected.

If getting the exact native_object size is difficult, you can provide an approximate value, it’s only effect to the GC.

pub fn get_value_external<T: 'static>(
    &self,
    js_external: &JsExternal
) -> Result<&mut T>
[src]

pub fn create_error(&self, e: Error) -> Result<JsObject>[src]

pub fn spawn<T: 'static + Task>(&self, task: T) -> Result<AsyncWorkPromise<'_>>[src]

Run Task in libuv thread pool, return AsyncWorkPromise

pub fn run_in_scope<T, F>(&self, executor: F) -> Result<T> where
    F: FnOnce() -> Result<T>, 
[src]

pub fn get_global(&self) -> Result<JsGlobal>[src]

pub fn get_napi_version(&self) -> Result<u32>[src]

pub fn get_uv_event_loop(&self) -> Result<*mut uv_loop_s>[src]

pub fn add_env_cleanup_hook<T, F>(
    &mut self,
    cleanup_data: T,
    cleanup_fn: F
) -> Result<CleanupEnvHook<T>> where
    T: 'static,
    F: 'static + FnOnce(T), 
[src]

pub fn remove_env_cleanup_hook<T>(
    &mut self,
    hook: CleanupEnvHook<T>
) -> Result<()> where
    T: 'static, 
[src]

pub fn create_threadsafe_function<T: Send, V: NapiRaw, R: 'static + Send + FnMut(ThreadSafeCallContext<T>) -> Result<Vec<V>>>(
    &self,
    func: &JsFunction,
    max_queue_size: usize,
    callback: R
) -> Result<ThreadsafeFunction<T>>
[src]

pub fn execute_tokio_future<T: 'static + Send, V: 'static + NapiValue, F: 'static + Send + Future<Output = Result<T>>, R: 'static + Send + Sync + FnOnce(&mut Env, T) -> Result<V>>(
    &self,
    fut: F,
    resolver: R
) -> Result<JsObject>
[src]

pub fn create_date(&self, time: f64) -> Result<JsDate>[src]

This API does not observe leap seconds; they are ignored, as ECMAScript aligns with POSIX time specification.

This API allocates a JavaScript Date object.

JavaScript Date objects are described in Section 20.3 of the ECMAScript Language Specification.

pub fn set_instance_data<T, Hint, F>(
    &self,
    native: T,
    hint: Hint,
    finalize_cb: F
) -> Result<()> where
    T: 'static,
    Hint: 'static,
    F: FnOnce(FinalizeContext<T, Hint>), 
[src]

This API associates data with the currently running Agent. data can later be retrieved using Env::get_instance_data().

Any existing data associated with the currently running Agent which was set by means of a previous call to Env::set_instance_data() will be overwritten.

If a finalize_cb was provided by the previous call, it will not be called.

pub fn get_instance_data<T>(&self) -> Result<Option<&'static mut T>> where
    T: 'static, 
[src]

This API retrieves data that was previously associated with the currently running Agent via Env::set_instance_data().

If no data is set, the call will succeed and data will be set to NULL.

pub fn add_removable_async_cleanup_hook<Arg, F>(
    &self,
    arg: Arg,
    cleanup_fn: F
) -> Result<AsyncCleanupHook> where
    F: FnOnce(Arg),
    Arg: 'static, 
[src]

Registers hook, which is a function of type FnOnce(Arg), as a function to be run with the arg parameter once the current Node.js environment exits.

Unlike add_env_cleanup_hook, the hook is allowed to be asynchronous.

Otherwise, behavior generally matches that of add_env_cleanup_hook.

pub fn add_async_cleanup_hook<Arg, F>(
    &self,
    arg: Arg,
    cleanup_fn: F
) -> Result<()> where
    F: FnOnce(Arg),
    Arg: 'static, 
[src]

This API is very similar to add_removable_async_cleanup_hook

Use this one if you don’t want remove the cleanup hook anymore.

pub fn to_js_value<T>(&self, node: &T) -> Result<JsUnknown> where
    T: Serialize
[src]

Serialize Rust Struct into JavaScript Value

#[derive(Serialize, Debug, Deserialize)]
struct AnObject {
    a: u32,
    b: Vec<f64>,
    c: String,
}

#[js_function]
fn serialize(ctx: CallContext) -> Result<JsUnknown> {
    let value = AnyObject { a: 1, b: vec![0.1, 2.22], c: "hello" };
    ctx.env.to_js_value(&value)
}

pub fn from_js_value<T: ?Sized, V>(&self, value: V) -> Result<T> where
    T: DeserializeOwned,
    V: NapiRaw
[src]

Deserialize data from JsValue

#[derive(Serialize, Debug, Deserialize)]
struct AnObject {
    a: u32,
    b: Vec<f64>,
    c: String,
}

#[js_function(1)]
fn deserialize_from_js(ctx: CallContext) -> Result<JsUndefined> {
    let arg0 = ctx.get::<JsUnknown>(0)?;
    let de_serialized: AnObject = ctx.env.from_js_value(arg0)?;
    ...
}

pub fn strict_equals<A: NapiRaw, B: NapiRaw>(&self, a: A, b: B) -> Result<bool>[src]

This API represents the invocation of the Strict Equality algorithm as defined in Section 7.2.14 of the ECMAScript Language Specification.

pub fn get_node_version(&self) -> Result<NodeVersion>[src]

pub fn raw(&self) -> napi_env[src]

get raw env ptr

Trait Implementations

impl Clone for Env[src]

fn clone(&self) -> Env[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Copy for Env[src]

Auto Trait Implementations

impl RefUnwindSafe for Env

impl !Send for Env

impl !Sync for Env

impl Unpin for Env

impl UnwindSafe for Env

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

Creates owned data from borrowed data, usually by cloning. Read more

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.