mirror of
https://github.com/denoland/deno.git
synced 2024-11-22 15:06:54 -05:00
2ca454b402
* refactor(ops): return BadResource errors in ResourceTable calls Instead of relying on callers to map Options to Results via `.ok_or_else(bad_resource_id)` at over 176 different call sites ...
68 lines
1.6 KiB
Rust
68 lines
1.6 KiB
Rust
use crate::error::type_error;
|
|
use crate::error::AnyError;
|
|
use crate::include_js_files;
|
|
use crate::op_sync;
|
|
use crate::resources::ResourceId;
|
|
use crate::Extension;
|
|
use crate::OpState;
|
|
use std::io::{stderr, stdout, Write};
|
|
|
|
pub(crate) fn init_builtins() -> Extension {
|
|
Extension::builder()
|
|
.js(include_js_files!(
|
|
prefix "deno:core",
|
|
"00_primordials.js",
|
|
"01_core.js",
|
|
"02_error.js",
|
|
))
|
|
.ops(vec![
|
|
("op_close", op_sync(op_close)),
|
|
("op_print", op_sync(op_print)),
|
|
("op_resources", op_sync(op_resources)),
|
|
])
|
|
.build()
|
|
}
|
|
|
|
/// Return map of resources with id as key
|
|
/// and string representation as value.
|
|
pub fn op_resources(
|
|
state: &mut OpState,
|
|
_args: (),
|
|
_: (),
|
|
) -> Result<Vec<(ResourceId, String)>, AnyError> {
|
|
let serialized_resources = state
|
|
.resource_table
|
|
.names()
|
|
.map(|(rid, name)| (rid, name.to_string()))
|
|
.collect();
|
|
Ok(serialized_resources)
|
|
}
|
|
|
|
/// Remove a resource from the resource table.
|
|
pub fn op_close(
|
|
state: &mut OpState,
|
|
rid: Option<ResourceId>,
|
|
_: (),
|
|
) -> Result<(), AnyError> {
|
|
// TODO(@AaronO): drop Option after improving type-strictness balance in serde_v8
|
|
let rid = rid.ok_or_else(|| type_error("missing or invalid `rid`"))?;
|
|
state.resource_table.close(rid)?;
|
|
|
|
Ok(())
|
|
}
|
|
|
|
/// Builtin utility to print to stdout/stderr
|
|
pub fn op_print(
|
|
_state: &mut OpState,
|
|
msg: String,
|
|
is_err: bool,
|
|
) -> Result<(), AnyError> {
|
|
if is_err {
|
|
stderr().write_all(msg.as_bytes())?;
|
|
stderr().flush().unwrap();
|
|
} else {
|
|
stdout().write_all(msg.as_bytes())?;
|
|
stdout().flush().unwrap();
|
|
}
|
|
Ok(())
|
|
}
|