2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2019-08-26 08:50:21 -04:00
|
|
|
use super::dispatch_json::{JsonOp, Value};
|
2020-02-23 14:51:29 -05:00
|
|
|
use crate::op_error::OpError;
|
2020-02-08 14:34:31 -05:00
|
|
|
use crate::state::State;
|
2020-01-05 11:56:18 -05:00
|
|
|
use deno_core::*;
|
2019-08-14 11:03:02 -04:00
|
|
|
use rand::thread_rng;
|
|
|
|
use rand::Rng;
|
|
|
|
|
2020-02-08 14:34:31 -05:00
|
|
|
pub fn init(i: &mut Isolate, s: &State) {
|
2019-10-11 14:41:54 -04:00
|
|
|
i.register_op(
|
2020-02-25 09:14:27 -05:00
|
|
|
"op_get_random_values",
|
|
|
|
s.stateful_json_op(op_get_random_values),
|
2019-10-11 14:41:54 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn op_get_random_values(
|
2020-02-08 14:34:31 -05:00
|
|
|
state: &State,
|
2019-08-26 08:50:21 -04:00
|
|
|
_args: Value,
|
2020-01-24 15:10:49 -05:00
|
|
|
zero_copy: Option<ZeroCopyBuf>,
|
2020-02-23 14:51:29 -05:00
|
|
|
) -> Result<JsonOp, OpError> {
|
2019-08-26 08:50:21 -04:00
|
|
|
assert!(zero_copy.is_some());
|
|
|
|
|
2020-02-08 14:34:31 -05:00
|
|
|
if let Some(ref mut seeded_rng) = state.borrow_mut().seeded_rng {
|
|
|
|
seeded_rng.fill(&mut zero_copy.unwrap()[..]);
|
2019-08-14 11:03:02 -04:00
|
|
|
} else {
|
|
|
|
let mut rng = thread_rng();
|
2019-08-26 08:50:21 -04:00
|
|
|
rng.fill(&mut zero_copy.unwrap()[..]);
|
2019-08-14 11:03:02 -04:00
|
|
|
}
|
|
|
|
|
2019-08-26 08:50:21 -04:00
|
|
|
Ok(JsonOp::Sync(json!({})))
|
2019-08-14 11:03:02 -04:00
|
|
|
}
|