mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
4e1abb4f3a
To better reflect changes in error types in JS from #3662 this PR changes default error type used in ops from "ErrBox" to "OpError". "OpError" is a type that can be sent over to JSON; it has all information needed to construct error in JavaScript. That made "GetErrorKind" trait useless and so it was removed altogether. To provide compatibility with previous use of "ErrBox" an implementation of "From<ErrBox> for OpError" was added, however, it is an escape hatch and ops implementors should strive to use "OpError" directly.
32 lines
804 B
Rust
32 lines
804 B
Rust
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
|
use super::dispatch_json::{JsonOp, Value};
|
|
use crate::op_error::OpError;
|
|
use crate::ops::json_op;
|
|
use crate::state::State;
|
|
use deno_core::*;
|
|
use rand::thread_rng;
|
|
use rand::Rng;
|
|
|
|
pub fn init(i: &mut Isolate, s: &State) {
|
|
i.register_op(
|
|
"get_random_values",
|
|
s.core_op(json_op(s.stateful_op(op_get_random_values))),
|
|
);
|
|
}
|
|
|
|
fn op_get_random_values(
|
|
state: &State,
|
|
_args: Value,
|
|
zero_copy: Option<ZeroCopyBuf>,
|
|
) -> Result<JsonOp, OpError> {
|
|
assert!(zero_copy.is_some());
|
|
|
|
if let Some(ref mut seeded_rng) = state.borrow_mut().seeded_rng {
|
|
seeded_rng.fill(&mut zero_copy.unwrap()[..]);
|
|
} else {
|
|
let mut rng = thread_rng();
|
|
rng.fill(&mut zero_copy.unwrap()[..]);
|
|
}
|
|
|
|
Ok(JsonOp::Sync(json!({})))
|
|
}
|