2020-01-02 15:13:47 -05:00
|
|
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
2020-03-07 07:20:27 -05:00
|
|
|
use super::dispatch_json::{Deserialize, 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
|
|
|
|
2020-04-23 05:51:07 -04:00
|
|
|
pub fn init(i: &mut CoreIsolate, s: &State) {
|
2020-04-21 09:48:44 -04:00
|
|
|
i.register_op("op_resources", s.stateful_json_op2(op_resources));
|
|
|
|
i.register_op("op_close", s.stateful_json_op2(op_close));
|
2019-10-11 14:41:54 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
fn op_resources(
|
2020-04-23 05:51:07 -04:00
|
|
|
isolate: &mut CoreIsolate,
|
2020-04-21 09:48:44 -04: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> {
|
2020-04-21 09:48:44 -04:00
|
|
|
let serialized_resources = isolate.resource_table.borrow().entries();
|
2019-08-26 08:50:21 -04:00
|
|
|
Ok(JsonOp::Sync(json!(serialized_resources)))
|
2019-08-14 11:03:02 -04:00
|
|
|
}
|
2020-03-07 07:20:27 -05:00
|
|
|
|
|
|
|
/// op_close removes a resource from the resource table.
|
|
|
|
fn op_close(
|
2020-04-23 05:51:07 -04:00
|
|
|
isolate: &mut CoreIsolate,
|
2020-04-21 09:48:44 -04:00
|
|
|
_state: &State,
|
2020-03-07 07:20:27 -05:00
|
|
|
args: Value,
|
|
|
|
_zero_copy: Option<ZeroCopyBuf>,
|
|
|
|
) -> Result<JsonOp, OpError> {
|
|
|
|
#[derive(Deserialize)]
|
|
|
|
struct CloseArgs {
|
|
|
|
rid: i32,
|
|
|
|
}
|
2020-04-20 10:27:15 -04:00
|
|
|
let args: CloseArgs = serde_json::from_value(args).unwrap();
|
2020-04-21 09:48:44 -04:00
|
|
|
let mut resource_table = isolate.resource_table.borrow_mut();
|
|
|
|
resource_table
|
2020-03-07 07:20:27 -05:00
|
|
|
.close(args.rid as u32)
|
|
|
|
.ok_or_else(OpError::bad_resource_id)?;
|
|
|
|
Ok(JsonOp::Sync(json!({})))
|
|
|
|
}
|