2022-01-07 22:09:52 -05:00
|
|
|
// Copyright 2018-2022 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.
|
|
|
|
|
2022-03-14 13:44:15 -04:00
|
|
|
use deno_core::op;
|
2021-12-29 09:21:42 -05:00
|
|
|
use deno_core::Extension;
|
2020-09-23 10:56:36 -04:00
|
|
|
use deno_core::JsRuntime;
|
2022-03-14 13:44:15 -04:00
|
|
|
use deno_core::OpState;
|
2021-12-29 09:21:42 -05:00
|
|
|
use deno_core::RuntimeOptions;
|
2020-09-23 10:56:36 -04:00
|
|
|
|
2022-03-14 13:44:15 -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> {
|
2022-03-14 13:44:15 -04:00
|
|
|
// 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() {
|
2021-12-29 09:21:42 -05:00
|
|
|
// Build a deno_core::Extension providing custom ops
|
|
|
|
let ext = Extension::builder()
|
|
|
|
.ops(vec![
|
|
|
|
// An op for summing an array of numbers
|
2022-03-14 13:44:15 -04:00
|
|
|
// The op-layer automatically deserializes inputs
|
|
|
|
// and serializes the returned Result & value
|
|
|
|
op_sum::decl(),
|
2021-12-29 09:21:42 -05:00
|
|
|
])
|
|
|
|
.build();
|
2020-09-23 10:56:36 -04:00
|
|
|
|
2021-12-29 09:21:42 -05:00
|
|
|
// Initialize a runtime instance
|
|
|
|
let mut runtime = JsRuntime::new(RuntimeOptions {
|
|
|
|
extensions: vec![ext],
|
|
|
|
..Default::default()
|
|
|
|
});
|
2020-09-23 10:56:36 -04:00
|
|
|
|
2021-05-15 09:24:01 -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.
|
2021-03-31 10:37:38 -04:00
|
|
|
runtime
|
2021-06-21 19:45:41 -04:00
|
|
|
.execute_script(
|
2021-05-15 09:24:01 -04:00
|
|
|
"<usage>",
|
2021-03-31 10:37:38 -04:00
|
|
|
r#"
|
2021-05-15 09:24:01 -04:00
|
|
|
// Print helper function, calling Deno.core.print()
|
2020-09-23 10:56:36 -04:00
|
|
|
function print(value) {
|
2021-05-15 09:24:01 -04:00
|
|
|
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");
|
2021-04-12 15:55:05 -04:00
|
|
|
print(Deno.core.opSync('op_sum', arr));
|
2020-09-23 10:56:36 -04:00
|
|
|
|
|
|
|
// And incorrect usage
|
|
|
|
try {
|
2021-04-12 15:55:05 -04:00
|
|
|
print(Deno.core.opSync('op_sum', 0));
|
2020-09-23 10:56:36 -04:00
|
|
|
} catch(e) {
|
|
|
|
print('Exception:');
|
|
|
|
print(e);
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
}
|