0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/core/examples/hello_world.rs

69 lines
1.6 KiB
Rust
Raw Normal View History

// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
2020-09-23 10:56:36 -04:00
//! This example shows you how to define ops in Rust and then call them from
//! JavaScript.
use deno_core::op;
use deno_core::Extension;
2020-09-23 10:56:36 -04:00
use deno_core::JsRuntime;
use deno_core::RuntimeOptions;
2020-09-23 10:56:36 -04:00
// This is a hack to make the `#[op]` macro work with
// deno_core examples.
// You can remove this:
use deno_core::*;
#[op]
2022-03-15 19:33:46 -04:00
fn op_sum(nums: Vec<f64>) -> Result<f64, deno_core::error::AnyError> {
// Sum inputs
let sum = nums.iter().fold(0.0, |a, v| a + v);
// return as a Result<f64, AnyError>
Ok(sum)
}
2020-09-23 10:56:36 -04:00
fn main() {
// Build a deno_core::Extension providing custom ops
let ext = Extension::builder("my_ext")
.ops(vec![
// An op for summing an array of numbers
// The op-layer automatically deserializes inputs
// and serializes the returned Result & value
op_sum::decl(),
])
.build();
2020-09-23 10:56:36 -04:00
// Initialize a runtime instance
let mut runtime = JsRuntime::new(RuntimeOptions {
extensions: vec![ext],
..Default::default()
});
2020-09-23 10:56:36 -04:00
// Now we see how to invoke the op we just defined. The runtime automatically
2020-09-23 10:56:36 -04:00
// contains a Deno.core object with several functions for interacting with it.
// You can find its definition in core.js.
runtime
.execute_script(
"<usage>",
r#"
// Print helper function, calling Deno.core.print()
2020-09-23 10:56:36 -04:00
function print(value) {
Deno.core.print(value.toString()+"\n");
2020-09-23 10:56:36 -04:00
}
const arr = [1, 2, 3];
print("The sum of");
print(arr);
print("is");
print(Deno.core.ops.op_sum(arr));
2020-09-23 10:56:36 -04:00
// And incorrect usage
try {
print(Deno.core.ops.op_sum(0));
2020-09-23 10:56:36 -04:00
} catch(e) {
print('Exception:');
print(e);
}
"#,
)
.unwrap();
}