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-04-23 05:51:07 -04:00
|
|
|
use deno_core::CoreIsolate;
|
|
|
|
use deno_core::ZeroCopyBuf;
|
2019-08-14 11:03:02 -04:00
|
|
|
use rand::thread_rng;
|
|
|
|
use rand::Rng;
|
|
|
|
|
2020-04-23 05:51:07 -04:00
|
|
|
pub fn init(i: &mut CoreIsolate, 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-06-01 14:20:47 -04:00
|
|
|
zero_copy: &mut [ZeroCopyBuf],
|
2020-02-23 14:51:29 -05:00
|
|
|
) -> Result<JsonOp, OpError> {
|
2020-06-01 14:20:47 -04:00
|
|
|
assert_eq!(zero_copy.len(), 1);
|
2019-08-26 08:50:21 -04:00
|
|
|
|
2020-02-08 14:34:31 -05:00
|
|
|
if let Some(ref mut seeded_rng) = state.borrow_mut().seeded_rng {
|
2020-06-01 14:20:47 -04:00
|
|
|
seeded_rng.fill(&mut *zero_copy[0]);
|
2019-08-14 11:03:02 -04:00
|
|
|
} else {
|
|
|
|
let mut rng = thread_rng();
|
2020-06-01 14:20:47 -04:00
|
|
|
rng.fill(&mut *zero_copy[0]);
|
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
|
|
|
}
|