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};
|
2019-10-11 14:41:54 -04:00
|
|
|
use crate::ops::json_op;
|
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
|
|
|
|
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("resources", s.core_op(json_op(s.stateful_op(op_resources))));
|
|
|
|
}
|
|
|
|
|
|
|
|
fn op_resources(
|
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>,
|
2019-08-26 08:50:21 -04:00
|
|
|
) -> Result<JsonOp, ErrBox> {
|
2020-02-08 14:34:31 -05:00
|
|
|
let state = state.borrow();
|
|
|
|
let serialized_resources = state.resource_table.entries();
|
2019-08-26 08:50:21 -04:00
|
|
|
Ok(JsonOp::Sync(json!(serialized_resources)))
|
2019-08-14 11:03:02 -04:00
|
|
|
}
|