mirror of
https://github.com/napi-rs/napi-rs.git
synced 2025-12-08 19:56:07 +00:00
36 lines
1.0 KiB
Rust
36 lines
1.0 KiB
Rust
use std::convert::TryInto;
|
|
|
|
use napi::{CallContext, Either, JsNumber, JsString, Module, Result};
|
|
|
|
#[js_function(1)]
|
|
pub fn either_number_string(ctx: CallContext) -> Result<Either<JsNumber, JsString>> {
|
|
let arg = ctx.get::<Either<JsNumber, JsString>>(0)?;
|
|
match arg {
|
|
Either::A(n) => {
|
|
let n: u32 = n.try_into()?;
|
|
ctx.env.create_uint32(n + 100).map(Either::A)
|
|
}
|
|
Either::B(s) => {
|
|
let content = format!("Either::B({})", s.into_utf8()?.as_str()?);
|
|
ctx.env.create_string_from_std(content).map(Either::B)
|
|
}
|
|
}
|
|
}
|
|
|
|
#[js_function(1)]
|
|
pub fn dynamic_argument_length(ctx: CallContext) -> Result<JsNumber> {
|
|
let value: Option<JsNumber> = ctx.try_get::<JsNumber>(0)?.into();
|
|
if let Some(n) = value {
|
|
let n: u32 = n.try_into()?;
|
|
ctx.env.create_uint32(n + 100)
|
|
} else {
|
|
ctx.env.create_uint32(42)
|
|
}
|
|
}
|
|
|
|
pub fn register_js(module: &mut Module) -> Result<()> {
|
|
module.create_named_method("eitherNumberString", either_number_string)?;
|
|
module.create_named_method("dynamicArgumentLength", dynamic_argument_length)?;
|
|
Ok(())
|
|
}
|