2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-08-28 11:08:24 -04:00
|
|
|
use super::dispatch_json::Value;
|
2020-02-08 14:34:31 -05:00
|
|
|
use crate::state::State;
|
2020-04-23 05:51:07 -04:00
|
|
|
use deno_core::CoreIsolate;
|
2020-08-25 18:22:15 -04:00
|
|
|
use deno_core::ErrBox;
|
2020-08-28 11:08:24 -04:00
|
|
|
use deno_core::ResourceTable;
|
2020-04-23 05:51:07 -04:00
|
|
|
use deno_core::ZeroCopyBuf;
|
2019-08-14 11:03:02 -04:00
|
|
|
use rand::thread_rng;
|
|
|
|
use rand::Rng;
|
2020-08-18 12:30:13 -04:00
|
|
|
use std::rc::Rc;
|
2019-08-14 11:03:02 -04:00
|
|
|
|
2020-08-18 12:30:13 -04:00
|
|
|
pub fn init(i: &mut CoreIsolate, s: &Rc<State>) {
|
2020-08-28 11:08:24 -04:00
|
|
|
let t = &CoreIsolate::state(i).borrow().resource_table.clone();
|
|
|
|
|
2019-10-11 14:41:54 -04:00
|
|
|
i.register_op(
|
2020-02-25 09:14:27 -05:00
|
|
|
"op_get_random_values",
|
2020-08-28 11:08:24 -04:00
|
|
|
s.stateful_json_op_sync(t, op_get_random_values),
|
2019-10-11 14:41:54 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn op_get_random_values(
|
2020-08-28 11:08:24 -04:00
|
|
|
state: &State,
|
|
|
|
_resource_table: &mut ResourceTable,
|
2019-08-26 08:50:21 -04:00
|
|
|
_args: Value,
|
2020-06-01 14:20:47 -04:00
|
|
|
zero_copy: &mut [ZeroCopyBuf],
|
2020-08-28 11:08:24 -04:00
|
|
|
) -> Result<Value, ErrBox> {
|
2020-06-01 14:20:47 -04:00
|
|
|
assert_eq!(zero_copy.len(), 1);
|
2019-08-26 08:50:21 -04:00
|
|
|
|
2020-08-18 12:30:13 -04:00
|
|
|
if let Some(seeded_rng) = &state.seeded_rng {
|
|
|
|
seeded_rng.borrow_mut().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
|
|
|
}
|
|
|
|
|
2020-08-28 11:08:24 -04:00
|
|
|
Ok(json!({}))
|
2019-08-14 11:03:02 -04:00
|
|
|
}
|